* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background-color: #0a192f;
            color: #f8fafc;
            line-height: 1.9;
            padding-bottom: 200px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 25px rgba(0,0,0,0.4);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 3px 10px rgba(0,0,0,0.4);
            letter-spacing: 1px;
            white-space: nowrap;
            background: #0a192f;
            padding: 12px 26px;
            border-radius: 60px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            border: 3px solid #facc15;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #facc15;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .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: #fefce8;
            border-bottom: 3px solid #facc15;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            color: white;
            cursor: pointer;
            z-index: 10000;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            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, #22c55e 0%, #16a34a 100%);
                padding: 120px 25px 50px;
                gap: 28px;
                box-shadow: 0 15px 35px rgba(0,0,0,0.3);
                border-bottom: 4px solid #facc15;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 26px;
                padding: 10px 20px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 48px;
            color: #facc15;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 900;
            line-height: 1.8;
            text-shadow: 0 3px 10px rgba(0,0,0,0.4);
            padding: 0 20px;
            border-bottom: 4px solid #22c55e;
            padding-bottom: 22px;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        h2 {
            font-size: 36px;
            color: #38bdf8;
            margin: 85px 0 35px;
            padding-bottom: 18px;
            border-bottom: 3px solid #facc15;
            font-weight: 800;
            line-height: 1.9;
            text-transform: capitalize;
            position: relative;
        }
        h2::after {
            content: "⚽";
            position: absolute;
            right: 0;
            bottom: -10px;
            font-size: 30px;
        }
        h3 {
            font-size: 30px;
            color: #22c55e;
            margin: 60px 0 30px;
            font-weight: 700;
            line-height: 1.9;
            position: relative;
            padding-left: 35px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🔥";
            color: #f97316;
            position: absolute;
            left: 0;
            font-size: 32px;
        }
        h4 {
            font-size: 26px;
            color: #f97316;
            margin: 45px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: capitalize;
        }
        h4::before {
            content: "🎯";
            font-size: 28px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 19px;
            color: #e2e8f0;
            line-height: 2.2;
            padding: 0 10px;
        }
        .highlight {
            font-weight: 900;
            color: #facc15;
            font-size: 21px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .game-img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.5);
            transition: transform 0.4s ease;
            border: 4px solid #22c55e;
        }
        .game-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.6);
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 42px;
            font-size: 26px;
            font-weight: 800;
            border: none;
            border-radius: 70px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 8px 22px rgba(0,0,0,0.3);
            min-width: 240px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .download-btn {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .login-btn {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            border-color: #facc15;
        }
        @media (max-width: 768px) {
            .btn {
                width: 100%;
                padding: 18px 28px;
                font-size: 24px;
            }
            .btn-container {
                gap: 22px;
                margin: 55px 0;
            }
        }
        ul, ol {
            margin: 30px 0 40px 55px;
            font-size: 19px;
            color: #e2e8f0;
            line-height: 2.4;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 15px;
        }
        li strong {
            color: #facc15;
            font-size: 20px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 55px 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #334155;
            font-size: 18px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .stats-table tr:hover {
            background-color: #1e293b;
            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: 16px;
                font-size: 16px;
            }
            ul, ol {
                margin-left: 35px;
            }
        }
        .event-card {
            background-color: #1e293b;
            border-radius: 20px;
            padding: 38px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.25);
            border-left: 6px solid #22c55e;
            border-top: 3px solid #facc15;
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.35);
        }
        .event-card h4 {
            margin-top: 0;
            color: #facc15;
            font-size: 28px;
        }
        .event-date {
            display: inline-block;
            background-color: #facc15;
            color: #0a192f;
            padding: 10px 18px;
            border-radius: 35px;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 18px;
            border: 2px solid #22c55e;
        }
        .categories {
            margin: 75px 0 55px;
        }
        .categories h3 {
            margin-bottom: 30px;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
        }
        .category-links a {
            background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
            color: white;
            padding: 12px 26px;
            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, #0ea5e9 0%, #38bdf8 100%);
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        }
        .tags {
            margin: 55px 0 75px;
        }
        .tags h3 {
            margin-bottom: 28px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .tag-links a {
            background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
            color: white;
            padding: 10px 22px;
            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, #7c3aed 0%, #a78bfa 100%);
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
        }
        .footer {
            background-color: #0a192f;
            color: white;
            padding: 65px 25px;
            margin-top: 110px;
            border-top: 4px solid #22c55e;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 55px;
        }
        .game-types h3 {
            color: #facc15;
            border-bottom: 2px solid #facc15;
            padding-bottom: 12px;
            margin-bottom: 35px;
        }
        .tag-section {
            margin-bottom: 65px;
        }
        .tag-section h3 {
            color: #facc15;
            border-bottom: 2px solid #facc15;
            padding-bottom: 12px;
            margin-bottom: 35px;
        }
        .recommendation {
            font-size: 22px;
            margin-bottom: 55px;
            text-align: center;
            line-height: 2.3;
            padding: 0 20px;
            background: rgba(255,255,255,0.05);
            padding: 28px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .recommendation a {
            color: #facc15;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #fefce8;
            border-bottom: 3px solid #fefce8;
        }
        .copyright {
            text-align: center;
            font-size: 18px;
            opacity: 0.85;
            margin-top: 65px;
            padding-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .desi-note {
            background-color: #1e293b;
            border-left: 6px solid #f97316;
            padding: 28px 32px;
            margin: 40px 0;
            border-radius: 0 20px 20px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 20px;
            color: #f8fafc;
            font-weight: 600;
            line-height: 2.3;
        }
        .desi-note strong {
            color: #facc15;
            font-size: 22px;
        }
        .pro-tip-card {
            background-color: #1e293b;
            border-radius: 20px;
            padding: 32px;
            margin: 55px 0;
            border-top: 6px solid #38bdf8;
            box-shadow: 0 8px 22px rgba(0,0,0,0.2);
        }
        .pro-tip-card h4 {
            color: #38bdf8;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .pro-tip-card h4::before {
            content: "🚀";
            font-size: 32px;
        }
        .community-thread {
            background-color: #1e293b;
            border-radius: 20px;
            padding: 32px;
            margin: 55px 0;
            box-shadow: 0 8px 22px rgba(0,0,0,0.2);
            border-bottom: 4px solid #a78bfa;
        }
        .community-thread .thread-author {
            display: flex;
            align-items: center;
            gap: 22px;
            margin-bottom: 22px;
        }
        .author-avatar {
            font-size: 42px;
            background-color: #22c55e;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border: 2px solid #facc15;
        }
        .thread-author .author-name {
            font-weight: 800;
            color: #facc15;
            font-size: 22px;
        }
        .thread-author .author-location {
            color: #94a3b8;
            font-size: 17px;
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .thread-author .author-location::before {
            content: "📍";
            font-size: 19px;
        }
        .thread-content {
            font-size: 19px;
            color: #e2e8f0;
            line-height: 2.3;
        }
        .thread-reply {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid #334155;
        }
        .reply-author {
            font-weight: 700;
            color: #a78bfa;
            margin-bottom: 8px;
            font-size: 20px;
        }
        .reply-content {
            font-size: 18px;
            color: #e2e8f0;
            line-height: 2.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 40px;
                margin-bottom: 32px;
                padding-bottom: 18px;
            }
            h2 {
                font-size: 32px;
                margin: 65px 0 28px;
                padding-bottom: 15px;
            }
            h3 {
                font-size: 28px;
                margin: 45px 0 25px;
                padding-left: 30px;
            }
            h4 {
                font-size: 24px;
            }
            p {
                font-size: 18px;
                margin-bottom: 22px;
                line-height: 2.1;
            }
            .container {
                padding: 0 20px;
                margin: 50px auto;
            }
            .event-card, .pro-tip-card, .community-thread {
                padding: 28px;
            }
            .desi-note {
                padding: 22px 28px;
            }
            .footer {
                padding: 55px 20px;
            }
            .recommendation {
                font-size: 20px;
            }
            .author-avatar {
                width: 60px;
                height: 60px;
                font-size: 38px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            .btn-container {
                gap: 18px;
            }
            ul, ol {
                margin-left: 28px;
            }
            .thread-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }
