/* Welcome Page Styles - Light Theme with Dark Footer */

:root {
    --primary-color: #2962ff;
    --secondary-color: #f8f9fa;
    --accent-color: #00c853;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #ffffff;
    --border-color: #dee2e6;
    --success-color: #00c853;
    --warning-color: #ff9800;
    --danger-color: #f44336;
}

.fa-robot::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    background-color: currentColor;
    -webkit-mask-image: url("/img/icon/ai.svg");
    mask-image: url("/img/icon/ai.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    font-family: inherit !important;
    speak: none;
}
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.header-section-text{
    position: relative;
    padding-bottom: 1rem;
}

.header-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary-color), #1976d2) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(41, 98, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 90%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.stat-icon {
    opacity: 0.8;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stats .row {
    display: flex;
    flex-wrap: wrap;
}

.hero-stats .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.hero-actions .btn {
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    border: none;
}

.hero-actions .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #1976d2);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.4);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 98, 255, 0.5);
}

.hero-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.hero-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.3);
}

.trust-indicators {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.trust-item {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-item i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .trust-indicators .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
}

/* Navigation */
.navbar {
    background-color: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Main Content - Responsive padding for fixed navbar */
.main-content {
    padding-top: 5rem; /* 80px - Desktop default */
}

/* Tablet and smaller screens */
@media (max-width: 991.98px) {
    .main-content {
        padding-top: 4.5rem; /* 72px - Slightly smaller for tablets */
    }
}

/* Mobile screens */
@media (max-width: 767.98px) {
    .main-content {
        padding-top: 4rem; /* 64px - Smaller for mobile */
    }
}

/* Small mobile screens */
@media (max-width: 575.98px) {
    .main-content {
        padding-top: 3.5rem; /* 56px - Even smaller for small phones */
    }
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Language Selector */
.language-selector {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
}

/* Hero Slider */
.hero-slider {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    /*border-radius: 12px;*/
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.carousel-item {
    height: 400px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    border-radius: 8px;
    padding: 2rem;
    color: var(--text-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

.carousel-caption h1 {
    color: var(--text-primary);
    text-shadow: none;
}

.carousel-caption p {
    color: var(--text-secondary);
    text-shadow: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

/* Calculator Section */
.calculator-section {
    background-color: var(--bg-secondary);
    /*border-radius: 12px;*/
    padding: 2rem;
    /*margin-bottom: 3rem;*/
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calculator-input {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem;
}

.calculator-input:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(41, 98, 255, 0.25);
}

.usdt-icon {
    color: #26a17b;
    font-size: 1.2rem;
}

/* Calculator Results */
.result-item {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.result-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.result-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-color);
}

#calculator-result {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}



/* Tariffs Section */
.tariffs-section {
    background-color: var(--bg-secondary);
    /*border-radius: 12px;*/
    padding: 2rem;
    /*margin-bottom: 3rem;*/
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tariff-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tariff-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tariff-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tariff-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Reserved Block */
.reserved-block {
    background-color: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    /*border-radius: 12px;*/
    padding: 3rem;
    /*margin-bottom: 3rem;*/
    text-align: center;
    color: var(--text-secondary);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--bg-secondary);
    /*border-radius: 12px;*/
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer - Keep Dark */
.footer {
    background-color: #131722;
    border-top: 1px solid #2a2e39;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    color: #d1d4dc;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: #2962ff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    color: #787b86;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2962ff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #2a2e39;
    padding-top: 1rem;
    text-align: center;
    color: #787b86;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e88e5;
    border-color: #1e88e5;
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #00a047;
    border-color: #00a047;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        width: 90%;
        padding: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }

    .calculator-section,
    .join-section,
    .referral-section,
    .tariffs-section,
    .reviews-section {
        padding: 1.5rem;
    }

    .countdown-timer {
        font-size: 1.5rem;
    }

    .tariff-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 250px;
    }

    .carousel-caption {
        padding: 1rem;
        width: 95%;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    .calculator-section,
    .tariffs-section,
    .reviews-section {
        padding: 1rem;
    }
}



/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Additional smooth scrolling for better browser support */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Custom smooth scrolling for older browsers */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Ensure proper scroll offset for fixed header - Responsive */
section[id] {
    scroll-margin-top: 5rem; /* 80px - Desktop default */
}

/* Tablet and smaller screens */
@media (max-width: 991.98px) {
    section[id] {
        scroll-margin-top: 4.5rem; /* 72px */
    }
}

/* Mobile screens */
@media (max-width: 767.98px) {
    section[id] {
        scroll-margin-top: 4rem; /* 64px */
    }
}

/* Small mobile screens */
@media (max-width: 575.98px) {
    section[id] {
        scroll-margin-top: 3.5rem; /* 56px */
    }
}

/* Four Reasons Section */
.four-reasons-section {
    background: var(--bg-secondary);
}

.four-reasons-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.four-reasons-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.reason-card {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.reason-icon {
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
}

.reason-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.reason-card p {
    line-height: 1.6;
    margin-bottom: 0;
}

.reason-card .reason-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reason-card .btn {
    margin-top: auto;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    align-self: center;
}

.reason-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(41, 98, 255, 0.3);
}

.reason-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
}

.reason-card .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.reason-card .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive adjustments for four reasons section */
@media (max-width: 768px) {
    .four-reasons-section {
        margin: 1rem 0;
        padding: 1.5rem !important;
    }

    .four-reasons-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .reason-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .reason-card h5 {
        font-size: 1.1rem;
    }

    .reason-icon i {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .four-reasons-section {
        padding: 1rem !important;
    }

    .four-reasons-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .reason-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .reason-card h5 {
        font-size: 1rem;
    }

    .reason-card p {
        font-size: 0.9rem;
    }

    .reason-icon i {
        font-size: 1.8rem !important;
    }
}

/* Strategy Section */
.strategies-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.strategies-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.strategies-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.strategy-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.strategy-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 196, 83, 0.2);
}

.strategy-card.featured::before {
    content: 'Оптимальная';
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.strategy-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.strategy-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.strategy-features {
    margin-bottom: 1.5rem;
}

.strategy-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.strategy-features ul li:last-child {
    border-bottom: none;
}

.strategy-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.strategy-stats {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.strategy-action {
    margin-top: auto;
}

.strategy-action .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.strategy-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(41, 98, 255, 0.3);
}

/* Responsive adjustments for strategy section */
@media (max-width: 768px) {
    .strategies-section {
        margin: 1rem 0;
        padding: 1.5rem !important;
    }

    .strategies-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .strategy-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .strategy-title {
        font-size: 1.3rem;
    }

    .strategy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .strategies-section {
        padding: 1rem !important;
    }

    .strategies-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .strategy-card {
        padding: 1rem;
    }

    .strategy-title {
        font-size: 1.2rem;
    }

    .strategy-features ul li {
        font-size: 0.85rem;
    }

    .stat-label,
    .stat-value {
        font-size: 0.8rem;
    }
}

/* Slider Section */
.slider-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    animation: slide 70s linear infinite;
    width: calc(18 * 300px + 18 * 1rem);
    padding-bottom: 10px;
    margin-top: 5px;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-item {
    flex: 0 0 300px;
    margin-right: 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.slider-content {
    text-align: center;
}

.slider-content h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.slider-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Crypto chart styles */
.crypto-header {
    text-align: center;
    margin-bottom: 1rem;
}

.crypto-header h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.crypto-name {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.chart-container {
    margin: 1rem 0;
    text-align: center;
}

.chart-container canvas {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chart-container canvas:hover {
    transform: scale(1.02);
}

.crypto-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.crypto-stats .stat {
    text-align: center;
    flex: 1;
}

.crypto-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.crypto-stats .stat-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Modal styles */
.modal-fullscreen {
    max-width: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100vh;
    border-radius: 0;
}

.modal-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    color: var(--text-primary);
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
    background: var(--bg-primary);
}

.modal-chart-container {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-chart-container canvas {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modal-stats {
    margin-top: 2rem;
}

.stat-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-card h6 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-card .stat-value {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-9 * 300px - 9 * 1rem)); /* Сдвигаем на 9 блоков (половина от 18) */
    }
}

/* Responsive adjustments for slider section */
@media (max-width: 768px) {
    .slider-section {
        margin: 1rem 0;
        padding: 1.5rem !important;
    }

    .slider-item {
        flex: 0 0 250px;
        padding: 1.5rem;
    }

    .slider-track {
        width: calc(18 * 250px + 18 * 1rem);
        padding-bottom: 10px;
        margin-top: 5px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-9 * 250px - 9 * 1rem));
        }
    }

    .slider-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .slider-section {
        padding: 1rem !important;
    }

    .slider-item {
        flex: 0 0 200px;
        padding: 1rem;
    }

    .slider-track {
        width: calc(18 * 200px + 18 * 1rem);
        padding-bottom: 10px;
        margin-top: 5px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-9 * 200px - 9 * 1rem));
        }
    }

    .slider-content h3 {
        font-size: 1.2rem;
    }

    .slider-content p {
        font-size: 0.85rem;
    }
}

