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