* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background-color: #f5f0e6;
            color: #2c2c2c;
            line-height: 1.9;
            padding-bottom: 100px;
            font-size: 16px;
            letter-spacing: 0.4px;
        }
        .header {
            background: linear-gradient(135deg, #ff7a00 0%, #e63946 100%);
            padding: 22px 28px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1450px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 30px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 4px 8px rgba(0,0,0,0.35);
            letter-spacing: 1.5px;
            white-space: nowrap;
            background: #ffd500;
            padding: 12px 25px;
            border-radius: 65px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
            border: 2px solid #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 40px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #fff3cd;
            border-bottom: 3px solid #fff3cd;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 35px;
            color: white;
            cursor: pointer;
            z-index: 10000;
            background: rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 5px 12px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff7a00 0%, #e63946 100%);
                padding: 110px 30px 50px;
                gap: 30px;
                box-shadow: 0 15px 35px rgba(0,0,0,0.3);
                border-bottom: 5px solid #ffd500;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 26px;
                padding: 10px 20px;
            }
        }
        .container {
            max-width: 1250px;
            margin: 70px auto;
            padding: 0 30px;
        }
        h1 {
            font-size: 45px;
            color: #e63946;
            margin-bottom: 45px;
            text-align: center;
            font-weight: 900;
            line-height: 1.7;
            text-shadow: 0 3px 7px rgba(0,0,0,0.18);
            padding: 0 20px;
            border-bottom: 5px solid #ffd500;
            padding-bottom: 25px;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 34px;
            color: #0047ab;
            margin: 80px 0 35px;
            padding-bottom: 18px;
            border-bottom: 4px solid #ff7a00;
            font-weight: 800;
            line-height: 1.8;
            text-transform: capitalize;
            position: relative;
        }
        h2::after {
            content: "🎮";
            position: absolute;
            right: 0;
            bottom: -10px;
            font-size: 28px;
        }
        h3 {
            font-size: 28px;
            color: #7209b7;
            margin: 60px 0 30px;
            font-weight: 700;
            line-height: 1.9;
            position: relative;
            padding-left: 35px;
            text-transform: capitalize;
        }
        h3::before {
            content: "⚡";
            color: #ff7a00;
            position: absolute;
            left: 0;
            font-size: 32px;
        }
        h4 {
            font-size: 24px;
            color: #06d6a0;
            margin: 40px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: capitalize;
        }
        h4::before {
            content: "🌟";
            font-size: 28px;
        }
        p {
            margin-bottom: 30px;
            text-align: justify;
            font-size: 19px;
            color: #333333;
            line-height: 2.1;
            padding: 0 10px;
        }
        .highlight {
            font-weight: 900;
            color: #e63946;
            font-size: 21px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .game-img {
            width: 100%;
            height: auto;
            border-radius: 18px;
            margin: 50px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            transition: transform 0.5s ease;
            border: 4px solid #ffd500;
        }
        .game-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.35);
        }
        .btn-container {
            display: flex;
            gap: 35px;
            justify-content: center;
            margin: 80px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 45px;
            font-size: 26px;
            font-weight: 800;
            border: none;
            border-radius: 70px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 8px 22px rgba(0,0,0,0.25);
            min-width: 250px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .download-btn {
            background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .login-btn {
            background: linear-gradient(135deg, #9b5de5 0%, #6a0dad 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .btn:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.35);
            border-color: #ffd500;
        }
        @media (max-width: 768px) {
            .btn {
                width: 100%;
                padding: 20px 30px;
                font-size: 24px;
            }
            .btn-container {
                gap: 25px;
                margin: 60px 0;
            }
        }
        ul, ol {
            margin: 35px 0 45px 60px;
            font-size: 19px;
            color: #333333;
            line-height: 2.3;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 22px;
            padding-left: 20px;
        }
        li strong {
            color: #e63946;
            font-size: 20px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 28px rgba(0,0,0,0.2);
        }
        .stats-table th, .stats-table td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            font-size: 19px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #ff7a00 0%, #e63946 100%);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .stats-table tr:hover {
            background-color: #fff8e6;
            transform: scale(1.008);
            transition: all 0.3s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 17px;
            }
            ul, ol {
                margin-left: 40px;
            }
        }
        .event-card {
            background-color: white;
            border-radius: 18px;
            padding: 40px;
            margin-bottom: 45px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border-left: 7px solid #e63946;
            border-top: 4px solid #ffd500;
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .event-card h4 {
            margin-top: 0;
            color: #e63946;
            font-size: 26px;
        }
        .event-date {
            display: inline-block;
            background-color: #ffe6cc;
            color: #e63946;
            padding: 10px 18px;
            border-radius: 35px;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 18px;
            border: 2px solid #ff7a00;
        }
        .categories {
            margin: 80px 0 60px;
        }
        .categories h3 {
            margin-bottom: 35px;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .category-links a {
            background: linear-gradient(135deg, #0047ab 0%, #002244 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 18px;
            text-transform: capitalize;
        }
        .category-links a:hover {
            background: linear-gradient(135deg, #002244 0%, #0047ab 100%);
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        }
        .tags {
            margin: 60px 0 80px;
        }
        .tags h3 {
            margin-bottom: 30px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .tag-links a {
            background: linear-gradient(135deg, #7209b7 0%, #430089 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 17px;
            text-transform: lowercase;
        }
        .tag-links a:hover {
            background: linear-gradient(135deg, #430089 0%, #7209b7 100%);
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
        }
        .footer {
            background-color: #002244;
            color: white;
            padding: 70px 30px;
            margin-top: 120px;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 60px;
        }
        .game-types h3 {
            color: #ffd500;
            border-bottom: 2px solid #ffd500;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .tag-section {
            margin-bottom: 70px;
        }
        .tag-section h3 {
            color: #ffd500;
            border-bottom: 2px solid #ffd500;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .recommendation {
            font-size: 22px;
            margin-bottom: 60px;
            text-align: center;
            line-height: 2.3;
            padding: 0 20px;
            background: rgba(255,255,255,0.08);
            padding: 30px;
            border-radius: 15px;
        }
        .recommendation a {
            color: #ffd500;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #fff3cd;
            border-bottom: 3px solid #fff3cd;
        }
        .copyright {
            text-align: center;
            font-size: 19px;
            opacity: 0.9;
            margin-top: 70px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .desi-note {
            background-color: #fff8e6;
            border-left: 7px solid #ffd500;
            padding: 30px 35px;
            margin: 50px 0;
            border-radius: 0 20px 20px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 20px;
            color: #856404;
            font-weight: 600;
            line-height: 2.2;
        }
        .desi-note strong {
            color: #e63946;
            font-size: 22px;
        }
        .pro-tip-card {
            background-color: #e8f4f8;
            border-radius: 18px;
            padding: 35px;
            margin: 60px 0;
            border-top: 7px solid #00b4d8;
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
        }
        .pro-tip-card h4 {
            color: #0077b6;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .pro-tip-card h4::before {
            content: "🚀";
            font-size: 32px;
        }
        .community-thread {
            background-color: #fdf2f8;
            border-radius: 18px;
            padding: 38px;
            margin: 60px 0;
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
            border-bottom: 5px solid #9b5de5;
        }
        .community-thread .thread-author {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 25px;
        }
        .author-avatar {
            font-size: 45px;
            background-color: #e63946;
            color: white;
            width: 75px;
            height: 75px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            border: 3px solid #ffd500;
        }
        .thread-author .author-name {
            font-weight: 800;
            color: #e63946;
            font-size: 22px;
        }
        .thread-author .author-location {
            color: #666666;
            font-size: 18px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .thread-author .author-location::before {
            content: "📍";
            font-size: 20px;
        }
        .thread-content {
            font-size: 19px;
            color: #333333;
            line-height: 2.2;
        }
        .thread-reply {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #fcc8e0;
        }
        .reply-author {
            font-weight: 700;
            color: #7209b7;
            margin-bottom: 10px;
            font-size: 20px;
        }
        .reply-content {
            font-size: 18px;
            color: #333333;
            line-height: 2.1;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 38px;
                margin-bottom: 35px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 30px;
                margin: 65px 0 30px;
                padding-bottom: 15px;
            }
            h3 {
                font-size: 26px;
                margin: 50px 0 25px;
                padding-left: 30px;
            }
            h4 {
                font-size: 22px;
            }
            p {
                font-size: 18px;
                margin-bottom: 25px;
                line-height: 2.0;
            }
            .container {
                padding: 0 25px;
                margin: 55px auto;
            }
            .event-card, .pro-tip-card, .community-thread {
                padding: 30px;
            }
            .desi-note {
                padding: 25px 30px;
            }
            .footer {
                padding: 60px 25px;
            }
            .recommendation {
                font-size: 20px;
            }
            .author-avatar {
                width: 70px;
                height: 70px;
                font-size: 40px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 28px;
            }
            .btn-container {
                gap: 20px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .thread-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
