* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf2f8;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 120px;
            font-size: 16px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #9f7aea, #ed8936);
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(159, 122, 234, 0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.15);
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffddaf;
            margin: 0 6px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 6px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #9f7aea;
            background-color: rgba(255,255,255,0.9);
            transform: translateY(-1px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 16px 38px;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 15px 8px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #48bb78;
            color: white;
        }
        .btn-download:hover {
            background-color: #38a169;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
        }
        .btn-login {
            background-color: #4299e1;
            color: white;
        }
        .btn-login:hover {
            background-color: #3182ce;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
        }
        h1 {
            font-size: 3rem;
            color: #9f7aea;
            margin: 50px 0 35px;
            text-align: center;
            font-weight: 900;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            line-height: 1.4;
            padding-bottom: 20px;
            border-bottom: 4px solid #ed8936;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2d3748;
            margin: 60px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #9f7aea;
            font-weight: 800;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "🧩";
            margin-right: 12px;
            font-size: 2.4rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ed8936;
            margin: 45px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h3::before {
            content: "🌟";
            margin-right: 10px;
        }
        h4 {
            font-size: 1.5rem;
            color: #4a5568;
            margin: 35px 0 20px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h4::before {
            content: "🎯";
            margin-right: 8px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
            padding: 0 4px;
        }
        .highlight {
            font-weight: 800;
            color: #9f7aea;
            font-size: 1.25rem;
            text-shadow: 0 0.5px 1px rgba(0,0,0,0.05);
        }
        .desi-tip {
            background-color: #fef7fb;
            border-left: 6px solid #ed8936;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .desi-tip p {
            font-size: 1.2rem;
            margin-bottom: 0;
            font-weight: 600;
            color: #2d3748;
            text-align: left;
        }
        .desi-tip p::before {
            content: "🤫 Desi Gamer Tip: ";
            color: #9f7aea;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 35px 0;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            border: 4px solid #ffddaf;
        }
        .game-img:hover {
            transform: scale(1.03);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .img-caption {
            font-size: 1rem;
            color: #718096;
            margin-top: -25px;
            font-style: italic;
            font-weight: 500;
        }
        ul, ol {
            margin: 30px 0 30px 45px;
            font-size: 1.15rem;
            line-height: 2.1;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 12px;
        }
        li strong {
            color: #ed8936;
            font-size: 1.2rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            font-size: 1.1rem;
            box-shadow: 0 4px 18px rgba(0,0,0,0.1);
            border-radius: 12px;
            overflow: hidden;
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 2px solid #f0f0f0;
        }
        .stats-table th {
            background: linear-gradient(135deg, #9f7aea, #c3b4f3);
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: capitalize;
        }
        .stats-table tr:hover {
            background-color: #faf0f5;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .stats-table tr:nth-child(even) {
            background-color: #fcf1f7;
        }
        .tags-container {
            margin: 50px 0 60px;
            text-align: center;
        }
        .categories-container {
            margin: 60px 0 50px;
            text-align: center;
        }
        .category {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #9f7aea, #c3b4f3);
            color: white;
            border-radius: 30px;
            margin: 10px 8px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(159, 122, 234, 0.2);
            text-transform: capitalize;
        }
        .category:hover {
            background: linear-gradient(135deg, #805ad5, #a78bfa);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(159, 122, 234, 0.3);
        }
        .tag {
            display: inline-block;
            padding: 10px 24px;
            background-color: #ffddaf;
            color: #2d3748;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(237, 137, 54, 0.15);
            font-weight: 600;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #f6c384;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(237, 137, 54, 0.25);
        }
        .footer {
            background-color: #2d3748;
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
            border-top: 6px solid #9f7aea;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section {
            flex: 1;
            min-width: 280px;
        }
        .footer-section h3 {
            color: #ffddaf;
            margin-bottom: 30px;
            border-bottom: 3px solid #ffddaf;
            padding-bottom: 15px;
            font-size: 1.7rem;
        }
        .footer-section p {
            color: #e2e8f0;
            text-align: left;
            font-size: 1.1rem;
        }
        .footer-section ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-section ul li {
            margin-bottom: 18px;
        }
        .footer-section ul li a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        .footer-section ul li a::before {
            content: "🧩";
            margin-right: 8px;
        }
        .footer-section ul li a:hover {
            color: #ffddaf;
            padding-left: 8px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.07);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
        }
        .recommendation p {
            font-size: 1.3rem;
            color: #ffddaf;
            font-weight: 600;
            text-align: center;
            line-height: 2;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 2px solid #4a5568;
            color: #a0aec0;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .btn {
                padding: 14px 34px;
                font-size: 1.15rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            h1 {
                font-size: 2.6rem;
                margin: 45px 0 30px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 55px 0 28px;
            }
            h3 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 13px 30px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #9f7aea, #ed8936);
                padding: 30px 25px;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
                margin: 40px 0 25px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
                padding-bottom: 12px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 40px 0 22px;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
            }
            .footer-container {
                flex-direction: column;
                gap: 40px;
            }
            .img-container {
                margin: 40px 0;
            }
            .stats-table th, .stats-table td {
                padding: 15px;
                font-size: 1rem;
            }
            ul, ol {
                margin-left: 35px;
            }
            .logo {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.9rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.1rem;
            }
            .desi-tip {
                padding: 20px;
            }
            .footer {
                padding: 50px 0 30px;
            }
            .tag, .category {
                padding: 8px 18px;
                font-size: 0.95rem;
                margin: 6px 4px;
            }
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 0.95rem;
            }
        }
