:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --accent-color: #00f2fe;
    --success-color: #10b981;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo .logo-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.header-logo img {
    max-height: 80px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: var(--text-primary);
}

.cta-button:hover::before {
    left: 100%;
}

.section {
    padding: 100px 0;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.hero-section {
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 35px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 50px;
}

.hero-cta .cta-button {
    padding: 18px 50px;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

.content-block {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.subsection-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.content-block p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-image, .bonus-image, .security-image, .promo-banner {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: var(--border-radius);
    margin: 30px auto;
    display: block;
    box-shadow: var(--shadow-md);
    aspect-ratio: attr(width) / attr(height);
}

.logo-img {
    width: auto;
    height: auto;
    max-height: 80px;
}

.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: var(--border-radius);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table, .payment-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table thead, .payment-table thead {
    background: rgba(102, 126, 234, 0.2);
}

.info-table th, .payment-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.info-table td, .payment-table td {
    padding: 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.info-table tbody tr:hover, .payment-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.5);
}

.game-icon {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    max-width: 450px;
    display: block;
}

.game-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-block {
    text-align: center;
    margin: 60px 0;
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 35px;
    margin-bottom: 25px;
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question::before {
    content: '→';
    font-size: 24px;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item:hover .faq-question::before {
    transform: translateX(5px);
}

.faq-answer p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 40px;
    margin-top: 100px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin-bottom: 40px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        display: none;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        align-items: flex-start;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }

    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .subsection-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 17px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .content-block {
        padding: 25px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .table-wrapper {
        margin: 30px -20px;
        border-radius: 0;
    }

    .info-table thead, .payment-table thead {
        display: none;
    }

    .info-table tr, .payment-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }

    .info-table td, .payment-table td {
        display: block;
        text-align: right;
        padding: 15px 20px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .info-table td:last-child, .payment-table td:last-child {
        border-bottom: none;
    }

    .info-table td::before, .payment-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        font-weight: 700;
        color: var(--text-primary);
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 44px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 76px;
    }

    .section-title {
        font-size: 64px;
    }
}