* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f9f2ed;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 17px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #ff3e00 0%, #ff7a00 100%);
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.18);
        }
        .nav-container {
            max-width: 1300px;
            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 2px 4px rgba(0,0,0,0.25);
            letter-spacing: 0.8px;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            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, #ff3e00 0%, #ff7a00 100%);
                padding: 90px 25px 40px;
                gap: 25px;
                box-shadow: 0 12px 20px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 24px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #ff3e00;
            margin-bottom: 45px;
            text-align: center;
            font-weight: 900;
            line-height: 1.4;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            padding: 0 10px;
        }
        h2 {
            font-size: 32px;
            color: #1a237e;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #ff3e00;
            font-weight: 800;
            line-height: 1.5;
        }
        h3 {
            font-size: 26px;
            color: #2d3748;
            margin: 50px 0 22px;
            font-weight: 700;
            line-height: 1.6;
            position: relative;
            padding-left: 20px;
        }
        h3::before {
            content: "⚔️";
            color: #ff3e00;
            position: absolute;
            left: 0;
            font-size: 28px;
        }
        h4 {
            font-size: 22px;
            color: #d32f2f;
            margin: 35px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "🌟";
            font-size: 24px;
        }
        p {
            margin-bottom: 28px;
            text-align: justify;
            font-size: 18px;
            color: #374151;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #ff3e00;
            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.15);
            transition: transform 0.4s ease;
            border: 3px solid #ff7a00;
        }
        .game-img:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 24px;
            font-weight: 700;
            border: none;
            border-radius: 70px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            min-width: 220px;
        }
        .download-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }
        .login-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }
        @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: #374151;
            line-height: 2.1;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 20px;
            padding-left: 15px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
            font-size: 18px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #ff3e00 0%, #ff7a00 100%);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .stats-table tr:hover {
            background-color: #fef7fb;
            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: 35px;
            }
        }
        .event-card {
            background-color: white;
            border-radius: 15px;
            padding: 35px;
            margin-bottom: 40px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.08);
            border-left: 6px solid #ff3e00;
            border-top: 2px solid #ff3e00;
        }
        .event-card h4 {
            margin-top: 0;
            color: #ff3e00;
            font-size: 24px;
        }
        .event-date {
            display: inline-block;
            background-color: #ffede6;
            color: #ff3e00;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .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, #d32f2f 0%, #b71c1c 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        .category-links a:hover {
            background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }
        .tags {
            margin: 50px 0 70px;
        }
        .tags h3 {
            margin-bottom: 25px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .tag-links a {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .tag-links a:hover {
            background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .footer {
            background-color: #1a237e;
            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.0;
            padding: 0 15px;
        }
        .recommendation a {
            color: #ff7a00;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #ffb74d;
            border-bottom: 3px solid #ffb74d;
        }
        .copyright {
            text-align: center;
            font-size: 18px;
            opacity: 0.9;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .desi-note {
            background-color: #fff3cd;
            border-left: 6px solid #ffc107;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 19px;
            color: #856404;
            font-weight: 500;
            line-height: 1.9;
        }
        .desi-note strong {
            color: #ff3e00;
            font-size: 20px;
        }
        .pro-tip-card {
            background-color: #e0f2fe;
            border-radius: 15px;
            padding: 30px;
            margin: 45px 0;
            border-top: 6px solid #0284c7;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
        }
        .pro-tip-card h4 {
            color: #0284c7;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .pro-tip-card h4::before {
            content: "💥";
            font-size: 28px;
        }
        .community-thread {
            background-color: #fdf2f8;
            border-radius: 15px;
            padding: 32px;
            margin: 45px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-bottom: 4px solid #be185d;
        }
        .community-thread .thread-author {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .author-avatar {
            font-size: 40px;
            background-color: #ff3e00;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .thread-author .author-name {
            font-weight: 700;
            color: #ff3e00;
            font-size: 20px;
        }
        .thread-author .author-location {
            color: #6b7280;
            font-size: 17px;
        }
        .thread-content {
            font-size: 19px;
            color: #374151;
            line-height: 1.9;
        }
        .thread-reply {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #fce7f3;
        }
        .reply-author {
            font-weight: 600;
            color: #7c3aed;
            margin-bottom: 8px;
            font-size: 18px;
        }
        .reply-content {
            font-size: 18px;
            color: #374151;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 34px;
                margin-bottom: 35px;
            }
            h2 {
                font-size: 28px;
                margin: 55px 0 25px;
                padding-bottom: 12px;
            }
            h3 {
                font-size: 24px;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h4 {
                font-size: 20px;
            }
            p {
                font-size: 17px;
                margin-bottom: 25px;
                line-height: 1.8;
            }
            .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: 50px;
                height: 50px;
                font-size: 35px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            .btn-container {
                gap: 15px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .thread-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
