        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', Tahoma, sans-serif;
            line-height: 1.85;
            letter-spacing: 0.4px;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #9B2226; 
            --secondary: #FFB703; 
            --accent: #023E8A; 
            --text: #2B2B2B;
            --bg: #FFF8E6; 
            --nav-bg: #1A1A2E;
            --white: #FFFFFF;
            --shadow: 0 5px 12px rgba(0,0,0,0.12);
            --border-radius: 8px;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            padding-bottom: 60px;
            overflow-x: hidden;
        }
        header {
            background-color: var(--nav-bg);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--secondary);
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            display: inline-block;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-right: 25px;
        }
        .logo span {
            color: var(--white);
            font-weight: 400;
        }
        .navbar {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
            margin: 0;
        }
        .nav-links li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.05rem;
            padding: 9px 15px;
            border-radius: var(--border-radius);
            transition: all 0.35s ease;
            position: relative;
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links li a:hover {
            color: var(--secondary);
        }
        .nav-links li a:hover::after {
            width: 100%;
        }
        .btn-container {
            display: flex;
            gap: 18px;
        }
        .btn {
            padding: 11px 22px;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: var(--secondary);
            color: var(--nav-bg);
        }
        .login-btn {
            background-color: var(--accent);
            color: var(--white);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            opacity: 0.95;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 10000;
        }
        .hamburger div {
            width: 32px;
            height: 3.5px;
            background-color: var(--white);
            margin: 4.5px 0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .hamburger.active div:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active div:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active div:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
            border-bottom: 4px solid var(--secondary);
            padding-bottom: 12px;
            text-align: left;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 35px 0 18px;
            position: relative;
            padding-left: 12px;
            font-weight: 700;
        }
        h2::before {
            content: "⚔️"; 
            margin-right: 10px;
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.65rem;
            color: var(--nav-bg);
            margin: 28px 0 12px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--accent);
            margin: 20px 0 8px;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.1rem;
            color: var(--text);
        }
        strong {
            color: var(--primary);
            font-weight: 600;
        }
        .highlight {
            background-color: rgba(255, 183, 3, 0.15);
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 600;
            border-left: 3px solid var(--secondary);
        }
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .game-img {
            width: 100%;
            max-width: 850px;
            height: auto;
            margin: 25px auto;
            display: block;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 4px solid var(--white);
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .section-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 35px;
            border-top: 5px solid var(--primary);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 15px 18px;
            text-align: left;
            border-bottom: 1px solid #E0E0E0;
        }
        th {
            background-color: var(--nav-bg);
            color: var(--white);
            font-weight: 600;
            font-size: 1.05rem;
        }
        tr:nth-child(even) {
            background-color: rgba(255, 183, 3, 0.05);
        }
        tr:hover {
            background-color: rgba(155, 34, 38, 0.07);
            transition: background-color 0.3s ease;
        }
        footer {
            background-color: var(--nav-bg);
            color: var(--white);
            padding: 40px 0 25px;
            margin-top: 60px;
            border-top: 5px solid var(--secondary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.35rem;
            margin-bottom: 20px;
            color: var(--secondary);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 8px;
            display: inline-block;
            font-weight: 600;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 0;
                background-color: var(--nav-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 35px;
                transition: width 0.5s ease;
                overflow: hidden;
                z-index: 9998;
            }
            .nav-links.active {
                width: 100%;
            }
            .nav-links li a {
                font-size: 1.2rem;
                padding: 12px 20px;
            }
            .btn-container {
                display: none;
            }
            .btn-container.mobile {
                display: flex;
                margin-top: 40px;
                gap: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.45rem;
            }
            .section-card {
                padding: 20px;
            }
            .game-img {
                max-width: 100%;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .container {
                width: 95%;
            }
        }
        .content-wrapper {
            margin-bottom: 25px;
        }
        .emoji-divider {
            text-align: center;
            font-size: 1.8rem;
            margin: 30px 0;
            letter-spacing: 15px;
            opacity: 0.8;
        }
        .recommendation-box {
            background-color: rgba(2, 62, 138, 0.1);
            border-left: 6px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .recommendation-box h4 {
            color: var(--accent);
            margin-top: 0;
            font-size: 1.4rem;
        }
        .indian-term {
            font-style: italic;
            color: var(--primary);
        }
        img {
            loading: lazy;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        a:focus, button:focus {
            outline: 3px solid var(--secondary);
            outline-offset: 2px;
        }
