        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f9f5f0;
            color: #2c3639;
            padding-bottom: 60px;
        }
        .navbar {
            background-color: #c87941;
            padding: 18px 25px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.18);
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .logo span {
            color: #f4e869;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            color: #f4e869;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 25px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #6c5ce7;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.4s ease;
            margin: 12px 8px;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #5848d7;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #00b894;
        }
        .btn-download:hover {
            background-color: #00a17f;
        }
        .btn-login {
            background-color: #e17055;
            color: #ffffff;
        }
        .btn-login:hover {
            background-color: #d63031;
        }
        h1 {
            font-size: 2.8rem;
            color: #c87941;
            margin: 35px 0 25px;
            border-bottom: 4px solid #f4e869;
            padding-bottom: 15px;
            font-weight: 800;
        }
        h2 {
            font-size: 2.2rem;
            color: #6c5ce7;
            margin: 30px 0 20px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.7rem;
            color: #00b894;
            margin: 25px 0 15px;
            font-weight: 600;
        }
        .intro {
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.09);
            margin-bottom: 35px;
        }
        .content-section {
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.09);
            margin-bottom: 35px;
        }
        p {
            margin: 15px 0;
            font-size: 1.1rem;
            text-align: justify;
            color: #4a4a4a;
        }
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        li {
            margin: 12px 0;
            font-size: 1.08rem;
            color: #4a4a4a;
        }
        strong {
            color: #c87941;
            font-weight: 700;
        }
        .game-img {
            width: 100%;
            max-width: 850px;
            height: auto;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        .highlight {
            background-color: #fff8e6;
            border-left: 6px solid #c87941;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 16px 20px;
            border: 1px solid #e0e0e0;
            text-align: left;
            font-size: 1.05rem;
        }
        .stats-table th {
            background-color: #c87941;
            color: white;
            font-weight: 700;
        }
        .stats-table tr:nth-child(even) {
            background-color: #faf6f0;
        }
        .stats-table tr:hover {
            background-color: #f0ebe4;
        }
        footer {
            background-color: #2c3639;
            color: white;
            padding: 50px 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 45px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f4e869;
            font-weight: 700;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            margin: 12px 0;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: #f4e869;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            margin-top: 35px;
            border-top: 1px solid #444;
            color: #bdbdbd;
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background-color: #c87941;
                padding: 30px;
                gap: 25px;
                box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .intro, .content-section {
                padding: 25px;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
            p {
                font-size: 1rem;
            }
        }
        .para-space {
            margin-bottom: 20px;
        }
        .emoji {
            font-size: 1.3rem;
            margin: 0 10px;
        }
        .tag {
            display: inline-block;
            padding: 10px 20px;
            background-color: #f0ebe4;
            border-radius: 30px;
            margin: 10px 10px 10px 0;
            text-decoration: none;
            color: #6c5ce7;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e0d9c8;
            color: #5848d7;
            transform: translateY(-2px);
        }
        img {
            loading: lazy;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f9f5f0;
        }
        ::-webkit-scrollbar-thumb {
            background: #c87941;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #b06835;
        }
        .indian-term {
            font-style: italic;
            color: #8d5524;
        }
