* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.9;
            padding-bottom: 150px;
            font-size: 16px;
            word-spacing: 0.8px;
            letter-spacing: 0.4px;
        }
        .nav-container {
            background-color: #ff7e00;
            padding: 20px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 6px 20px rgba(0,0,0,0.7);
        }
        .nav-wrapper {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.6);
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 20px;
            text-transform: uppercase;
        }
        .logo span {
            color: #0f172a;
            background: linear-gradient(135deg, #ffd166 0%, #ffbe0b 100%);
            padding: 10px 22px;
            border-radius: 15px;
            border: 4px solid #0f172a;
        }
        .nav-links {
            display: flex;
            gap: 40px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            padding: 12px 0;
            border-bottom: 3px solid transparent;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ffd166;
            border-bottom: 3px solid #ffd166;
        }
        .daman-link {
            background-color: #0f172a;
            padding: 16px 32px;
            border-radius: 45px;
            border-bottom: none !important;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .daman-link:hover {
            background-color: #1e3a8a;
            transform: translateY(-6px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.6);
            color: #ffd166;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2.6rem;
            cursor: pointer;
            z-index: 10000;
        }
        .container {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 35px;
        }
        h1 {
            font-size: 4rem;
            color: #ff7e00;
            text-align: center;
            margin-bottom: 90px;
            padding-bottom: 40px;
            border-bottom: 8px solid #ffd166;
            text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
            line-height: 1.6;
            text-transform: capitalize;
        }
        h2 {
            font-size: 3rem;
            color: #ff7e00;
            margin: 120px 0 50px;
            padding-left: 40px;
            border-left: 9px solid #ffd166;
            line-height: 1.7;
            text-transform: capitalize;
        }
        h3 {
            font-size: 2.4rem;
            color: #ffd166;
            margin: 80px 0 40px;
            display: flex;
            align-items: center;
            gap: 20px;
            line-height: 1.8;
            text-transform: capitalize;
        }
        h3::before {
            content: "⚽";
            font-size: 2.8rem;
        }
        h4 {
            font-size: 1.9rem;
            color: #38bdf8;
            margin: 50px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: capitalize;
        }
        h4::after {
            content: "🔥";
        }
        p {
            margin-bottom: 30px;
            font-size: 1.3rem;
            text-align: justify;
            padding: 0 15px;
            line-height: 2;
        }
        .highlight {
            font-weight: 900;
            color: #ff7e00;
            text-decoration: underline;
            text-underline-offset: 10px;
            text-decoration-thickness: 3px;
        }
        .game-btn {
            display: inline-block;
            padding: 28px 55px;
            margin: 40px 30px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.8rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: 5px solid transparent;
            cursor: pointer;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .download-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 15px 35px rgba(16,185,129,0.7);
            border-color: #047857;
        }
        .login-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            box-shadow: 0 15px 35px rgba(59,130,246,0.7);
            border-color: #1d4ed8;
        }
        .game-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            border-color: #ffd166;
        }
        .btn-container {
            text-align: center;
            margin: 120px 0;
        }
        .game-img {
            max-width: 100%;
            border-radius: 35px;
            box-shadow: 0 20px 45px rgba(0,0,0,0.7);
            margin: 80px auto;
            display: block;
            border: 7px solid #ff7e00;
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.05);
        }
        ul, ol {
            margin: 45px 0 45px 90px;
            font-size: 1.3rem;
        }
        li {
            margin-bottom: 30px;
            padding-left: 25px;
            line-height: 2.1;
        }
        li::marker {
            color: #ff7e00;
            font-size: 2rem;
        }
        .stats-table, .regional-table {
            width: 100%;
            border-collapse: collapse;
            margin: 80px 0;
            overflow: hidden;
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.7);
        }
        .stats-table th, .stats-table td, .regional-table th, .regional-table td {
            padding: 30px;
            text-align: left;
            border-bottom: 5px solid #1e3a8a;
        }
        .stats-table th, .regional-table th {
            background-color: #0f172a;
            color: #ff7e00;
            font-size: 1.6rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .stats-table tr, .regional-table tr {
            background-color: #1e3a8a;
        }
        .stats-table tr:hover, .regional-table tr:hover {
            background-color: #334155;
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }
        .review-card {
            background-color: #1e3a8a;
            border-radius: 35px;
            padding: 50px;
            margin: 80px 0;
            box-shadow: 0 20px 40px rgba(0,0,0,0.7);
            border-left: 9px solid #ff7e00;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            gap: 35px;
        }
        .reviewer-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff7e00 0%, #f8fafc 100%);
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 2.2rem;
            box-shadow: 0 12px 25px rgba(0,0,0,0.6);
            border: 5px solid #ffd166;
        }
        .reviewer-info h4 {
            margin: 0;
            color: #ffd166;
            font-size: 1.8rem;
        }
        .reviewer-info p {
            margin: 15px 0 0;
            color: #94a3b8;
            font-size: 1.2rem;
        }
        .review-rating {
            color: #ffd166;
            margin-bottom: 35px;
            font-size: 2.5rem;
        }
        .category-nav {
            margin: 120px 0 90px;
            background-color: #1e3a8a;
            padding: 50px;
            border-radius: 35px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.7);
        }
        .category-nav h3 {
            margin-bottom: 45px;
            color: #ff7e00;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
        }
        .category-links a {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.3rem;
            text-transform: capitalize;
        }
        .category-links a:hover {
            background-color: #ff7e00;
            color: #0f172a;
            transform: translateY(-6px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.5);
        }
        .tag-container {
            margin: 100px 0;
            background-color: #1e3a8a;
            padding: 50px;
            border-radius: 35px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.7);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .tag {
            background-color: #334155;
            color: #f8fafc;
            padding: 18px 35px;
            border-radius: 45px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            text-transform: capitalize;
        }
        .tag:hover {
            background-color: #ff7e00;
            color: #0f172a;
            transform: translateY(-6px);
        }
        .footer {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 90px 50px;
            margin-top: 200px;
            border-top: 8px solid #ff7e00;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-text {
            font-size: 1.5rem;
            margin-bottom: 80px;
            text-align: center;
            line-height: 2.5;
            color: #94a3b8;
        }
        .footer-text strong {
            color: #ff7e00;
            font-size: 1.6rem;
        }
        .copyright {
            text-align: center;
            padding-top: 70px;
            border-top: 5px solid #1e3a8a;
            font-size: 1.35rem;
            color: #64748b;
            line-height: 2.4;
        }
        .guide-card {
            background-color: #1e3a8a;
            border-radius: 30px;
            padding: 45px;
            margin: 70px 0;
            box-shadow: 0 18px 35px rgba(0,0,0,0.6);
            border-top: 6px solid #ffd166;
        }
        .guide-tip {
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-left: 20px;
            border-left: 5px solid #38bdf8;
        }
        .event-card {
            background-color: #1e3a8a;
            border-radius: 30px;
            padding: 45px;
            margin: 70px 0;
            box-shadow: 0 18px 35px rgba(0,0,0,0.6);
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            align-items: center;
        }
        .event-details {
            flex: 1;
            min-width: 320px;
        }
        .event-img {
            flex: 1;
            min-width: 320px;
            border-radius: 25px;
            border: 5px solid #ffd166;
            box-shadow: 0 12px 25px rgba(0,0,0,0.5);
        }
        .community-card {
            background-color: #1e3a8a;
            border-radius: 30px;
            padding: 45px;
            margin: 70px 0;
            box-shadow: 0 18px 35px rgba(0,0,0,0.6);
            border-right: 6px solid #ffd166;
        }
        .community-topic {
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-right: 20px;
            border-right: 5px solid #38bdf8;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 35px;
            }
            h1 {
                font-size: 3.6rem;
            }
            h2 {
                font-size: 2.8rem;
            }
            h3 {
                font-size: 2.2rem;
            }
            .game-btn {
                padding: 25px 50px;
                font-size: 1.6rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 30px;
            }
            .logo {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 3.2rem;
                margin-bottom: 80px;
                padding-bottom: 35px;
            }
            h2 {
                font-size: 2.6rem;
                margin: 100px 0 45px;
                padding-left: 35px;
            }
            h3 {
                font-size: 2.1rem;
                margin: 70px 0 35px;
            }
            p, ul, ol {
                font-size: 1.25rem;
            }
            .game-img {
                margin: 70px auto;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #ff7e00;
                padding: 70px 50px;
                gap: 45px;
                box-shadow: 0 30px 35px rgba(0,0,0,0.7);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2.9rem;
                margin-bottom: 70px;
                padding-bottom: 30px;
            }
            h2 {
                font-size: 2.4rem;
                margin: 90px 0 40px;
                padding-left: 30px;
            }
            h3 {
                font-size: 2rem;
                margin: 60px 0 30px;
            }
            p, ul, ol {
                font-size: 1.2rem;
            }
            .game-btn {
                padding: 22px 45px;
                font-size: 1.5rem;
                display: block;
                margin: 35px auto;
                width: 95%;
            }
            .review-card {
                padding: 45px;
            }
            .reviewer-avatar {
                width: 90px;
                height: 90px;
                font-size: 2rem;
            }
            .stats-table th, .stats-table td, .regional-table th, .regional-table td {
                padding: 25px;
                font-size: 1.2rem;
            }
            .category-links, .tags {
                gap: 25px;
            }
            .category-links a {
                padding: 18px 32px;
                font-size: 1.2rem;
            }
            .tag {
                padding: 16px 28px;
                font-size: 1.1rem;
            }
            ul, ol {
                margin-left: 70px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.6rem;
                margin-bottom: 65px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 80px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.9rem;
                margin: 55px 0 30px;
            }
            .container {
                padding: 0 25px;
            }
            ul, ol {
                margin-left: 50px;
            }
            .footer-text {
                font-size: 1.35rem;
            }
            .copyright {
                font-size: 1.25rem;
            }
            .event-card {
                padding: 35px;
                gap: 25px;
            }
            .guide-card {
                padding: 35px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .game-btn {
                padding: 20px 40px;
                font-size: 1.4rem;
            }
            .category-links a {
                padding: 16px 25px;
                font-size: 1.1rem;
            }
            .tag {
                padding: 14px 22px;
                font-size: 1rem;
            }
        }
