:root {
    --primary-gold: #FFD700;
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;
    --text-light: #F5F5F5;
    --text-gray: #B0B0B0;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 20px rgba(255,215,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.header-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--primary-dark);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
    min-width: 220px;
}

.header-cta {
    order: 2;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    order: 3;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: rgba(22, 33, 62, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.mobile-cta {
    width: 100%;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

.hero-section {
    background: var(--gradient-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFF 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 900px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: left;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 19px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.8;
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
}

.info-table-wrapper {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin: 40px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.info-table th {
    font-weight: 700;
    color: var(--primary-gold);
    width: 35%;
}

.info-table td {
    color: var(--text-gray);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.overview-intro,
.overview-footer {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.step-card {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.3);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.step-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.login-cta {
    text-align: center;
    margin-top: 60px;
}

.bonuses-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.bonus-card {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.3);
}

.bonus-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.bonus-card-content {
    padding: 30px;
}

.bonus-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.bonus-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.highlight-card {
    border: 2px solid var(--primary-gold);
    background: rgba(255, 215, 0, 0.05);
}

.bonuses-cta {
    text-align: center;
    margin-top: 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.game-category-card {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.game-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.3);
}

.game-category-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.game-category-content {
    padding: 30px;
}

.game-category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.game-category-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.games-cta {
    text-align: center;
    margin-top: 60px;
}

.advantages-list {
    display: grid;
    gap: 30px;
    margin: 60px 0;
}

.advantage-item {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.advantage-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.advantage-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.advantage-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.advantages-cta {
    text-align: center;
    margin-top: 60px;
}

.subsection-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 50px 0 30px;
}

.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 20px;
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.payments-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.payments-table thead {
    background: rgba(255, 215, 0, 0.1);
}

.payments-table th,
.payments-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.payments-table th {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 15px;
}

.payments-table td {
    color: var(--text-gray);
    font-size: 15px;
}

.payments-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.payments-note,
.withdrawal-info,
.security-info {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 25px 0;
}

.payments-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-content {
    max-width: 100%;
    margin: 60px 0;
}

.faq-item {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 16px;
    cursor: pointer;
}

.faq-answer p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.footer {
    background: rgba(22, 33, 62, 0.95);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    padding: 60px 0 40px;
    margin-top: 100px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
}

.footer-info {
    text-align: center;
}

.footer-text,
.footer-disclaimer {
    color: var(--text-gray);
    font-size: 14px;
    margin: 10px 0;
}

.footer-disclaimer {
    font-weight: 600;
    color: var(--primary-gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

@media (min-width: 768px) {
    .header-nav {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .header-container {
        flex-wrap: nowrap;
    }

    .hero-title {
        font-size: 72px;
    }

    .section-title {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .header-cta {
        width: 100%;
        order: 4;
        flex-basis: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-intro {
        font-size: 17px;
    }

    .hero-description {
        font-size: 18px;
    }

    .info-table-wrapper {
        padding: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .info-table {
        font-size: 14px;
        min-width: 100%;
    }

    .info-table th,
    .info-table td {
        padding: 12px 10px;
        white-space: nowrap;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }

    .payments-table {
        min-width: 600px;
    }

    .payments-table th,
    .payments-table td {
        padding: 10px 12px;
        white-space: nowrap;
        font-size: 13px;
    }

    .section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .login-steps,
    .bonus-cards,
    .games-grid {
        grid-template-columns: 1fr;
    }
}
