* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #faf6ed;
            color: #1a237e;
            font-size: 16px;
            padding-bottom: 180px;
            letter-spacing: 0.6px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #1b5e20;
            color: #ffffff;
            padding: 28px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 8px 35px rgba(0,0,0,0.35);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 45px;
            font-weight: 900;
            color: #ffd600;
            text-decoration: none;
            letter-spacing: 5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 18px;
            text-shadow: 0 0 20px rgba(255, 214, 0, 0.8);
        }
        .logo span {
            color: #ff6b35;
            font-style: italic;
            font-family: 'Times New Roman', serif;
        }
        .nav-links {
            display: flex;
            gap: 55px;
            align-items: center;
        }
        .nav-links a {
            color: #f9fbe7;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 21px;
            padding: 10px 0;
            border-bottom: 3px solid transparent;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ffd600;
            border-bottom: 3px solid #ffd600;
            transform: translateY(-5px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 42px;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 22px 45px;
            border-radius: 22px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            margin: 25px 18px;
            font-size: 24px;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 28px rgba(0,0,0,0.25);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .btn-download {
            background-color: #ff6b35;
            color: #fff;
            border: 4px solid #e05525;
        }
        .btn-download:hover {
            background-color: #e05525;
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(224, 85, 37, 0.6);
        }
        .btn-download:active {
            transform: translateY(5px);
            box-shadow: 0 6px 18px rgba(224, 85, 37, 0.4);
        }
        .btn-login {
            background-color: #1565c0;
            color: #fff;
            border: 4px solid #0d47a1;
        }
        .btn-login:hover {
            background-color: #0d47a1;
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(13, 71, 161, 0.6);
        }
        .btn-login:active {
            transform: translateY(5px);
            box-shadow: 0 6px 18px rgba(13, 71, 161, 0.4);
        }
        .btn-container {
            margin: 80px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: center;
        }
        h1 {
            font-size: 52px;
            color: #1b5e20;
            margin: 90px 0 50px;
            text-align: center;
            font-weight: 900;
            border-bottom: 7px solid #ff6b35;
            padding-bottom: 35px;
            text-transform: capitalize;
            line-height: 1.8;
            text-shadow: 0 4px 8px rgba(0,0,0,0.18);
        }
        h2 {
            font-size: 40px;
            color: #1a237e;
            margin: 100px 0 45px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 25px;
            text-transform: capitalize;
            position: relative;
            padding-left: 35px;
        }
        h2::before {
            content: "🛡️";
            font-size: 52px;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 30px;
            height: 65%;
            width: 10px;
            background-color: #ffd600;
            border-radius: 8px;
        }
        h3 {
            font-size: 34px;
            color: #1b5e20;
            margin: 80px 0 40px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 20px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🔥";
            font-size: 42px;
        }
        h4 {
            font-size: 30px;
            color: #1a237e;
            margin: 65px 0 35px;
            font-weight: 700;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        h4::before {
            content: "🎯";
            font-size: 36px;
        }
        p {
            margin-bottom: 40px;
            font-size: 22px;
            color: #263238;
            text-align: justify;
            padding: 0 15px;
        }
        .highlight {
            font-weight: 900;
            color: #ff6b35;
            font-size: 26px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
            display: inline-block;
            margin: 0 8px;
        }
        .keyword {
            font-weight: 800;
            color: #1b5e20;
            text-decoration: underline;
            text-underline-offset: 12px;
            text-decoration-thickness: 6px;
            text-decoration-color: #ffd600;
        }
        .desi-note {
            background-color: #fff9e6;
            border-left: 12px solid #ffb74d;
            padding: 35px 40px;
            margin: 70px 0;
            border-radius: 0 25px 25px 0;
            font-style: italic;
            font-size: 24px;
            color: #5d4037;
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }
        .img-container {
            margin: 90px 0;
            text-align: center;
            border-radius: 35px;
            overflow: hidden;
            box-shadow: 0 20px 45px rgba(0,0,0,0.3);
            border: 6px solid #ff6b35;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            transition: transform 0.6s ease;
        }
        .img-container:hover .img-responsive {
            transform: scale(1.05);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 80px 0;
            background-color: #fff;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
        }
        .stats-table th, .stats-table td {
            padding: 28px 40px;
            text-align: left;
            border-bottom: 4px solid #e0e0e0;
            font-size: 22px;
        }
        .stats-table th {
            background-color: #1a237e;
            color: #fff;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 1.5px;
        }
        .stats-table tr:hover {
            background-color: #f1f8e9;
            transform: scale(1.02);
            transition: transform 0.4s ease, background-color 0.4s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .guide-list {
            margin: 50px 0 60px 90px;
        }
        .guide-list li {
            margin-bottom: 40px;
            font-size: 22px;
            color: #263238;
            line-height: 2.4;
            position: relative;
            padding-left: 40px;
        }
        .guide-list li::before {
            content: "🎖️";
            position: absolute;
            left: -45px;
            top: 10px;
            font-size: 34px;
            color: #ffd600;
        }
        .guide-list ol {
            margin-left: 50px;
        }
        .community-thread {
            background-color: #fff;
            padding: 45px;
            border-radius: 30px;
            margin-bottom: 60px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
            border-top: 12px solid #1565c0;
        }
        .thread-title {
            font-weight: 800;
            color: #1a237e;
            margin-bottom: 30px;
            font-size: 30px;
            text-transform: capitalize;
        }
        .thread-author {
            color: #607d8b;
            font-size: 22px;
            margin-bottom: 40px;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .thread-author::before {
            content: "👤";
            font-size: 32px;
        }
        .thread-comment {
            background-color: #e8f5e9;
            padding: 35px;
            border-radius: 25px;
            margin-top: 35px;
            border-left: 8px solid #1b5e20;
        }
        .comment-author {
            color: #1a237e;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 24px;
            text-transform: capitalize;
        }
        footer {
            background-color: #1a237e;
            color: #fff;
            padding: 120px 0 80px;
            margin-top: 200px;
            border-top: 12px solid #ff6b35;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 90px;
            margin-bottom: 90px;
        }
        .footer-section h4 {
            font-size: 30px;
            margin-bottom: 45px;
            color: #ffd600;
            text-transform: uppercase;
            letter-spacing: 4px;
            border-bottom: 5px solid #ff6b35;
            padding-bottom: 25px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 35px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .footer-links a::before {
            content: "➡️";
            font-size: 22px;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd600;
            padding-left: 25px;
        }
        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(12px);
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 60px;
        }
        .tag {
            background-color: #283593;
            padding: 20px 38px;
            border-radius: 45px;
            font-size: 22px;
            transition: all 0.3s ease;
            border: 3px solid #3949ab;
        }
        .tag a {
            color: #e0e0e0;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ff6b35;
            transform: translateY(-8px);
            border-color: #ff6b35;
        }
        .tag:hover a {
            color: #fff;
            font-weight: 600;
        }
        .recommendation {
            text-align: center;
            font-size: 28px;
            margin: 90px 0;
            color: #e0e0e0;
            line-height: 2.8;
            padding: 0 40px;
        }
        .recommendation strong {
            color: #ffd600;
            font-weight: 800;
            text-decoration: underline;
            text-underline-offset: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 70px;
            border-top: 4px solid #3949ab;
            color: #b0b0b0;
            font-size: 22px;
            line-height: 2.5;
        }
        .game-types {
            margin: 80px 0;
            background-color: #e8f5e9;
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }
        .game-types h4 {
            margin-bottom: 45px;
            text-align: center;
            justify-content: center;
            color: #1a237e;
        }
        .game-type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .game-type-links a {
            background-color: #fff;
            color: #1a237e;
            padding: 20px 40px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 22px;
            transition: all 0.3s ease;
            border: 4px solid #1b5e20;
            text-transform: capitalize;
        }
        .game-type-links a:hover {
            background-color: #1b5e20;
            color: #fff;
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(27, 94, 32, 0.5);
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 45px;
            }
            h1 {
                font-size: 48px;
            }
            h2 {
                font-size: 38px;
            }
            h3 {
                font-size: 32px;
            }
            .stats-table th, .stats-table td {
                padding: 25px 35px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 40px;
            }
            h1 {
                font-size: 45px;
                margin: 80px 0 45px;
                padding-bottom: 30px;
            }
            h2 {
                font-size: 36px;
                margin: 90px 0 40px;
            }
            h3 {
                font-size: 30px;
                margin: 70px 0 35px;
            }
            p {
                font-size: 21px;
                margin-bottom: 38px;
            }
            .btn {
                padding: 20px 40px;
                font-size: 23px;
            }
            .guide-list {
                margin: 45px 0 55px 80px;
            }
            .guide-list li {
                font-size: 21px;
                margin-bottom: 38px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 60px 40px;
                gap: 45px;
                box-shadow: 0 30px 30px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            .logo {
                font-size: 38px;
            }
            h1 {
                font-size: 42px;
                margin: 70px 0 40px;
                padding-bottom: 28px;
            }
            h2 {
                font-size: 34px;
                margin: 80px 0 38px;
                padding-left: 30px;
            }
            h2::before {
                font-size: 46px;
            }
            h3 {
                font-size: 28px;
                margin: 60px 0 32px;
            }
            h4 {
                font-size: 26px;
            }
            p {
                font-size: 20px;
                margin-bottom: 35px;
            }
            .btn-container {
                flex-direction: column;
                gap: 35px;
            }
            .btn {
                width: 100%;
                margin: 20px 0;
                padding: 22px 35px;
                font-size: 22px;
            }
            .guide-list {
                margin: 40px 0 50px 60px;
            }
            .guide-list li {
                font-size: 20px;
                margin-bottom: 35px;
                padding-left: 35px;
            }
            .guide-list li::before {
                left: -40px;
            }
            .stats-table th, .stats-table td {
                padding: 22px 30px;
                font-size: 20px;
            }
            .footer-container {
                gap: 70px;
            }
            .community-thread {
                padding: 40px;
            }
            .thread-title {
                font-size: 28px;
            }
            .desi-note {
                padding: 30px 35px;
                font-size: 22px;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 38px;
                margin: 60px 0 35px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 32px;
                margin: 70px 0 35px;
            }
            h2::before {
                font-size: 42px;
            }
            h3 {
                font-size: 26px;
                margin: 50px 0 30px;
            }
            h4 {
                font-size: 24px;
            }
            .logo {
                font-size: 34px;
                letter-spacing: 4px;
            }
            .community-thread {
                padding: 35px;
            }
            .thread-title {
                font-size: 26px;
            }
            .desi-note {
                padding: 25px 30px;
                font-size: 21px;
            }
            .img-container {
                margin: 70px 0;
                border-radius: 30px;
            }
            .footer-container {
                gap: 60px;
            }
            .footer-section h4 {
                font-size: 28px;
                margin-bottom: 40px;
            }
            .tags-container {
                gap: 25px;
            }
            .tag {
                padding: 18px 32px;
                font-size: 20px;
            }
            .recommendation {
                font-size: 25px;
            }
            .game-type-links a {
                padding: 18px 35px;
                font-size: 21px;
            }
        }
