* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f8fb;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 150px;
            font-size: 16px;
        }
        .container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .header {
            background: linear-gradient(135deg, #2563eb, #0ea5e9);
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(45, 102, 235, 0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1.2px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.18);
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #93c5fd;
            margin: 0 8px;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 8px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #2563eb;
            background-color: rgba(255,255,255,0.9);
            transform: translateY(-2px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2.2rem;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 18px 42px;
            border-radius: 15px;
            font-size: 1.25rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 18px 10px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .btn-download {
            background-color: #10b981;
            color: white;
        }
        .btn-download:hover {
            background-color: #059669;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
        }
        .btn-login {
            background-color: #f59e0b;
            color: white;
        }
        .btn-login:hover {
            background-color: #d97706;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
        }
        h1 {
            font-size: 3.2rem;
            color: #2563eb;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 900;
            text-shadow: 0 1px 4px rgba(0,0,0,0.12);
            line-height: 1.5;
            padding-bottom: 25px;
            border-bottom: 5px solid #0ea5e9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 2.4rem;
            color: #1e40af;
            margin: 70px 0 35px;
            padding-bottom: 18px;
            border-bottom: 4px solid #38bdf8;
            font-weight: 800;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "✈️";
            margin-right: 15px;
            font-size: 2.6rem;
        }
        h3 {
            font-size: 2rem;
            color: #0ea5e9;
            margin: 50px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h3::before {
            content: "🚀";
            margin-right: 12px;
        }
        h4 {
            font-size: 1.6rem;
            color: #3b82f6;
            margin: 40px 0 25px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h4::before {
            content: "🎯";
            margin-right: 10px;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.9;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 800;
            color: #2563eb;
            font-size: 1.35rem;
            text-shadow: 0 0.5px 1px rgba(0,0,0,0.08);
        }
        .desi-tip {
            background-color: #f0f9ff;
            border-left: 7px solid #0ea5e9;
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .desi-tip p {
            font-size: 1.3rem;
            margin-bottom: 0;
            font-weight: 600;
            color: #1e3a8a;
            text-align: left;
        }
        .desi-tip p::before {
            content: "🤫 Desi Gamer Hack: ";
            color: #2563eb;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            transition: transform 0.5s ease;
            border: 5px solid #93c5fd;
        }
        .game-img:hover {
            transform: scale(1.04);
        }
        .img-container {
            text-align: center;
            margin: 60px 0;
        }
        .img-caption {
            font-size: 1.1rem;
            color: #475569;
            margin-top: -30px;
            font-style: italic;
            font-weight: 500;
        }
        ul, ol {
            margin: 35px 0 35px 50px;
            font-size: 1.2rem;
            line-height: 2.2;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 20px;
            padding-left: 15px;
        }
        li strong {
            color: #0ea5e9;
            font-size: 1.3rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            font-size: 1.15rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
            border-radius: 15px;
            overflow: hidden;
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 3px solid #e0f2fe;
        }
        .stats-table th {
            background: linear-gradient(135deg, #2563eb, #38bdf8);
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            text-transform: capitalize;
        }
        .stats-table tr:hover {
            background-color: #f0f9ff;
            transform: scale(1.008);
            transition: transform 0.3s ease;
        }
        .stats-table tr:nth-child(even) {
            background-color: #e0f2fe;
        }
        .tags-container {
            margin: 60px 0 70px;
            text-align: center;
        }
        .categories-container {
            margin: 70px 0 60px;
            text-align: center;
        }
        .category {
            display: inline-block;
            padding: 15px 32px;
            background: linear-gradient(135deg, #2563eb, #38bdf8);
            color: white;
            border-radius: 35px;
            margin: 12px 10px;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(45, 102, 235, 0.25);
            text-transform: capitalize;
        }
        .category:hover {
            background: linear-gradient(135deg, #1e40af, #0ea5e9);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(45, 102, 235, 0.35);
        }
        .tag {
            display: inline-block;
            padding: 12px 28px;
            background-color: #93c5fd;
            color: #1e3a8a;
            border-radius: 30px;
            margin: 10px 8px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(14, 165, 233, 0.18);
            font-weight: 600;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #38bdf8;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(14, 165, 233, 0.28);
        }
        .footer {
            background-color: #1e293b;
            color: white;
            padding: 80px 0 50px;
            margin-top: 120px;
            border-top: 7px solid #2563eb;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-section {
            flex: 1;
            min-width: 300px;
        }
        .footer-section h3 {
            color: #93c5fd;
            margin-bottom: 35px;
            border-bottom: 4px solid #93c5fd;
            padding-bottom: 20px;
            font-size: 1.8rem;
        }
        .footer-section p {
            color: #e2e8f0;
            text-align: left;
            font-size: 1.15rem;
        }
        .footer-section ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-section ul li {
            margin-bottom: 22px;
        }
        .footer-section ul li a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        .footer-section ul li a::before {
            content: "✈️";
            margin-right: 10px;
        }
        .footer-section ul li a:hover {
            color: #93c5fd;
            padding-left: 10px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.08);
            padding: 35px;
            border-radius: 15px;
            margin: 50px 0;
            text-align: center;
        }
        .recommendation p {
            font-size: 1.4rem;
            color: #93c5fd;
            font-weight: 600;
            text-align: center;
            line-height: 2.2;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            margin-top: 50px;
            border-top: 3px solid #334155;
            color: #a0aec0;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 3rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .btn {
                padding: 16px 38px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.8rem;
                margin: 55px 0 35px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 65px 0 32px;
            }
            h3 {
                font-size: 1.7rem;
            }
            .btn {
                padding: 15px 35px;
                font-size: 1.15rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #2563eb, #0ea5e9);
                padding: 35px 30px;
                gap: 30px;
                box-shadow: 0 12px 25px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
                margin: 50px 0 30px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2rem;
                margin: 60px 0 30px;
                padding-bottom: 15px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 45px 0 28px;
            }
            .btn {
                width: 100%;
                margin: 15px 0;
            }
            .footer-container {
                flex-direction: column;
                gap: 50px;
            }
            .img-container {
                margin: 50px 0;
            }
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 1.05rem;
            }
            ul, ol {
                margin-left: 40px;
            }
            .logo {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.15rem;
            }
            .desi-tip {
                padding: 25px;
            }
            .footer {
                padding: 60px 0 40px;
            }
            .tag, .category {
                padding: 10px 22px;
                font-size: 1rem;
                margin: 8px 6px;
            }
            .stats-table th, .stats-table td {
                padding: 15px;
                font-size: 1rem;
            }
        }
