﻿/* CSS -  -  */
:root {
    --primary-color: #7E57C2;       /*  */
    --primary-light: #B085F5;
    --primary-dark: #4D2C91;
    --secondary-color: #FFD700;     /*  */
    --secondary-light: #FFE44D;
    --secondary-dark: #C8A600;
    --accent-color: #FF6B6B;        /*  */
    --light-color: #FFFFFF;         /*  */
    --light-gray: #2D2D3A;          /*  */
    --medium-gray: #3D3D4D;         /*  */
    --dark-gray: #9E9E9E;           /* ， */
    --text-color: #E0E0E0;          /*  */
    --success-color: #66BB6A;       /*  */
    --warning-color: #FFCA28;       /*  */
    --danger-color: #EF5350;        /*  */
    --border-radius: 10px;          /*  */
    --box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /*  */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /*  */
    --header-height: 80px;          /*  */
    --mobile-nav-height: 65px;      /*  */
    --bg-color: #1A1A27;            /*  */
}

/*  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-color);
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: var(--bg-color);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--bg-color), #161620);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(126, 87, 194, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 25%);
    z-index: -1;
}

a {
    text-decoration: none;
    color: var(--secondary-light);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

/*  */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(126, 87, 194, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1.2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*  -  */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(26, 26, 39, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 100;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 50px;
    filter: drop-shadow(0 0 10px rgba(126, 87, 194, 0.5));
}

.header-nav {
    display: flex;
    height: 100%;
}

.nav-links-horizontal {
    display: flex;
    height: 100%;
}

.nav-links-horizontal li {
    height: 100%;
}

.nav-links-horizontal .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 25px;
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links-horizontal .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links-horizontal .nav-link:hover::after,
.nav-links-horizontal .nav-link.active::after {
    width: 100%;
}

.nav-links-horizontal .nav-link:hover,
.nav-links-horizontal .nav-link.active {
    color: var(--secondary-color);
}

.auth-container {
    display: flex;
    gap: 20px;
}

/*  */
/* 1. PC */
.mobile-menu-toggle {
    display: none; /* PC */
    font-size: 1.8rem;
    color: var(--light-color);
    background: rgba(255, 215, 0, 0.1);
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative; /*  */
    z-index: 101; /*  */
}

/* 2.  */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex; /*  */
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: rotate(90deg);
    }
}

/*  */
.mobile-nav {
    display: none; /*  */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-nav-height);
    background: rgba(26, 26, 39, 0.95);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    z-index: 99;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/*  */
@media (max-width: 767px) {
    .mobile-nav {
        display: flex; /*  */
    }
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px;
    width: 25%;
    text-align: center;
    border-radius: var(--border-radius);
}

.mobile-nav-link i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mobile-nav-link.active {
    color: var(--secondary-color);
    background: rgba(255, 215, 0, 0.1);
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/*  */
.main-content {
    padding-top: var(--header-height);
}

/*  */
.section {
    padding: 100px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-color);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/*  -  */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow);
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn:hover::after {
    opacity: 1;
    top: -30%;
    left: -30%;
}

.login-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.login-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.register-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-color);
}

.register-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(126, 87, 194, 0.4);
}

.cta-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 16px 35px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.outline-btn:hover {
    background-color: rgba(126, 87, 194, 0.1);
    color: var(--light-color);
    transform: translateY(-3px);
}

.bonus-btn {
    background: linear-gradient(135deg, var(--accent-color), #FF5252);
    color: var(--light-color);
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    margin-top: 20px;
    font-weight: 600;
}

.bonus-btn:hover {
    background: linear-gradient(135deg, #FF5252, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
}

/*  */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 39, 0.7), rgba(30, 30, 48, 0.9));
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(126, 87, 194, 0.15), transparent 70%);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.hero-text {
    flex: 1;
    padding-right: 60px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-light);
}

.hero-description {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 25px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-promo {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    color: var(--light-color);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.promo-badge i {
    margin-right: 15px;
    font-size: 2rem;
    color: var(--secondary-color);
}

/*  */
.features-section {
    background: linear-gradient(135deg, #1E1E2F, #25253A);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.1), transparent 70%);
    z-index: 1;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 35px;
    background: rgba(45, 45, 58, 0.6);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(45, 45, 58, 0.8);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-right: 25px;
    min-width: 60px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    color: var(--secondary-light);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-color);
}

.feature-desc {
    color: var(--text-color);
}

/*  */
.about-section {
    background: linear-gradient(135deg, #1A1A27, #212134);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(126, 87, 194, 0.1), transparent 70%);
    z-index: 1;
}

.about-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(45, 45, 58, 0.6);
    padding: 25px;
    border-radius: var(--border-radius);
    flex: 1;
    min-width: 180px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light-color);
    font-weight: 500;
}

/*  */
.bonus-section {
    background: linear-gradient(135deg, #1E1E2F, #25253A);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 107, 107, 0.1), transparent 70%);
    z-index: 1;
}

.bonus-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.bonus-card {
    background: rgba(45, 45, 58, 0.6);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(5px);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.bonus-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1);
    color: var(--secondary-light);
}

.bonus-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.bonus-desc {
    color: var(--text-color);
    margin-bottom: 25px;
}

.bonus-terms {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/*  */
.site-footer {
    background: linear-gradient(135deg, #14141F, #1A1A27);
    color: var(--light-color);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(126, 87, 194, 0.1), transparent 70%);
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo-img {
    max-width: 200px;
    filter: drop-shadow(0 0 10px rgba(126, 87, 194, 0.5));
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-menu li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-menu a, .footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary-light);
    font-size: 1.2rem;
    min-width: 25px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(126, 87, 194, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/*  */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.legal-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1E1E2F, #25253A);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent-color);
}

.modal-body {
    padding: 30px;
}

.legal-content {
    display: none;
}

.legal-content.active {
    display: block;
}

.legal-content p {
    margin-bottom: 25px;
    color: var(--text-color);
}

/*  */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(126, 87, 194, 0.5);
}

/*  */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.7s ease forwards;
}

/*  */
@media (max-width: 1199px) {
    .header-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .bonus-title {
        font-size: 1.6rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .nav-links-horizontal .nav-link {
        padding: 0 18px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .features-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .bonus-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .site-header {
        height: 70px;
    }
    
    /*  */
    .header-nav {
        display: none;
    }
    
    .auth-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex; /*  */
    }
    
    body {
        font-size: 1rem;
        padding-bottom: var(--mobile-nav-height);
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .section {
        padding: 80px 25px;
    }
    
    .hero-section {
        min-height: calc(100vh - 70px);
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-right: 20px;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-nav {
        display: flex; /*  */
    }
    
    .site-footer {
        padding-bottom: 100px;
    }
    
    .bonus-card {
        padding: 30px;
    }
    
    .bonus-icon {
        font-size: 3rem;
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 2.3rem;
    }
    
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
    }
    
    .site-logo {
        max-height: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .bonus-container {
        grid-template-columns: 1fr;
    }
    
    .promo-badge span {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 1rem;
        margin: 0px 3px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 1.05rem;
    }
    
    .stat-item {
        min-width: 100%;
    }
}

/*  */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.gold-text {
    color: var(--secondary-color);
}

.purple-text {
    color: var(--primary-light);
}