        :root {
            --primary-color: #D4AF37;
            --secondary-color: #1a0033;
            --accent-color: #FF6B35;
            --text-light: #ffffff;
            --text-dark: #1a1a1a;
            --bg-dark: #0a0015;
            --bg-card: #1a0033;
            --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
            --gradient-secondary: linear-gradient(135deg, #1a0033 0%, #2d0052 100%);
            --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            --shadow-sm: 0 4px 6px rgba(212, 175, 55, 0.1);
            --shadow-md: 0 10px 25px rgba(212, 175, 55, 0.2);
            --shadow-lg: 0 20px 50px rgba(212, 175, 55, 0.3);
            --transition: all 0.4s 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', Roboto, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .site-header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            z-index: 1000;
            padding: 1rem 0;
            transition: var(--transition);
        }
        
        .site-header.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-md);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo a {
            display: inline-block;
            text-decoration: none;
            transition: var(--transition);
        }

        .logo a img {
            max-height: 50px;
            width: auto;
            display: block;
        }

        .logo a:hover {
            transform: scale(1.05);
        }
        
        .main-navigation {
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .main-navigation .nav-list {
            flex: none;
        }

        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger-menu span {
            width: 28px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: var(--transition);
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .nav-list {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
        }

        .nav-list a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: var(--transition);
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition);
        }

        .nav-list a:hover::after {
            width: 100%;
        }

        .cta-button {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--text-dark);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-large {
            padding: 1.2rem 3rem;
            font-size: 1.3rem;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-secondary);
            position: relative;
            overflow: hidden;
            padding-top: 8rem;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .site-footer {
            background: var(--bg-card);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding: 3rem 0;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-info p {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        @media (max-width: 768px) {
            section.container {
                margin-top: 200px !important;
            }
            .hamburger-menu {
                display: flex;
            }

            .header-container {
                padding: 0 1rem;
            }

            .main-navigation {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: rgba(26, 0, 51, 0.98);
                backdrop-filter: blur(20px);
                padding: 6rem 2rem 2rem;
                transition: var(--transition);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            }

            .main-navigation.active {
                right: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 1.5rem;
            }

            .nav-list a {
                font-size: 1.2rem;
                display: block;
                padding: 0.5rem 0;
            }

            .header-container > .cta-button {
                display: none;
            }

            .nav-list::after {
                content: '';
                display: block;
                margin-top: 2rem;
            }

            .nav-list li:last-child::after {
                content: '';
                display: block;
                margin-top: 2rem;
                padding-top: 2rem;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.3rem;
            }

            p {
                font-size: 1rem;
            }

            section {
                padding: 4rem 0;
            }

            .hero-section {
                padding-top: 6rem;
                min-height: 80vh;
            }

            .container {
                padding: 0 1rem;
            }

            .bonus-grid, .games-categories, .app-features, .support-options, .advantages-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            .overview-table th, .overview-table td,
            .payment-table th, .payment-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            h1 {
                font-size: 3rem;
            }

            h2 {
                font-size: 2.3rem;
            }

            .bonus-grid, .games-categories {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1441px) {
            .container {
                max-width: 1600px;
            }

            h1 {
                font-size: 4rem;
            }

            h2 {
                font-size: 3.2rem;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-button:hover {
            animation: glow 2s infinite;
        }
        
        img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
            margin: 10px auto;
            display: block;
            max-width: 500px;
        }
        
        .table-responsive {
            overflow-x: auto;
            width: 100%;
        }
        
        table {
            width: 100%;
            min-width: 600px;
        }

@media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }

            .header-container {
                padding: 0 1rem;
            }

            .main-navigation {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: rgba(26, 0, 51, 0.98);
                backdrop-filter: blur(20px);
                padding: 6rem 2rem 2rem;
                transition: var(--transition);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            }

            .main-navigation.active {
                right: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 1.5rem;
            }

            .nav-list a {
                font-size: 1.2rem;
                display: block;
                padding: 0.5rem 0;
            }

            .header-container > .cta-button {
                display: none;
            }

            .nav-list::after {
                content: '';
                display: block;
                margin-top: 2rem;
            }

            .nav-list li:last-child::after {
                content: '';
                display: block;
                margin-top: 2rem;
                padding-top: 2rem;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.3rem;
            }

            p {
                font-size: 1rem;
            }

            section {
                padding: 4rem 0;
            }

            .hero-section {
                padding-top: 6rem;
                min-height: 80vh;
            }

            .container {
                padding: 0 1rem;
            }

            .bonus-grid, .games-categories, .app-features, .support-options, .advantages-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            .overview-table th, .overview-table td,
            .payment-table th, .payment-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }
        }