  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFD700;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f5f5f5;
            --success: #27AE60;
            --warning: #F39C12;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: #fff;
        }

        /* Sticky Navigation */
        nav.sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 0.8rem 2rem;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav.sticky-nav .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-color);
        }

        nav.sticky-nav .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav.sticky-nav .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        nav.sticky-nav .nav-links a:hover {
            color: var(--accent-color);
        }

        nav.sticky-nav .cta-btn {
            background: var(--accent-color);
            color: var(--secondary-color);
            padding: 0.6rem 1.2rem;
            border-radius: var(--border-radius);
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }

        nav.sticky-nav .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 8rem 2rem 3rem;
            margin-top: 60px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero .subheading {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        .hero .offer {
            background: rgba(255, 215, 0, 0.2);
            border: 2px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            max-width: 600px;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .hero .cta-button {
            background: var(--accent-color);
            color: var(--secondary-color);
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            margin-top: 1.5rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .hero .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        /* Registration Form Section */
        .registration-section {
            background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
            padding: 3rem 2rem;
            margin: 2rem 0;
        }

        .registration-section h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--secondary-color);
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #dd0000;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .form-group input:hover {
            border-color: #ff0000;
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
        }

        .form-group input:focus {
            outline: none;
            border-color: #ff0000;
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        /* Games Section */
        .games-section {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .games-section h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--secondary-color);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .game-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: var(--transition);
            cursor: pointer;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .game-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .game-card .game-info {
            padding: 1rem;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Advantages Section */
        .advantages-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 3rem 2rem;
        }

        .advantages-section h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .advantage-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .advantage-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .advantage-card .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Reviews Section */
        .reviews-section {
            background: var(--bg-light);
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-section h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--secondary-color);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .review-card {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-left: 4px solid var(--primary-color);
        }

        .review-card .rating {
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .review-card .reviewer-name {
            font-weight: bold;
            color: var(--secondary-color);
            margin-top: 1rem;
        }

        /* Tables Section */
        .tables-section {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tables-section h2 {
            margin: 2rem 0 1rem 0;
            color: var(--secondary-color);
            font-size: 1.5rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 2rem;
        }

        table thead {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            font-weight: 600;
        }

        table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }

        table tbody tr:hover {
            background: var(--bg-light);
        }

        table tbody tr:last-child td {
            border-bottom: none;
        }

        /* SEO Text Block */
        .seo-section {
            background: white;
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .seo-section h2 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .seo-section p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .seo-section strong {
            color: var(--secondary-color);
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        footer .language-selector {
            display: inline-block;
            margin-bottom: 1rem;
        }

        footer .language-selector select {
            padding: 0.5rem 1rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
        }

        footer .language-selector select option {
            background: var(--secondary-color);
            color: white;
        }

        footer .legal-links {
            margin-top: 1rem;
        }

        footer .legal-links a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 1rem;
            transition: var(--transition);
        }

        footer .legal-links a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero .subheading {
                font-size: 1.2rem;
            }

            .advantages-grid,
            .reviews-grid,
            .games-grid {
                grid-template-columns: 1fr;
            }

            nav.sticky-nav {
                flex-direction: column;
                gap: 1rem;
            }

            nav.sticky-nav .nav-links {
                gap: 1rem;
                flex-wrap: wrap;
            }

            table {
                font-size: 0.9rem;
            }

            table th,
            table td {
                padding: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 4rem 1rem 2rem;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .form-container {
                padding: 1rem;
            }

            nav.sticky-nav .nav-links {
                display: none;
            }
        }

        /* Utilities */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hidden {
            display: none;
        }

        .text-center {
            text-align: center;
        }

        .mt-3 {
            margin-top: 3rem;
        }