* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #faf0e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #ff6b35 0%, #d93b30 100%);
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.18);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            letter-spacing: 1.2px;
            white-space: nowrap;
            background: #ffcc29;
            padding: 10px 22px;
            border-radius: 60px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #fff9e6;
            border-bottom: 3px solid #fff9e6;
        }
        .hamburger {
            display: none;
            font-size: 32px;
            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, #ff6b35 0%, #d93b30 100%);
                padding: 90px 25px 40px;
                gap: 25px;
                box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 24px;
                padding: 8px 18px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #d93b30;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 900;
            line-height: 1.6;
            text-shadow: 0 2px 5px rgba(0,0,0,0.15);
            padding: 0 15px;
            border-bottom: 4px solid #ffcc29;
            padding-bottom: 20px;
            display: inline-block;
            width: 100%;
        }
        h2 {
            font-size: 32px;
            color: #0f4c81;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff6b35;
            font-weight: 800;
            line-height: 1.7;
        }
        h3 {
            font-size: 26px;
            color: #4a1c2a;
            margin: 50px 0 25px;
            font-weight: 700;
            line-height: 1.8;
            position: relative;
            padding-left: 30px;
        }
        h3::before {
            content: "🔥";
            color: #ff6b35;
            position: absolute;
            left: 0;
            font-size: 30px;
        }
        h4 {
            font-size: 22px;
            color: #8a2be2;
            margin: 35px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: "🌟";
            font-size: 24px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 18px;
            color: #333333;
            line-height: 2.0;
            padding: 0 8px;
        }
        .highlight {
            font-weight: 900;
            color: #d93b30;
            font-size: 20px;
        }
        .game-img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
            border: 3px solid #ffcc29;
        }
        .game-img:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 24px;
            font-weight: 800;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            min-width: 220px;
        }
        .download-btn {
            background: linear-gradient(135deg, #3a86ff 0%, #0057b8 100%);
            color: white;
        }
        .login-btn {
            background: linear-gradient(135deg, #ff0080 0%, #8b008b 100%);
            color: white;
        }
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .btn {
                width: 100%;
                padding: 18px 25px;
                font-size: 22px;
            }
            .btn-container {
                gap: 20px;
                margin: 50px 0;
            }
        }
        ul, ol {
            margin: 30px 0 40px 50px;
            font-size: 18px;
            color: #333333;
            line-height: 2.2;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 15px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #e6e6e6;
            font-size: 18px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #ff6b35 0%, #d93b30 100%);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .stats-table tr:hover {
            background-color: #fff8ed;
            transform: scale(1.005);
            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: 15px;
                font-size: 16px;
            }
            ul, ol {
                margin-left: 30px;
            }
        }
        .event-card {
            background-color: white;
            border-radius: 15px;
            padding: 35px;
            margin-bottom: 40px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-left: 6px solid #d93b30;
            border-top: 3px solid #ffcc29;
        }
        .event-card h4 {
            margin-top: 0;
            color: #d93b30;
            font-size: 24px;
        }
        .event-date {
            display: inline-block;
            background-color: #ffe6cc;
            color: #d93b30;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 17px;
        }
        .categories {
            margin: 70px 0 50px;
        }
        .categories h3 {
            margin-bottom: 30px;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .category-links a {
            background: linear-gradient(135deg, #0f4c81 0%, #003366 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        .category-links a:hover {
            background: linear-gradient(135deg, #003366 0%, #0f4c81 100%);
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .tags {
            margin: 50px 0 70px;
        }
        .tags h3 {
            margin-bottom: 25px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-links a {
            background: linear-gradient(135deg, #8a2be2 0%, #6a0dad 100%);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .tag-links a:hover {
            background: linear-gradient(135deg, #6a0dad 0%, #8a2be2 100%);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .footer {
            background-color: #003366;
            color: white;
            padding: 60px 25px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .recommendation {
            font-size: 21px;
            margin-bottom: 50px;
            text-align: center;
            line-height: 2.1;
            padding: 0 15px;
        }
        .recommendation a {
            color: #ffcc29;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #ffe066;
            border-bottom: 3px solid #ffe066;
        }
        .copyright {
            text-align: center;
            font-size: 18px;
            opacity: 0.85;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .desi-note {
            background-color: #fff9e6;
            border-left: 6px solid #ffcc29;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 19px;
            color: #7c5200;
            font-weight: 600;
            line-height: 2.0;
        }
        .desi-note strong {
            color: #d93b30;
            font-size: 21px;
        }
        .pro-tip-card {
            background-color: #e6f7ff;
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            border-top: 6px solid #3a86ff;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
        }
        .pro-tip-card h4 {
            color: #0057b8;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .pro-tip-card h4::before {
            content: "🚀";
            font-size: 28px;
        }
        .community-thread {
            background-color: #fef0f5;
            border-radius: 15px;
            padding: 32px;
            margin: 50px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            border-bottom: 4px solid #ff0080;
        }
        .community-thread .thread-author {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .author-avatar {
            font-size: 40px;
            background-color: #d93b30;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        .thread-author .author-name {
            font-weight: 800;
            color: #d93b30;
            font-size: 20px;
        }
        .thread-author .author-location {
            color: #666666;
            font-size: 16px;
            margin-top: 5px;
        }
        .thread-content {
            font-size: 18px;
            color: #333333;
            line-height: 2.0;
        }
        .thread-reply {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #fcc8e0;
        }
        .reply-author {
            font-weight: 700;
            color: #8a2be2;
            margin-bottom: 8px;
            font-size: 19px;
        }
        .reply-content {
            font-size: 17px;
            color: #333333;
            line-height: 1.9;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
                margin-bottom: 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 28px;
                margin: 55px 0 25px;
                padding-bottom: 12px;
            }
            h3 {
                font-size: 24px;
                margin: 40px 0 20px;
                padding-left: 25px;
            }
            h4 {
                font-size: 20px;
            }
            p {
                font-size: 17px;
                margin-bottom: 22px;
                line-height: 1.9;
            }
            .container {
                padding: 0 20px;
                margin: 45px auto;
            }
            .event-card, .pro-tip-card, .community-thread {
                padding: 25px;
            }
            .desi-note {
                padding: 20px 25px;
            }
            .footer {
                padding: 50px 20px;
            }
            .recommendation {
                font-size: 19px;
            }
            .author-avatar {
                width: 60px;
                height: 60px;
                font-size: 36px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            .btn-container {
                gap: 15px;
            }
            ul, ol {
                margin-left: 25px;
            }
            .thread-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
