        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.75; 
            -webkit-font-smoothing: antialiased;
        }
        body {
            background-color: #f8f3e6; 
            color: #2d2a32;
            padding-bottom: 80px;
            scroll-behavior: smooth;
        }
        .navbar {
            background: linear-gradient(135deg, #e63946, #f77f00); 
            padding: 18px 25px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #fcbf49; 
        }
        .nav-links {
            display: flex;
            gap: 32px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #fcbf49;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #fcbf49;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            color: white;
            cursor: pointer;
            z-index: 1001;
        }
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 25px;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #0077b6, #00b4d8);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            transition: all 0.4s ease;
            margin: 12px 8px;
            border: none;
            cursor: pointer;
            font-size: 1.08rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.18);
            background: linear-gradient(135deg, #023e8a, #0077b6);
        }
        .btn-download {
            background: linear-gradient(135deg, #264653, #2a9d8f);
        }
        .btn-download:hover {
            background: linear-gradient(135deg, #1d3557, #264653);
        }
        .btn-login {
            background: linear-gradient(135deg, #e9c46a, #f4a261);
            color: #2d2a32;
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #f4a261, #e76f51);
            color: white;
        }
        h1 {
            font-size: 3rem;
            color: #e63946;
            margin: 40px 0 28px;
            border-bottom: 5px solid #fcbf49;
            padding-bottom: 18px;
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.3rem;
            color: #0077b6;
            margin: 35px 0 22px;
            font-weight: 700;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: '✨';
            position: absolute;
            left: -5px;
        }
        h3 {
            font-size: 1.8rem;
            color: #2a9d8f;
            margin: 28px 0 18px;
            font-weight: 600;
        }
        .intro {
            background-color: white;
            padding: 40px;
            border-radius: 18px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            border-top: 8px solid #e63946;
        }
        .content-section {
            background-color: white;
            padding: 38px;
            border-radius: 18px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        p {
            margin: 18px 0;
            font-size: 1.12rem;
            text-align: justify;
            color: #4a4a4a;
            word-spacing: 0.5px; 
        }
        ul, ol {
            margin: 22px 0 22px 45px;
        }
        li {
            margin: 14px 0;
            font-size: 1.1rem;
            color: #4a4a4a;
        }
        strong {
            color: #e63946;
            font-weight: 700;
        }
        .game-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 15px;
            margin: 35px auto;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            display: block;
            border: 5px solid #f8f3e6;
            loading: lazy;
        }
        .highlight {
            background-color: #fff8e8;
            border-left: 8px solid #f77f00;
            padding: 28px;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 18px 22px;
            border: 1px solid #e0e0e0;
            text-align: left;
            font-size: 1.08rem;
        }
        .stats-table th {
            background: linear-gradient(135deg, #e63946, #f77f00);
            color: white;
            font-weight: 700;
        }
        .stats-table tr:nth-child(even) {
            background-color: #fef7e9;
        }
        .stats-table tr:hover {
            background-color: #f8f3e6;
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        footer {
            background-color: #2d2a32;
            color: white;
            padding: 60px 25px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr); 
            gap: 50px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #fcbf49;
            font-weight: 700;
            border-bottom: 2px solid #fcbf49;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            margin: 14px 0;
            transition: color 0.3s ease;
            font-size: 1.08rem;
        }
        .footer-section a:hover {
            color: #fcbf49;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #444;
            color: #bdbdbd;
            font-size: 1.08rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 88px;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #e63946, #f77f00);
                padding: 35px;
                gap: 28px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.18);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .intro, .content-section {
                padding: 28px;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                width: 90%;
                text-align: center;
                margin: 10px auto;
                display: block;
            }
            p {
                font-size: 1rem;
            }
            .game-img {
                max-width: 100%;
            }
            .stats-table th, .stats-table td {
                padding: 14px 16px;
                font-size: 0.95rem;
            }
        }
        .para-space {
            margin-bottom: 22px;
        }
        .gujarati-term {
            font-style: italic;
            color: #8d4925;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            padding: 12px 22px;
            background-color: #f0ebe0;
            border-radius: 30px;
            margin: 12px 10px 12px 0;
            text-decoration: none;
            color: #0077b6;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag:hover {
            background-color: #e8e2d0;
            color: #023e8a;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f8f3e6;
        }
        ::-webkit-scrollbar-thumb {
            background: #e63946;
            border-radius: 6px;
            border: 3px solid #f8f3e6;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d62828;
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
