* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #faf5f0;
            color: #2d3436;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a237e;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ffc107;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ff5722;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        .nav-links a:hover {
            color: #ffc107;
            transform: translateY(-2px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            margin: 12px 8px;
            font-size: 18px;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #4caf50;
            color: #fff;
            box-shadow: 0 4px 0 #388e3c;
        }
        .btn-download:hover {
            background-color: #388e3c;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #2e7d32;
        }
        .btn-download:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #2e7d32;
        }
        .btn-login {
            background-color: #2196f3;
            color: #fff;
            box-shadow: 0 4px 0 #1976d2;
        }
        .btn-login:hover {
            background-color: #1976d2;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #1565c0;
        }
        .btn-login:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #1565c0;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        h1 {
            font-size: 42px;
            color: #1a237e;
            margin: 50px 0 35px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #ffc107;
            padding-bottom: 20px;
            text-transform: capitalize;
        }
        h2 {
            font-size: 30px;
            color: #1a237e;
            margin: 60px 0 30px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "🐆";
            font-size: 32px;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            height: 70%;
            width: 4px;
            background-color: #ff5722;
            border-radius: 2px;
        }
        h3 {
            font-size: 24px;
            color: #2d3436;
            margin: 40px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🌟";
            font-size: 26px;
        }
        h4 {
            font-size: 20px;
            color: #2d3436;
            margin: 30px 0 20px;
            font-weight: 700;
            text-transform: capitalize;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            color: #34495e;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #ff5722;
            font-size: 19px;
        }
        .keyword {
            font-weight: 900;
            color: #1a237e;
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-thickness: 2px;
        }
        .desi-note {
            background-color: #fff3e0;
            border-left: 5px solid #ff9800;
            padding: 15px 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            font-size: 18px;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-table th, .stats-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
            font-size: 17px;
        }
        .stats-table th {
            background-color: #1a237e;
            color: #fff;
            font-weight: 700;
            text-transform: capitalize;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .guide-list {
            margin: 25px 0 35px 50px;
        }
        .guide-list li {
            margin-bottom: 20px;
            font-size: 18px;
            color: #34495e;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }
        .guide-list li::before {
            content: "✅";
            position: absolute;
            left: -25px;
            top: 2px;
            font-size: 16px;
        }
        .guide-list ol {
            margin-left: 20px;
        }
        .community-thread {
            background-color: #fff;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-top: 5px solid #1a237e;
        }
        .thread-title {
            font-weight: 800;
            color: #1a237e;
            margin-bottom: 12px;
            font-size: 22px;
        }
        .thread-author {
            color: #7f8c8d;
            font-size: 17px;
            margin-bottom: 20px;
            font-style: italic;
        }
        .thread-comment {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            border-left: 3px solid #ffc107;
        }
        footer {
            background-color: #1a237e;
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 100px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #ffc107;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 17px;
        }
        .footer-links a:hover {
            color: #ffc107;
            padding-left: 5px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #3949ab;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #fff;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ffc107;
            transform: translateY(-2px);
        }
        .tag:hover a {
            color: #1a237e;
        }
        .recommendation {
            text-align: center;
            font-size: 19px;
            margin: 40px 0;
            color: #e0e0e0;
            line-height: 1.8;
        }
        .recommendation strong {
            color: #ffc107;
            font-weight: 800;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3949ab;
            color: #bdbdbd;
            font-size: 17px;
        }
        .game-types {
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 30px 20px;
                gap: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 32px;
                margin: 40px 0 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 26px;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 21px;
                margin: 35px 0 20px;
            }
            p {
                font-size: 17px;
                margin-bottom: 22px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                margin: 8px 0;
                padding: 15px 20px;
                font-size: 17px;
            }
            .guide-list {
                margin: 20px 0 30px 35px;
            }
            .guide-list li {
                font-size: 17px;
                margin-bottom: 18px;
            }
            .stats-table th, .stats-table td {
                padding: 15px 12px;
                font-size: 16px;
            }
            .footer-container {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .logo {
                font-size: 28px;
            }
            .community-thread {
                padding: 20px;
            }
            .thread-title {
                font-size: 20px;
            }
            .desi-note {
                padding: 12px 15px;
                font-size: 17px;
            }
        }
