.slider-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4cc9f0;
}

.slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: #f3f4f6;
    border-radius: 10px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: 2px solid #3c83f6;
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
}

.slider-details {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.result-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.result-title {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4cc9f0;
}

.profit .result-value {
    color: #72efdd;
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    border-left: 4px solid #4cc9f0;
}

@media (max-width: 768px) {
    .container {
        padding-bottom: 25px;
    }

    h1 {
        font-size: 2rem;
    }

    .results {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-bottom: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .slider-header {
        flex-direction: column;
        gap: 5px;
    }
}

.roi-rate {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
}

.roi-rate span {
    font-weight: 700;
    color: #72efdd;
}

/* Стили для прогресса - Вариант 1 */
.slider-container {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
}

.slider-background {
    position: absolute;
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 10px;
    z-index: 1;
}

.slider-progress {
    position: absolute;
    height: 8px;
    background: #3c83f6;
    border-radius: 10px;
    z-index: 2;
}

.slider {
    position: absolute;
    width: 100%;
    height: 12px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    z-index: 3;
}
