* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f5f0e6;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
            letter-spacing: 0.2px;
        }
        .header {
            background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 26px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
            white-space: nowrap;
            background: #ffb703;
            padding: 8px 18px;
            border-radius: 50px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fff3cd;
            border-bottom: 2px solid #fff3cd;
        }
        .hamburger {
            display: none;
            font-size: 30px;
            color: white;
            cursor: pointer;
            z-index: 10000;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
                padding: 80px 20px 30px;
                gap: 20px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 22px;
                padding: 6px 14px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 38px;
            color: #c1121f;
            margin-bottom: 35px;
            text-align: center;
            font-weight: 900;
            line-height: 1.5;
            text-shadow: 0 1px 4px rgba(0,0,0,0.1);
            padding: 0 10px;
            border-bottom: 3px solid #ffb703;
            padding-bottom: 15px;
            display: inline-block;
            width: 100%;
        }
        h2 {
            font-size: 30px;
            color: #003566;
            margin: 60px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e63946;
            font-weight: 800;
            line-height: 1.6;
        }
        h3 {
            font-size: 24px;
            color: #370617;
            margin: 45px 0 20px;
            font-weight: 700;
            line-height: 1.7;
            position: relative;
            padding-left: 25px;
        }
        h3::before {
            content: "🎯";
            color: #e63946;
            position: absolute;
            left: 0;
            font-size: 26px;
        }
        h4 {
            font-size: 20px;
            color: #7209b7;
            margin: 30px 0 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "✨";
            font-size: 22px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 17px;
            color: #3a3a3a;
            line-height: 1.9;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 800;
            color: #c1121f;
            font-size: 19px;
        }
        .game-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            transition: transform 0.3s ease;
            border: 2px solid #ffb703;
        }
        .game-img:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.25);
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 22px;
            font-weight: 700;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            min-width: 200px;
        }
        .download-btn {
            background: linear-gradient(135deg, #219ebc 0%, #023e8a 100%);
            color: white;
        }
        .login-btn {
            background: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
            color: white;
        }
        .btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        }
        @media (max-width: 768px) {
            .btn {
                width: 100%;
                padding: 16px 20px;
                font-size: 20px;
            }
            .btn-container {
                gap: 15px;
                margin: 40px 0;
            }
        }
        ul, ol {
            margin: 25px 0 35px 40px;
            font-size: 17px;
            color: #3a3a3a;
            line-height: 2.0;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 10px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            font-size: 17px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:hover {
            background-color: #fff8f0;
            transform: scale(1.003);
            transition: all 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 15px;
            }
            ul, ol {
                margin-left: 25px;
            }
        }
        .event-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 35px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-left: 5px solid #e63946;
            border-top: 2px solid #ffb703;
        }
        .event-card h4 {
            margin-top: 0;
            color: #c1121f;
            font-size: 22px;
        }
        .event-date {
            display: inline-block;
            background-color: #ffe8cc;
            color: #c1121f;
            padding: 6px 12px;
            border-radius: 25px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .categories {
            margin: 60px 0 40px;
        }
        .categories h3 {
            margin-bottom: 25px;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-links a {
            background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .category-links a:hover {
            background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .tags {
            margin: 40px 0 60px;
        }
        .tags h3 {
            margin-bottom: 20px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-links a {
            background: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        .tag-links a:hover {
            background: linear-gradient(135deg, #560bad 0%, #7209b7 100%);
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .footer {
            background-color: #001d3d;
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .recommendation {
            font-size: 19px;
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.9;
            padding: 0 10px;
        }
        .recommendation a {
            color: #ffb703;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #ffca3a;
            border-bottom: 2px solid #ffca3a;
        }
        .copyright {
            text-align: center;
            font-size: 16px;
            opacity: 0.8;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .desi-note {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 20px 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.06);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 18px;
            color: #664d03;
            font-weight: 500;
            line-height: 1.8;
        }
        .desi-note strong {
            color: #c1121f;
            font-size: 19px;
        }
        .pro-tip-card {
            background-color: #e7f5ff;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            border-top: 5px solid #219ebc;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
        }
        .pro-tip-card h4 {
            color: #023e8a;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pro-tip-card h4::before {
            content: "🚀";
            font-size: 24px;
        }
        .community-thread {
            background-color: #fdf2f8;
            border-radius: 12px;
            padding: 28px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            border-bottom: 3px solid #f72585;
        }
        .community-thread .thread-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .author-avatar {
            font-size: 35px;
            background-color: #e63946;
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .thread-author .author-name {
            font-weight: 700;
            color: #c1121f;
            font-size: 18px;
        }
        .thread-author .author-location {
            color: #6c757d;
            font-size: 15px;
        }
        .thread-content {
            font-size: 17px;
            color: #3a3a3a;
            line-height: 1.8;
        }
        .thread-reply {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #fce4ec;
        }
        .reply-author {
            font-weight: 600;
            color: #7209b7;
            margin-bottom: 6px;
            font-size: 17px;
        }
        .reply-content {
            font-size: 16px;
            color: #3a3a3a;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
                margin-bottom: 25px;
                padding-bottom: 10px;
            }
            h2 {
                font-size: 26px;
                margin: 45px 0 20px;
                padding-bottom: 10px;
            }
            h3 {
                font-size: 22px;
                margin: 35px 0 15px;
                padding-left: 20px;
            }
            h4 {
                font-size: 18px;
            }
            p {
                font-size: 16px;
                margin-bottom: 20px;
                line-height: 1.8;
            }
            .container {
                padding: 0 15px;
                margin: 35px auto;
            }
            .event-card, .pro-tip-card, .community-thread {
                padding: 20px;
            }
            .desi-note {
                padding: 15px 20px;
            }
            .footer {
                padding: 40px 15px;
            }
            .recommendation {
                font-size: 17px;
            }
            .author-avatar {
                width: 50px;
                height: 50px;
                font-size: 32px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            .btn-container {
                gap: 12px;
            }
            ul, ol {
                margin-left: 20px;
            }
            .thread-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