/* Tariffs Block Section */
.tariffs-block {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tariffs-block h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.tariffs-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.tariff-group-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tariff-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.tariff-group-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.tariff-group-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tariff-group-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.tariff-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tariff-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.tariff-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 98, 255, 0.15);
}

.tariff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.tariff-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.tariff-bots {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.bots-count {
    font-weight: 700;
    font-size: 1.1rem;
}

.bots-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.tariff-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.original-price,
.discount-price,
.first-purchase {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.original-price {
    background: rgba(108, 117, 125, 0.1);
    color: var(--text-secondary);
}

.discount-price {
    background: rgba(41, 98, 255, 0.1);
    color: var(--primary-color);
}

.first-purchase {
    background: rgba(0, 196, 83, 0.1);
    color: var(--accent-color);
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.price-amount {
    font-weight: 700;
    font-size: 1.1rem;
}

.price-amount.discounted {
    color: var(--primary-color);
}

.price-amount.first-discount {
    color: var(--accent-color);
}

.price-currency {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.discount-tag {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: auto;
    transform: rotate(-2deg);
}

.discount-tag.first {
    background: linear-gradient(135deg, var(--accent-color), #00a854);
}

/* Tariffs Slider Styles */
.tariffs-slider {
    position: relative;
    overflow: hidden;
}

/* Top Navigation Arrows */
.tariffs-top-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tariffs-top-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--bg-primary);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tariffs-top-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.3);
}

.tariffs-top-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.tariffs-top-btn:disabled:hover {
    background: var(--bg-primary);
    color: var(--primary-color);
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tariffs-top-dots {
    display: flex;
    gap: 0.5rem;
}

.tariffs-top-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tariffs-top-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.tariffs-top-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.tariffs-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.tariffs-slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.tariffs-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.tariffs-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tariffs-slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--bg-primary);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.tariffs-slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.tariffs-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.tariffs-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.tariffs-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tariffs-slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.tariffs-slider-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Mobile tariff slide height limitation and expand functionality */
@media (max-width: 991.98px) {
    .tariffs-slide {
        position: relative;
        max-height: 100vh;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .tariffs-slide.expanded {
        max-height: none;
    }

    .tariff-expand-btn-container {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, var(--bg-primary) 70%);
        padding: 2rem 1rem 1rem;
        display: flex;
        justify-content: center;
        z-index: 10;
    }

    .tariff-expand-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 25px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }

    .tariff-expand-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    }

    .tariff-expand-btn:active {
        transform: translateY(0);
    }

    .expand-icon {
        transition: transform 0.3s ease;
    }

    .tariffs-slide.expanded .expand-icon {
        transform: rotate(180deg);
    }

    .tariffs-slide.expanded .expand-text {
        display: none;
    }

    .tariffs-slide.expanded .tariff-expand-btn::before {
        content: "Свернуть";
    }
}

