        :root {
            --primary-gold: #FFD700;
            --primary-dark: #0a0e27;
            --secondary-purple: #6366f1;
            --accent-pink: #ec4899;
            --accent-cyan: #06b6d4;
            --text-light: #f8fafc;
            --text-gray: #cbd5e1;
            --card-bg: rgba(15, 23, 42, 0.6);
            --card-border: rgba(255, 255, 255, 0.1);
            --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
            --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1e293b 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 30px rgba(255, 215, 0, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--gradient-dark);
            color: var(--text-light);
            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% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--card-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            gap: 20px;
        }
        .logo a {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .main-nav {
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
            padding: 0;
        }

        .nav-list li a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

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

        .nav-list li a:hover {
            color: var(--primary-gold);
        }

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

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

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary-gold);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

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

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

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

        .cta-button {
            background: var(--gradient-primary);
            color: var(--primary-dark);
            padding: 14px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            border: none;
            cursor: pointer;
            display: inline-block;
            text-align: center;
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
            color: var(--primary-dark);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--primary-dark);
            padding: 14px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
            color: var(--primary-dark);
        }

        section {
            padding: 100px 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .btn-large {
            padding: 20px 48px;
            font-size: 18px;
            border-radius: 14px;
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 16px;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            box-shadow: var(--shadow-md);
        }

        .info-table,
        .payment-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table thead,
        .payment-table thead {
            background: rgba(255, 215, 0, 0.1);
        }

        .info-table th,
        .payment-table th {
            padding: 20px;
            text-align: left;
            font-weight: 700;
            color: var(--primary-gold);
            border-bottom: 2px solid var(--card-border);
            font-size: 16px;
        }

        .info-table td,
        .payment-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--card-border);
            color: var(--text-gray);
            font-size: 16px;
        }

        .info-table tbody tr:hover,
        .payment-table tbody tr:hover {
            background: rgba(255, 215, 0, 0.05);
        }

        .content-with-image {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: start;
            margin: 40px 0;
        }

        .content-image img,
        .registration-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--card-border);
        }
        
        img[src*="horizontal"],
        img[src*="vertical"],
        img[src*="wide"] {
            margin: 10px auto;
            display: block;
            max-width: 500px;
        }
        
        .logo img {
            max-height: 50px;
        }

        .steps-list {
            list-style: none;
            counter-reset: step-counter;
            padding-left: 0;
        }

        .steps-list li {
            counter-increment: step-counter;
            position: relative;
            padding-left: 60px;
            margin-bottom: 32px;
            color: var(--text-gray);
        }

        .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            color: var(--primary-dark);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 20px;
            box-shadow: var(--shadow-glow);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin: 40px 0;
        }

        .game-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-md);
        }

        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 215, 0, 0.2);
            border-color: var(--primary-gold);
        }

        .game-icon {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }

        .live-dealer-content {
            display: flex;
            gap: 40px;
            align-items: center;
            margin: 40px 0;
        }

        .live-dealer-image {
            width: 500px;
            flex-shrink: 0;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--card-border);
        }

        .advantages-list {
            list-style: none;
            padding-left: 0;
        }

        .advantages-list li {
            position: relative;
            padding-left: 40px;
            margin-bottom: 24px;
            color: var(--text-gray);
            font-size: 18px;
        }

        .advantages-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 28px;
            height: 28px;
            background: var(--gradient-primary);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
        }

        .security-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin: 40px 0;
        }

        .security-block {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-md);
        }

        .faq-list {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .faq-item:hover {
            border-color: var(--primary-gold);
            box-shadow: var(--shadow-md);
        }

        .faq-item h3 {
            margin-top: 0;
            font-size: 22px;
            color: var(--primary-gold);
        }

        .cta-final-section {
            text-align: center;
            padding: 120px 0;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        }

        .footer {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--card-border);
            padding: 60px 0 40px;
        }

        .footer-nav {
            margin-bottom: 32px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            list-style: none;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .footer-info {
            text-align: center;
            color: var(--text-gray);
            font-size: 14px;
        }

        @media (max-width: 1024px) {
            h1 { font-size: 52px; }
            h2 { font-size: 40px; }
            h3 { font-size: 28px; }
            
            .content-with-image {
                grid-template-columns: 1fr;
            }
            
            .content-image img {
                max-width: 400px;
                margin: 0 auto;
                display: block;
            }
            
            .live-dealer-content {
                flex-direction: column;
            }
            
            .live-dealer-image {
                width: 100%;
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            
            .logo {
                order: 1;
            }
            
            .hamburger {
                display: flex;
                order: 2;
            }
            
            .main-nav {
                order: 3;
                width: 100%;
            }
            
            .nav-list {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                border-bottom: 1px solid var(--card-border);
                box-shadow: var(--shadow-lg);
            }
            
            .nav-list.active {
                max-height: 500px;
            }
            
            .nav-list li {
                padding: 16px 0;
                border-bottom: 1px solid var(--card-border);
            }
            
            .nav-list li:last-child {
                border-bottom: none;
            }
            
            .header .cta-button {
                order: 4;
                width: 100%;
                margin-top: 16px;
            }
            
            h1 { font-size: 40px; }
            h2 { font-size: 32px; }
            h3 { font-size: 24px; }
            
            section {
                padding: 60px 0;
            }
            
            .hero-section {
                padding: 80px 0;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .security-content {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            h1 { font-size: 32px; }
            h2 { font-size: 28px; }
            
            .cta-button,
            .btn-primary {
                padding: 12px 24px;
                font-size: 14px;
            }
            
            .btn-large {
                padding: 16px 32px;
                font-size: 16px;
            }
        }
    

@media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            
            .logo {
                order: 1;
            }
            
            .hamburger {
                display: flex;
                order: 2;
            }
            
            .main-nav {
                order: 3;
                width: 100%;
            }
            
            .nav-list {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                border-bottom: 1px solid var(--card-border);
                box-shadow: var(--shadow-lg);
            }
            
            .nav-list.active {
                max-height: 500px;
            }
            
            .nav-list li {
                padding: 16px 0;
                border-bottom: 1px solid var(--card-border);
            }
            
            .nav-list li:last-child {
                border-bottom: none;
            }
            
            .header .cta-button {
                order: 4;
                width: 100%;
                margin-top: 16px;
            }
            
            h1 { font-size: 40px; }
            h2 { font-size: 32px; }
            h3 { font-size: 24px; }
            
            section {
                padding: 60px 0;
            }
            
            .hero-section {
                padding: 80px 0;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .security-content {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }

@media (max-width: 480px) {
            h1 { font-size: 32px; }
            h2 { font-size: 28px; }
            
            .cta-button,
            .btn-primary {
                padding: 12px 24px;
                font-size: 14px;
            }
            
            .btn-large {
                padding: 16px 32px;
                font-size: 16px;
            }
        }