        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #2E4057;
            --secondary: #8C52FF;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --accent: #E94B3C;
            --success: #28A745;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 50px;
            background-image: linear-gradient(to bottom, rgba(46, 64, 87, 0.05), rgba(140, 82, 255, 0.05));
        }
        header {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: var(--accent);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }
        .btn {
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
        }
        .btn-download:hover {
            background-color: #d43b2d;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: var(--secondary);
            color: white;
        }
        .btn-login:hover {
            background-color: #7a40e6;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            z-index: 101;
        }
        .container {
            width: 90%;
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            border-bottom: 4px solid var(--accent);
            padding-bottom: 0.8rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.2rem;
            position: relative;
            padding-left: 15px;
            border-left: 5px solid var(--secondary);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.08rem;
            text-align: justify;
            color: #333;
        }
        .highlight {
            background-color: rgba(140, 82, 255, 0.1);
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
            color: var(--secondary);
        }
        .card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-top: 4px solid var(--secondary);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-item {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .stat-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--accent);
        }
        .stat-item p {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            color: white;
            margin-bottom: 0;
        }
        ul {
            margin: 1.2rem 0 1.2rem 2.5rem;
        }
        li {
            margin-bottom: 0.8rem;
            font-size: 1.08rem;
            color: #333;
        }
        .img-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 4px solid white;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: rgba(140, 82, 255, 0.05);
        }
        footer {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 4rem 5%;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--accent);
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 0.6rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
        }
        @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: 5rem 2rem 2rem;
                gap: 1.5rem;
                z-index: 100;
                overflow-y: auto;
            }
            .main-nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .card {
                padding: 1.5rem;
            }
            .stat-item p {
                font-size: 1.6rem;
            }
        }
        .game-feature {
            display: flex;
            gap: 1.5rem;
            margin: 1.5rem 0;
            align-items: flex-start;
        }
        .game-feature-icon {
            font-size: 1.5rem;
            color: var(--accent);
            margin-top: 0.3rem;
        }
        .game-feature-content {
            flex: 1;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #555;
        }
        .region-lock {
            background-color: rgba(233, 75, 60, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 4px solid var(--accent);
        }
        img {
            loading: lazy;
        }
