        :root {
            --primary-color: #FF3366;
            --secondary-color: #00E5FF;
            --accent-color: #FFD700;
            --dark-bg: #0A0E27;
            --darker-bg: #050816;
            --card-bg: #1A1F3A;
            --text-primary: #FFFFFF;
            --text-secondary: #B8C5D6;
            --gradient-primary: linear-gradient(135deg, #FF3366 0%, #FF6B9D 100%);
            --gradient-secondary: linear-gradient(135deg, #00E5FF 0%, #00B4D8 100%);
            --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--darker-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 2px solid rgba(255, 51, 102, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            justify-content: center;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
            margin-bottom: 0;
        }

        .nav-list a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

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

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

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

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

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

        .cta-button {
            background: var(--gradient-primary);
            color: var(--text-primary);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        main {
            margin-top: 100px;
        }
        
        .site-header .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
            opacity: 0.3;
        }

        h1 {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 35px;
            color: var(--text-primary);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60%;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--secondary-color);
        }

        p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .hero-section {
            background: var(--gradient-dark);
            padding: 150px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 51, 102, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .site-footer {
            background: var(--darker-bg);
            padding: 60px 0 40px;
            border-top: 2px solid rgba(255, 51, 102, 0.3);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .footer-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-info p {
            color: var(--text-secondary);
            font-size: 15px;
        }

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

            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                padding: 30px 20px;
                transform: translateX(100%);
                transition: transform 0.4s ease;
                z-index: 1;
            }

            .main-nav.active {
                transform: translateX(0);
            }

            .main-nav .nav-list {
                padding-left: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 20px;
            }

            .header-content {
                flex-wrap: wrap;
            }

            .cta-button {
                width: 100%;
                text-align: center;
                margin-top: 20px;
            }
            
            table, .info-table, .payment-table {
                display: block;
                overflow-x: scroll;
                -webkit-overflow-scrolling: touch;
            }
            
            table {
                width: 100%;
                display: block;
            }

            h1 {
                font-size: 40px;
            }

            h2 {
                font-size: 36px;
            }

            h3 {
                font-size: 26px;
            }

            p {
                font-size: 16px;
            }

            section {
                padding: 60px 0;
            }

            .hero-section {
                padding: 80px 0;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .content-block,
            .highlight-box,
            .feature-block,
            .strategy-content {
                padding: 25px;
            }

            th, td {
                padding: 15px;
                font-size: 14px;
            }

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

            .footer-nav ul {
                flex-direction: column;
                gap: 15px;
            }
        }

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

            h2 {
                font-size: 42px;
            }

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

        .btn-primary {
            background: var(--gradient-primary);
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #FF6B9D 0%, #FF3366 100%);
        }
        
        .logo img {
            max-height: 50px;
        }
        
        img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
            margin: 10px auto;
            display: block;
            max-width: 500px;
            width: 100%;
        }