/* Responsive adjustments for tariffs section */
@media (max-width: 768px) {
    .tariffs-block {
        margin: 1rem 0;
        padding: 1.5rem !important;
    }

    .tariffs-block h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .tariff-group-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .tariff-group-title {
        font-size: 1.3rem;
    }

    .tariff-group-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .tariff-item {
        padding: 1rem;
    }

    .tariff-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .tariff-pricing {
        gap: 0.5rem;
    }

    .original-price,
    .discount-price,
    .first-purchase {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .price-label {
        min-width: auto;
    }

    .discount-tag {
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .tariffs-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .tariffs-slider-nav {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .tariffs-top-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .tariffs-top-nav {
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .tariffs-block {
        padding: 1rem !important;
    }

    .tariffs-block h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .tariff-group-card {
        padding: 1rem;
    }

    .tariff-group-title {
        font-size: 1.2rem;
    }

    .tariff-name {
        font-size: 1rem;
    }

    .tariff-description {
        font-size: 0.85rem;
    }

    .bots-count {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1rem;
    }
}

/* Tariffs Promo Section */
.tariffs-promo {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.05) 0%, rgba(0, 196, 83, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(41, 98, 255, 0.1);
    margin-bottom: 3rem;
}

.promo-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.promo-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.promo-badge i {
    color: #fff;
    font-size: 1rem;
}

.promo-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(41, 98, 255, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    min-width: 80px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 98, 255, 0.2);
}

.countdown-number {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-subtitle {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments for tariffs promo */
@media (max-width: 768px) {
    .tariffs-promo {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .countdown-timer {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .tariffs-promo {
        padding: 1rem;
    }

    .promo-title {
        font-size: 1.75rem;
    }

    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .promo-description,
    .promo-subtitle {
        font-size: 1rem;
    }
}

.countdown-expired {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Updated Try It Section Styles */
.try-it-info {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.try-it-info p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.try-it-form {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#try-it-form-send{
    width: 100%;
}

.try-it-form .form-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.try-it-input {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.try-it-input:focus {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(41, 98, 255, 0.25);
    outline: none;
}

.try-it-input::placeholder {
    color: var(--text-secondary);
}

.try-it-form .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.3);
}

.try-it-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Responsive adjustments for try it section */
@media (max-width: 768px) {
    .try-it-info,
    .try-it-form {
        padding: 1.5rem;
    }

    .try-it-info p {
        font-size: 1rem;
    }

    .try-it-form .form-label {
        font-size: 0.95rem;
    }

    .try-it-input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .try-it-form .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .try-it-info,
    .try-it-form {
        padding: 1rem;
    }

    .try-it-info p {
        font-size: 0.95rem;
    }

    .try-it-form .form-label {
        font-size: 0.9rem;
    }

    .try-it-input {
        padding: 0.625rem;
        font-size: 0.9rem;
    }

    .try-it-form .btn {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
}

/* Referral Program Section */
.referral-program-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.referral-program-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.referral-program-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.referral-content {
    max-width: 800px;
    margin: 0 auto;
}

.referral-offer {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.05) 0%, rgba(0, 196, 83, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(41, 98, 255, 0.1);
}

.referral-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.old-percent {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-right: 0.5rem;
}

.new-percent {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.1em;
}

.referral-countdown {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.15);
}

.referral-countdown .countdown-label {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.referral-countdown .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.referral-countdown .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    min-width: 80px;
    transition: all 0.3s ease;
}

.referral-countdown .countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 98, 255, 0.2);
}

.referral-countdown .countdown-number {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.referral-countdown .countdown-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.referral-calculator {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calculator-label {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.income-display {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.3);
}

.income-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-right: 0.5rem;
}

.income-currency {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.referral-slider {
    margin-top: 2rem;
}

.slider-line {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 20px 1rem 20px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
}

.slider-dot:nth-child(1) {
    position: absolute;
    left: 0%;
    transform: translateX(-50%);
}

.slider-dot:nth-child(2) {
    position: absolute;
    left: 33.33%;
    transform: translateX(-50%);
}

.slider-dot:nth-child(3) {
    position: absolute;
    left: 66.67%;
    transform: translateX(-50%);
}

.slider-dot:nth-child(4) {
    position: absolute;
    left: 100%;
    transform: translateX(-50%);
}

.slider-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33.33%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.slider-line[data-active="10"]::before {
    width: 0%;
}

.slider-line[data-active="25"]::before {
    width: 33.33%;
}

.slider-line[data-active="50"]::before {
    width: 66.67%;
}

.slider-line[data-active="100"]::before {
    width: 100%;
}

.slider-dot {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    background: var(--bg-secondary);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    border-color: var(--primary-color);
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(41, 98, 255, 0.2);
}

.slider-labels {
    position: relative;
    margin: 0 20px 0.5rem 20px;
    height: 20px;
}

.slider-labels span:nth-child(1) {
    position: absolute;
    left: 0%;
    transform: translateX(-50%);
}

.slider-labels span:nth-child(2) {
    position: absolute;
    left: 33.33%;
    transform: translateX(-50%);
}

.slider-labels span:nth-child(3) {
    position: absolute;
    left: 66.67%;
    transform: translateX(-50%);
}

.slider-labels span:nth-child(4) {
    position: absolute;
    left: 100%;
    transform: translateX(-50%);
}

.slider-labels span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.slider-labels span:hover {
    color: var(--primary-color);
}

.slider-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive adjustments for referral program */
@media (max-width: 768px) {
    .referral-program-section {
        margin: 1rem 0;
        padding: 1.5rem !important;
    }

    .referral-program-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .referral-title {
        font-size: 1.5rem;
    }

    .referral-offer,
    .referral-countdown,
    .referral-calculator {
        padding: 1.5rem;
    }

    .referral-countdown .countdown-timer {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .referral-countdown .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }

    .referral-countdown .countdown-number {
        font-size: 1.5rem;
    }

    .income-amount {
        font-size: 2rem;
    }

    .income-currency {
        font-size: 1.2rem;
    }

    .slider-line {
        margin: 0 15px 1rem 15px;
    }

    .slider-dot {
        width: 18px;
        height: 18px;
    }

    .slider-labels {
        margin: 0 15px 0.5rem 15px;
    }
}

@media (max-width: 576px) {
    .referral-program-section {
        padding: 1rem !important;
    }

    .referral-program-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .referral-title {
        font-size: 1.3rem;
    }

    .referral-offer,
    .referral-countdown,
    .referral-calculator {
        padding: 1rem;
    }

    .referral-countdown .countdown-timer {
        gap: 0.75rem;
    }

    .referral-countdown .countdown-item {
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }

    .referral-countdown .countdown-number {
        font-size: 1.3rem;
    }

    .income-amount {
        font-size: 1.75rem;
    }

    .income-currency {
        font-size: 1.1rem;
    }

    .slider-line {
        margin: 0 10px 1rem 10px;
    }

    .slider-dot {
        width: 16px;
        height: 16px;
    }

    .slider-labels {
        margin: 0 10px 0.5rem 10px;
    }

    .slider-labels span {
        font-size: 0.8rem;
    }
}

/* Try It List Styles */
.try-it-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.try-it-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.try-it-list li:last-child {
    margin-bottom: 0;
}

.try-it-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(41, 98, 255, 0.3);
}

/*.try-it-list li::after {*/
/*    content: '✓';*/
/*    position: absolute;*/
/*    left: 0.375rem;*/
/*    top: 0.125rem;*/
/*    color: white;*/
/*    font-size: 1.3rem;*/
/*    font-weight: 700;*/
/*    line-height: 1;*/
/*}*/

/* Анимация для маркеров */
.try-it-list li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.try-it-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.try-it-list li:nth-child(2) {
    animation-delay: 0.3s;
}

.try-it-list li:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover эффект для маркеров */
.try-it-list li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.4);
}

/* Responsive adjustments for try it list */
@media (max-width: 768px) {
    .try-it-list li {
        padding-left: 2rem;
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .try-it-list li::before {
        width: 1.25rem;
        height: 1.25rem;
        top: 0.125rem;
    }

    .try-it-list li::after {
        left: 0.25rem;
        top: 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .try-it-list li {
        padding-left: 1.75rem;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .try-it-list li::before {
        width: 1.125rem;
        height: 1.125rem;
        top: 0.125rem;
    }

    .try-it-list li::after {
        left: 0.1875rem;
        top: 0;
        font-size: 0.75rem;
    }
}

/* Discount Badge Styles */
.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    font-size: 0.8em;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: 4px;
    position: relative;
    transform: rotate(-2deg);
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
    animation: discountPulse 2s infinite;
}

.discount-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(2px);
}

@keyframes discountPulse {
    0% {
        transform: rotate(-2deg) scale(1);
    }
    50% {
        transform: rotate(-2deg) scale(1.05);
    }
    100% {
        transform: rotate(-2deg) scale(1);
    }
}

/* Hover effect for discount badge */
.discount-badge:hover {
    transform: rotate(-2deg) scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 71, 87, 0.4);
}

/* Responsive adjustments for discount badge */
@media (max-width: 768px) {
    .discount-badge {
        font-size: 0.75em;
        padding: 0.2rem 0.4rem;
        margin-left: 0.4rem;
    }
}

@media (max-width: 576px) {
    .discount-badge {
        font-size: 0.7em;
        padding: 0.15rem 0.3rem;
        margin-left: 0.3rem;
    }
}

/* Bot Counter Section Styles */
.bot-counter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.bot-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.bot-counter-display {
    position: relative;
    z-index: 1;
}

.counter-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.counter-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.counter-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.counter-number {
    position: relative;
}

.counter-value {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: counterGlow 2s ease-in-out infinite alternate;
}

@keyframes counterGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(41, 98, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(41, 98, 255, 0.6));
    }
}

.counter-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-description {
    max-width: 500px;
    margin: 0 auto;
}

.counter-description p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments for bot counter */
@media (max-width: 768px) {
    .counter-container {
        padding: 2rem 1.5rem;
    }

    .counter-value {
        font-size: 3rem;
    }

    .counter-text {
        font-size: 1rem;
    }

    .counter-description p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .counter-container {
        padding: 1.5rem 1rem;
    }

    .counter-value {
        font-size: 2.5rem;
    }

    .counter-text {
        font-size: 0.9rem;
    }

    .counter-description p {
        font-size: 0.9rem;
    }
}
