* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff7ed;
            color: #1e293b;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
            letter-spacing: 0.4px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1e293b;
            color: #fff;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.25);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 38px;
            font-weight: 900;
            color: #f97316;
            text-decoration: none;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo span {
            color: #38bdf8;
            font-style: italic;
            text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
        }
        .nav-links {
            display: flex;
            gap: 45px;
            align-items: center;
        }
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 19px;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #f97316;
            border-bottom: 3px solid #f97316;
            transform: translateY(-2px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 34px;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 18px 36px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            margin: 18px 12px;
            font-size: 20px;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-download {
            background-color: #22c55e;
            color: #fff;
            border: 3px solid #16a34a;
        }
        .btn-download:hover {
            background-color: #16a34a;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
        }
        .btn-download:active {
            transform: translateY(3px);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
        }
        .btn-login {
            background-color: #38bdf8;
            color: #fff;
            border: 3px solid #0ea5e9;
        }
        .btn-login:hover {
            background-color: #0ea5e9;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
        }
        .btn-login:active {
            transform: translateY(3px);
            box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
        }
        .btn-container {
            margin: 60px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
        h1 {
            font-size: 48px;
            color: #1e293b;
            margin: 70px 0 45px;
            text-align: center;
            font-weight: 900;
            border-bottom: 6px solid #f97316;
            padding-bottom: 30px;
            text-transform: capitalize;
            line-height: 1.4;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 36px;
            color: #1e293b;
            margin: 80px 0 40px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 20px;
            text-transform: capitalize;
            position: relative;
            padding-left: 25px;
        }
        h2::before {
            content: "🐎";
            font-size: 42px;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 20px;
            height: 60%;
            width: 6px;
            background-color: #38bdf8;
            border-radius: 4px;
        }
        h3 {
            font-size: 30px;
            color: #1e293b;
            margin: 60px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🏆";
            font-size: 34px;
        }
        h4 {
            font-size: 26px;
            color: #1e293b;
            margin: 50px 0 30px;
            font-weight: 700;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: "🚀";
            font-size: 28px;
        }
        p {
            margin-bottom: 35px;
            font-size: 20px;
            color: #334155;
            text-align: justify;
            line-height: 1.9;
            padding: 0 8px;
        }
        .highlight {
            font-weight: 900;
            color: #f97316;
            font-size: 22px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
            display: inline-block;
            margin: 0 2px;
        }
        .keyword {
            font-weight: 900;
            color: #1e293b;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-thickness: 4px;
            text-decoration-color: #38bdf8;
        }
        .desi-note {
            background-color: #fffbeb;
            border-left: 8px solid #f59e0b;
            padding: 25px 30px;
            margin: 50px 0;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            font-size: 20px;
            color: #4b5563;
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
            line-height: 2.0;
        }
        .img-container {
            margin: 70px 0;
            text-align: center;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 4px solid #f97316;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            transition: transform 0.4s ease;
        }
        .img-container:hover .img-responsive {
            transform: scale(1.03);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .stats-table th, .stats-table td {
            padding: 25px 30px;
            text-align: left;
            border-bottom: 1px solid #f1f5f9;
            font-size: 19px;
        }
        .stats-table th {
            background-color: #1e293b;
            color: #fff;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 0.8px;
        }
        .stats-table tr:hover {
            background-color: #fef3c7;
            transform: scale(1.01);
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .guide-list {
            margin: 40px 0 50px 70px;
        }
        .guide-list li {
            margin-bottom: 30px;
            font-size: 20px;
            color: #334155;
            line-height: 2.0;
            position: relative;
            padding-left: 30px;
        }
        .guide-list li::before {
            content: "✅";
            position: absolute;
            left: -35px;
            top: 5px;
            font-size: 24px;
            color: #22c55e;
            font-weight: bold;
        }
        .guide-list ol {
            margin-left: 40px;
        }
        .community-thread {
            background-color: #fff;
            padding: 35px;
            border-radius: 22px;
            margin-bottom: 50px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
            border-top: 8px solid #38bdf8;
        }
        .thread-title {
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
            font-size: 26px;
            text-transform: capitalize;
        }
        .thread-author {
            color: #64748b;
            font-size: 19px;
            margin-bottom: 30px;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .thread-author::before {
            content: "👤";
            font-size: 22px;
        }
        .thread-comment {
            background-color: #f0f9ff;
            padding: 25px;
            border-radius: 15px;
            margin-top: 25px;
            border-left: 5px solid #0ea5e9;
        }
        .comment-author {
            color: #1e293b;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 19px;
            text-transform: capitalize;
        }
        footer {
            background-color: #1e293b;
            color: #fff;
            padding: 90px 0 50px;
            margin-top: 150px;
            border-top: 8px solid #f97316;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 70px;
        }
        .footer-section h4 {
            font-size: 26px;
            margin-bottom: 35px;
            color: #f97316;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: 3px solid #38bdf8;
            padding-bottom: 15px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 19px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .footer-links a::before {
            content: "➡️";
            font-size: 18px;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .footer-links a:hover {
            color: #f97316;
            padding-left: 15px;
        }
        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(8px);
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        .tag {
            background-color: #334155;
            padding: 15px 28px;
            border-radius: 35px;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 2px solid #475569;
        }
        .tag a {
            color: #e2e8f0;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #f97316;
            transform: translateY(-4px);
            border-color: #f97316;
        }
        .tag:hover a {
            color: #1e293b;
            font-weight: 600;
        }
        .recommendation {
            text-align: center;
            font-size: 23px;
            margin: 70px 0;
            color: #e2e8f0;
            line-height: 2.2;
            padding: 0 25px;
        }
        .recommendation strong {
            color: #f97316;
            font-weight: 800;
            text-decoration: underline;
            text-underline-offset: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 2px solid #334155;
            color: #94a3b8;
            font-size: 19px;
            line-height: 2.0;
        }
        .game-types {
            margin: 60px 0;
            background-color: #fef3c7;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
        }
        .game-types h4 {
            margin-bottom: 35px;
            text-align: center;
            justify-content: center;
            color: #1e293b;
        }
        .game-type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .game-type-links a {
            background-color: #fff;
            color: #1e293b;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 19px;
            transition: all 0.3s ease;
            border: 2px solid #f97316;
            text-transform: capitalize;
        }
        .game-type-links a:hover {
            background-color: #f97316;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(249, 115, 22, 0.25);
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 35px;
            }
            h1 {
                font-size: 44px;
            }
            h2 {
                font-size: 34px;
            }
            h3 {
                font-size: 28px;
            }
            .stats-table th, .stats-table td {
                padding: 22px 25px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 40px;
                margin: 60px 0 40px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 32px;
                margin: 70px 0 35px;
            }
            h3 {
                font-size: 26px;
                margin: 50px 0 30px;
            }
            p {
                font-size: 19px;
                margin-bottom: 32px;
            }
            .btn {
                padding: 16px 32px;
                font-size: 19px;
            }
            .guide-list {
                margin: 35px 0 45px 55px;
            }
            .guide-list li {
                font-size: 19px;
                margin-bottom: 28px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 50px 25px;
                gap: 35px;
                box-shadow: 0 20px 20px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 36px;
                margin: 50px 0 35px;
                padding-bottom: 22px;
            }
            h2 {
                font-size: 30px;
                margin: 60px 0 32px;
                padding-left: 20px;
            }
            h2::before {
                font-size: 38px;
            }
            h3 {
                font-size: 24px;
                margin: 45px 0 28px;
            }
            h4 {
                font-size: 23px;
            }
            p {
                font-size: 18px;
                margin-bottom: 30px;
            }
            .btn-container {
                flex-direction: column;
                gap: 25px;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
                padding: 18px 25px;
                font-size: 19px;
            }
            .guide-list {
                margin: 30px 0 40px 45px;
            }
            .guide-list li {
                font-size: 18px;
                margin-bottom: 25px;
                padding-left: 25px;
            }
            .guide-list li::before {
                left: -30px;
            }
            .stats-table th, .stats-table td {
                padding: 20px 18px;
                font-size: 18px;
            }
            .footer-container {
                gap: 50px;
            }
            .community-thread {
                padding: 30px;
            }
            .thread-title {
                font-size: 24px;
            }
            .desi-note {
                padding: 22px 25px;
                font-size: 19px;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 32px;
                margin: 45px 0 30px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 28px;
                margin: 55px 0 30px;
            }
            h2::before {
                font-size: 34px;
            }
            h3 {
                font-size: 22px;
                margin: 40px 0 25px;
            }
            h4 {
                font-size: 21px;
            }
            .logo {
                font-size: 32px;
                letter-spacing: 2px;
            }
            .community-thread {
                padding: 25px;
            }
            .thread-title {
                font-size: 22px;
            }
            .desi-note {
                padding: 20px 22px;
                font-size: 18px;
            }
            .img-container {
                margin: 50px 0;
                border-radius: 20px;
            }
            .footer-container {
                gap: 40px;
            }
            .footer-section h4 {
                font-size: 24px;
                margin-bottom: 30px;
            }
            .tags-container {
                gap: 15px;
            }
            .tag {
                padding: 12px 22px;
                font-size: 17px;
            }
            .recommendation {
                font-size: 21px;
            }
            .game-type-links a {
                padding: 12px 25px;
                font-size: 18px;
            }
        }
