        * {
            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: #7c3aed; 
            --secondary: #f59e0b; 
            --accent: #10b981; 
            --light: #f8fafc; 
            --dark: #1e293b; 
            --spacing: 1.8rem; 
            --mobile-spacing: 1.2rem;
            --border-radius: 8px; 
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 4rem;
            scroll-behavior: smooth;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: var(--spacing);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
            text-transform: capitalize;
        }
        .logo span {
            color: var(--accent);
            font-style: italic;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
        }
        .desktop-nav {
            display: flex;
            gap: 2.2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 0.6rem 1.2rem;
            border-radius: var(--border-radius);
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-3px);
        }
        .desktop-nav a:hover::after {
            width: 80%;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--primary);
            flex-direction: column;
            padding: var(--mobile-spacing);
            gap: 1.2rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 999;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            padding-left: 1.8rem;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--dark);
            margin-right: 1.2rem;
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 12px rgba(0,0,0,0.15);
        }
        .btn:active {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: var(--spacing);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            border-bottom: 4px solid var(--secondary);
            padding-bottom: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.5rem;
            position: relative;
            padding-left: 1.5rem;
            font-weight: 700;
        }
        h2::before {
            content: "🔮";
            position: absolute;
            left: 0;
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 2rem 0 1rem;
            font-weight: 700;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            color: #334155; 
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        em {
            color: #475569;
            font-style: italic;
        }
        .highlight {
            background-color: rgba(245, 158, 11, 0.1);
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            font-weight: 700;
            border-left: 3px solid var(--secondary);
        }
        .game-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2.5rem auto;
            display: block;
            box-shadow: 0 8px 24px rgba(0,0,0,0.18);
            border: 4px solid white;
            transition: transform 0.4s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        ul, ol {
            margin: 1.5rem 0 1.5rem 3rem;
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 1rem;
            font-size: 1.08rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-table th {
            background-color: var(--primary);
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .stats-table td {
            padding: 1.2rem;
            border-bottom: 1px solid #e2e8f0;
            font-size: 1.05rem;
        }
        .stats-table tr:hover {
            background-color: rgba(124, 58, 237, 0.03);
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        .tags-section {
            margin: 4rem 0;
            padding: 2rem;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .category-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .category-links a, .tag-links a {
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            background-color: var(--light);
            color: var(--primary);
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid var(--primary);
        }
        .category-links a:hover, .tag-links a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .recommendation {
            background-color: rgba(245, 158, 11, 0.08);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin: 4rem 0;
            border-left: 6px solid var(--secondary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .section-break {
            margin: 3rem 0;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            border: none;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem var(--spacing);
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }
        .footer-container h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-container p {
            color: #cbd5e1;
            font-size: 1rem;
        }
        .footer-container ul {
            list-style: none;
            margin-left: 0;
            padding-left: 0;
        }
        .footer-container ul li {
            margin-bottom: 1rem;
        }
        .footer-container ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .footer-container ul li a:hover {
            color: var(--secondary);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .container {
                padding: var(--mobile-spacing);
            }
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 1.2rem;
                text-align: center;
            }
            .btn-download {
                margin-right: 0;
            }
            .stats-table th, .stats-table td {
                padding: 0.8rem;
                font-size: 0.95rem;
            }
            .game-img {
                max-width: 100%;
            }
            ul, ol {
                margin-left: 1.5rem;
                padding-left: 0.8rem;
            }
        }
        img {
            loading: lazy;
            border: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }
        @media (prefers-contrast: more) {
            :root {
                --primary: #6d28d9;
                --secondary: #f97316;
                --accent: #059669;
                --dark: #0f172a;
            }
            body {
                background-color: white;
                color: black;
            }
        }
