        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7; 
        }
        :root {
            --primary: #1E2F40; 
            --secondary: #9D4EDD; 
            --dark: #121212;
            --light: #F9F7F3; 
            --accent: #E63946; 
            --success: #26A69A; 
            --gold: #FFB30F; 
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 60px;
            background-image: linear-gradient(to bottom, rgba(30, 47, 64, 0.04), rgba(157, 78, 221, 0.04));
            scroll-behavior: smooth;
        }
        header {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 1.2rem 5%;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 3px 18px rgba(0,0,0,0.35);
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.4);
        }
        .logo span {
            color: var(--accent);
            text-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.35s ease;
            padding: 0.4rem 0;
            border-bottom: 3px solid transparent;
            font-size: 1.05rem;
        }
        .main-nav a:hover {
            color: var(--gold);
            border-bottom: 3px solid var(--gold);
        }
        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.35s ease;
            box-shadow: 0 5px 8px rgba(0,0,0,0.15);
            font-size: 1.05rem;
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
        }
        .btn-download:hover {
            background-color: #d12f3c;
            transform: translateY(-3px);
            box-shadow: 0 8px 12px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: var(--secondary);
            color: white;
        }
        .btn-login:hover {
            background-color: #8a3ed0;
            transform: translateY(-3px);
            box-shadow: 0 8px 12px rgba(0,0,0,0.2);
        }
        .mobile-menu-btn {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            z-index: 1000;
        }
        .container {
            width: 92%;
            max-width: 1320px;
            margin: 2.5rem auto;
            padding: 0 1.2rem;
        }
        h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 2.5rem;
            border-bottom: 5px solid var(--accent);
            padding-bottom: 1rem;
            text-shadow: 0 3px 6px rgba(0,0,0,0.12);
            line-height: 1.3;
        }
        h2 {
            font-size: 2.3rem;
            color: var(--dark);
            margin: 3rem 0 1.5rem;
            position: relative;
            padding-left: 20px;
            border-left: 6px solid var(--secondary);
            line-height: 1.4;
        }
        h3 {
            font-size: 1.75rem;
            color: var(--primary);
            margin: 2rem 0 1.2rem;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.12rem;
            text-align: justify;
            color: #2D2D2D;
            max-width: 85ch;
        }
        .highlight {
            background-color: rgba(157, 78, 221, 0.12);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-weight: 700;
            color: var(--secondary);
            border: 1px solid rgba(157, 78, 221, 0.2);
        }
        .card {
            background: white;
            border-radius: 12px;
            padding: 2.2rem;
            margin: 2.5rem 0;
            box-shadow: 0 6px 22px rgba(0,0,0,0.09);
            border-top: 5px solid var(--secondary);
            transition: all 0.4s ease;
            border-bottom: 2px solid var(--gold);
        }
        .card:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.15);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.8rem;
            margin: 3rem 0;
        }
        .stat-item {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 1.8rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
            border: 1px solid rgba(255, 179, 15, 0.2);
        }
        .stat-item h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stat-item p {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            color: white;
            margin-bottom: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        ul {
            margin: 1.5rem 0 1.5rem 3rem;
        }
        li {
            margin-bottom: 1rem;
            font-size: 1.12rem;
            color: #2D2D2D;
            padding-left: 0.8rem;
        }
        .img-container {
            margin: 3rem 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 24px rgba(0,0,0,0.18);
            border: 5px solid white;
            transition: transform 0.4s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 22px rgba(0,0,0,0.09);
        }
        th, td {
            padding: 1.4rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }
        tr:hover {
            background-color: rgba(157, 78, 221, 0.06);
        }
        footer {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 4.5rem 5%;
            margin-top: 5rem;
            border-top: 8px solid var(--gold);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.8rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 1.2rem;
        }
        .footer-links a {
            color: #E0E0E0;
            text-decoration: none;
            transition: all 0.35s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.15);
            color: #C0C0C0;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: var(--dark);
                padding: 6rem 2.5rem 2.5rem;
                gap: 2rem;
                z-index: 999;
                overflow-y: auto;
            }
            .main-nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.55rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .card {
                padding: 1.8rem;
            }
            .stat-item p {
                font-size: 1.8rem;
            }
            p, li {
                font-size: 1.08rem;
            }
        }
        .game-feature {
            display: flex;
            gap: 1.8rem;
            margin: 1.8rem 0;
            align-items: flex-start;
        }
        .game-feature-icon {
            font-size: 1.7rem;
            color: var(--accent);
            margin-top: 0.4rem;
        }
        .game-feature-content {
            flex: 1;
        }
        .quote {
            font-style: italic;
            border-left: 5px solid var(--accent);
            padding-left: 1.8rem;
            margin: 2.5rem 0;
            color: #444;
            font-size: 1.15rem;
        }
        .region-lock {
            background-color: rgba(230, 57, 70, 0.1);
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-left: 5px solid var(--accent);
        }
        img {
            loading: lazy;
            border-radius: 8px;
        }
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent);
            color: white;
            padding: 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
