        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Verdana', sans-serif;
            line-height: 1.85; 
        }
        :root {
            --primary: #FF6B00; 
            --secondary: #006400; 
            --tertiary: #000080; 
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --dark-gray: #2C3E50;
            --accent: #FFD700; 
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            padding-bottom: 60px;
            scroll-behavior: smooth;
        }
        header {
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
        }
        .logo {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: var(--accent);
        }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
            position: relative;
        }
        .desktop-nav {
            display: flex;
            justify-content: center;
            gap: 35px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .desktop-nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .mobile-nav-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            right: 25px;
            top: 22px;
            z-index: 10000;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--tertiary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 25px;
            gap: 18px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        .mobile-nav.active {
            display: flex;
            animation: fadeIn 0.3s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            font-size: 16px;
            transition: all 0.2s ease;
        }
        .mobile-nav a:hover {
            padding-left: 20px;
            color: var(--accent);
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            margin: 12px 8px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--white);
            border: 2px solid transparent;
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--white);
            border: 2px solid transparent;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            border-color: var(--white);
        }
        .container {
            max-width: 1280px;
            margin: 40px auto;
            padding: 0 25px;
        }
        .content-wrapper {
            background-color: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 42px;
            color: var(--tertiary);
            margin-bottom: 25px;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 15px;
            font-weight: 800;
            text-transform: capitalize;
        }
        h2 {
            font-size: 32px;
            color: var(--secondary);
            margin: 35px 0 20px;
            font-weight: 700;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "⚡";
            position: absolute;
            left: -5px;
        }
        h3 {
            font-size: 24px;
            color: var(--primary);
            margin: 30px 0 15px;
            font-weight: 700;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
            color: #34495E;
        }
        .highlight {
            background-color: rgba(255,107,0,0.08);
            padding: 20px;
            border-left: 5px solid var(--primary);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: var(--tertiary);
            font-size: 18px;
        }
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 12px;
            font-size: 17px;
            color: #34495E;
        }
        li::marker {
            color: var(--primary);
            font-weight: bold;
        }
        .game-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            margin: 30px auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            border: 3px solid var(--light-gray);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th {
            padding: 18px;
            text-align: left;
            background-color: var(--tertiary);
            color: var(--white);
            font-weight: 700;
            font-size: 16px;
        }
        td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #EAECEE;
            font-size: 16px;
        }
        tr:nth-child(even) {
            background-color: #F8F9FA;
        }
        tr:hover {
            background-color: rgba(255,107,0,0.05);
            transform: scale(1.01);
            transition: all 0.2s ease;
        }
        footer {
            max-width: 1280px;
            margin: 50px auto 0;
            padding: 30px 25px;
            border-top: 3px solid var(--primary);
        }
        .game-categories, .tags {
            margin: 30px 0;
        }
        .game-categories h3, .tags h3 {
            margin-bottom: 15px;
            color: var(--tertiary);
        }
        .game-categories a, .tags a {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--light-gray);
            color: var(--tertiary);
            text-decoration: none;
            border-radius: 25px;
            margin: 8px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: rgba(0,100,0,0.08);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid var(--secondary);
        }
        .recommendation h3 {
            color: var(--secondary);
            margin-top: 0;
        }
        .recommendation a {
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            color: var(--dark-gray);
            font-size: 15px;
            line-height: 1.8;
        }
        .section-break {
            margin: 45px 0;
            border-bottom: 2px dashed #EAECEE;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            .content-wrapper {
                padding: 25px;
            }
            .logo {
                font-size: 26px;
                text-align: left;
                padding-left: 10px;
            }
            .btn {
                width: 90%;
                text-align: center;
                margin: 10px auto;
                display: block;
            }
            table {
                font-size: 14px;
            }
            th, td {
                padding: 12px 8px;
            }
            .game-img {
                max-width: 100%;
            }
        }
        img {
            loading: lazy;
            border: none;
        }
        html {
            scroll-behavior: smooth;
        }
        a:focus, button:focus {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }
        [lang="hi"], [lang="ta"], [lang="te"] {
            font-family: 'Noto Sans Devanagari', 'Noto Sans Tamil', 'Noto Sans Telugu', sans-serif;
        }
