* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background-color: #f5fafe;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 150px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #00a86b 0%, #006400 100%);
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.2);
        }
        .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: 1px;
            white-space: nowrap;
            background: #ffce00;
            padding: 12px 25px;
            border-radius: 60px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
            border: 2px solid #ffffff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #006400;
        }
        .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: 7px 0;
            border-bottom: 3px solid transparent;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #f0f8ff;
            border-bottom: 3px solid #ffce00;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            color: white;
            cursor: pointer;
            z-index: 10000;
            background: rgba(255,255,255,0.25);
            border-radius: 8px;
            padding: 4px 10px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #00a86b 0%, #006400 100%);
                padding: 120px 25px 45px;
                gap: 28px;
                box-shadow: 0 12px 30px rgba(0,0,0,0.25);
                border-bottom: 4px solid #ffce00;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 22px;
                padding: 10px 20px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #006400;
            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 #ffce00;
            padding-bottom: 20px;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        h2 {
            font-size: 32px;
            color: #023e8a;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #00a86b;
            font-weight: 800;
            line-height: 1.7;
            text-transform: capitalize;
            position: relative;
        }
        h2::after {
            content: "⚽";
            position: absolute;
            right: 0;
            bottom: -8px;
            font-size: 26px;
        }
        h3 {
            font-size: 26px;
            color: #7209b7;
            margin: 50px 0 25px;
            font-weight: 700;
            line-height: 1.8;
            position: relative;
            padding-left: 30px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🔥";
            color: #00a86b;
            position: absolute;
            left: 0;
            font-size: 28px;
        }
        h4 {
            font-size: 22px;
            color: #c1121f;
            margin: 35px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
        }
        h4::before {
            content: "🌟";
            font-size: 24px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 18px;
            color: #334155;
            line-height: 2.0;
            padding: 0 8px;
        }
        .highlight {
            font-weight: 900;
            color: #006400;
            font-size: 20px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.08);
        }
        .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 #ffce00;
        }
        .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: 65px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 7px 20px rgba(0,0,0,0.2);
            min-width: 230px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .download-btn {
            background: linear-gradient(135deg, #00a86b 0%, #006400 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .login-btn {
            background: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
            border-color: #ffce00;
        }
        @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: #334155;
            line-height: 2.2;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 15px;
        }
        li strong {
            color: #006400;
            font-size: 19px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            font-size: 18px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #00a86b 0%, #006400 100%);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .stats-table tr:hover {
            background-color: #f0fff4;
            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.12);
            border-left: 6px solid #006400;
            border-top: 3px solid #ffce00;
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.18);
        }
        .event-card h4 {
            margin-top: 0;
            color: #006400;
            font-size: 24px;
        }
        .event-date {
            display: inline-block;
            background-color: #d4edda;
            color: #006400;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 700;
            margin-bottom: 18px;
            font-size: 17px;
            border: 2px solid #00a86b;
        }
        .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, #023e8a 0%, #03045e 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 17px;
            text-transform: capitalize;
        }
        .category-links a:hover {
            background: linear-gradient(135deg, #03045e 0%, #023e8a 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: 18px;
        }
        .tag-links a {
            background: linear-gradient(135deg, #7209b7 0%, #4a044a 100%);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
            text-transform: lowercase;
        }
        .tag-links a:hover {
            background: linear-gradient(135deg, #4a044a 0%, #7209b7 100%);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }
        .footer {
            background-color: #03045e;
            color: white;
            padding: 60px 25px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 50px;
        }
        .game-types h3 {
            color: #ffce00;
            border-bottom: 2px solid #ffce00;
            padding-bottom: 12px;
            margin-bottom: 35px;
        }
        .tag-section {
            margin-bottom: 60px;
        }
        .tag-section h3 {
            color: #ffce00;
            border-bottom: 2px solid #ffce00;
            padding-bottom: 12px;
            margin-bottom: 35px;
        }
        .recommendation {
            font-size: 20px;
            margin-bottom: 50px;
            text-align: center;
            line-height: 2.2;
            padding: 0 15px;
            background: rgba(255,255,255,0.07);
            padding: 25px;
            border-radius: 12px;
        }
        .recommendation a {
            color: #ffce00;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #fff9c4;
            border-bottom: 3px solid #fff9c4;
        }
        .copyright {
            text-align: center;
            font-size: 18px;
            opacity: 0.85;
            margin-top: 60px;
            padding-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .desi-note {
            background-color: #f0fff4;
            border-left: 6px solid #00a86b;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 0 18px 18px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.09);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 19px;
            color: #065f46;
            font-weight: 600;
            line-height: 2.1;
        }
        .desi-note strong {
            color: #006400;
            font-size: 21px;
        }
        .pro-tip-card {
            background-color: #e0f7fa;
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            border-top: 6px solid #023e8a;
            box-shadow: 0 7px 20px rgba(0,0,0,0.1);
        }
        .pro-tip-card h4 {
            color: #023e8a;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .pro-tip-card h4::before {
            content: "🚀";
            font-size: 28px;
        }
        .community-thread {
            background-color: #fef7fb;
            border-radius: 15px;
            padding: 32px;
            margin: 50px 0;
            box-shadow: 0 7px 20px rgba(0,0,0,0.1);
            border-bottom: 4px solid #7209b7;
        }
        .community-thread .thread-author {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 22px;
        }
        .author-avatar {
            font-size: 40px;
            background-color: #006400;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            border: 2px solid #ffce00;
        }
        .thread-author .author-name {
            font-weight: 800;
            color: #006400;
            font-size: 20px;
        }
        .thread-author .author-location {
            color: #666666;
            font-size: 17px;
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .thread-author .author-location::before {
            content: "📍";
            font-size: 18px;
        }
        .thread-content {
            font-size: 18px;
            color: #334155;
            line-height: 2.1;
        }
        .thread-reply {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #fcc367;
        }
        .reply-author {
            font-weight: 700;
            color: #7209b7;
            margin-bottom: 8px;
            font-size: 19px;
        }
        .reply-content {
            font-size: 17px;
            color: #334155;
            line-height: 2.0;
        }
        @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: 18px;
            }
            .author-avatar {
                width: 60px;
                height: 60px;
                font-size: 36px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            .btn-container {
                gap: 18px;
            }
            ul, ol {
                margin-left: 25px;
            }
            .thread-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }
