        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        :root {
            --primary: #0F4C81; 
            --secondary: #FF6B00; 
            --accent: #009145; 
            --dark: #121212;
            --light: #F9FBFF;
            --text: #2D3748;
            --shadow: 0 6px 12px rgba(0,0,0,0.15);
            --card-bg: #FFFFFF;
            --border: #E5E7EB;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            padding-bottom: 60px;
            background-image: linear-gradient(to bottom, var(--light), #E8F4F8);
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 1.2rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 3px solid var(--secondary);
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            display: inline-block;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .main-nav {
            display: flex;
            gap: 2.5rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .main-nav a:hover {
            color: var(--accent);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }
        .btn-download {
            background-color: var(--secondary);
            color: white;
            box-shadow: 0 4px 0 #CC5500;
        }
        .btn-download:hover {
            background-color: #E05A00;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #CC5500;
        }
        .btn-download:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #CC5500;
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 4px 0 #007034;
        }
        .btn-login:hover {
            background-color: #00803D;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #007034;
        }
        .btn-login:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #007034;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 85px;
                left: -100%;
                flex-direction: column;
                background-color: var(--dark);
                width: 100%;
                padding: 2.5rem;
                transition: left 0.4s ease;
                z-index: 999;
                border-right: 5px solid var(--secondary);
            }
            .main-nav.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 1.2rem;
                margin-top: 1.5rem;
            }
            .logo {
                font-size: 1.6rem;
            }
        }
        .container {
            width: 92%;
            max-width: 1400px;
            margin: 3rem auto;
        }
        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: 1px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            font-weight: 700;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            height: 25px;
            width: 5px;
            background-color: var(--secondary);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent);
            margin: 2rem 0 1rem;
            font-weight: 700;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
            color: #343a40;
            max-width: 100%;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(255, 107, 0, 0.08);
            padding: 0.4rem 0.8rem;
            border-left: 5px solid var(--secondary);
            font-weight: 600;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .section {
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2.5rem;
            border-top: 5px solid var(--secondary);
            transition: transform 0.3s ease;
        }
        .section:hover {
            transform: translateY(-5px);
        }
        .key-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feature-card {
            background-color: #F0F8FB;
            padding: 2rem;
            border-radius: 8px;
            border-top: 6px solid var(--accent);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .game-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 3px solid var(--border);
            transition: transform 0.3s ease;
            object-fit: cover;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        tr:hover {
            background-color: #F0F8FB;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2.5rem 0;
        }
        .tag {
            background-color: #E5E7EB;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.95rem;
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }
        .category-link {
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 3px dotted var(--accent);
            transition: all 0.3s ease;
        }
        .category-link:hover {
            border-bottom: 3px solid var(--accent);
            color: var(--accent);
        }
        .recommendation {
            background-color: rgba(15, 76, 129, 0.07);
            padding: 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
            border-left: 6px solid var(--primary);
            box-shadow: var(--shadow);
        }
        .recommendation h3 {
            color: var(--primary);
            margin-top: 0;
            font-size: 1.8rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 5%;
            margin-top: 4rem;
            border-top: 8px solid var(--secondary);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-section a {
            color: #CBD5E1;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #1E293B;
            font-size: 1rem;
            color: #94A3B8;
            line-height: 1.8;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 0.8rem;
        }
        ul, ol {
            margin: 1.5rem 0 1.5rem 2.5rem;
            font-size: 1.05rem;
        }
        ul li, ol li {
            margin-bottom: 0.8rem;
        }
        @media (max-width: 480px) {
            .container {
                width: 95%;
                margin: 1.5rem auto;
            }
            .section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .game-img {
                margin: 1.5rem 0;
            }
            table {
                font-size: 0.9rem;
            }
            th, td {
                padding: 0.8rem;
            }
        }
        img {
            loading: lazy;
        }
        html {
            scroll-behavior: smooth;
        }
        .desi-term {
            font-weight: 700;
            color: var(--primary);
        }
