* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2c2c2c;
            background-color: #f5f5f0;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-nav {
            background: linear-gradient(135deg, #0a4da2, #1e90ff);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.18);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 0.7px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffd700;
            text-transform: uppercase;
            font-style: italic;
        }
        .logo::before {
            content: "⚽";
            font-size: 2.7rem;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 10px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.25);
            color: #ffd700;
            transform: scale(1.05);
        }
        .daman-link {
            background-color: #ffd700;
            color: #0a4da2 !important;
            font-weight: 800;
            padding: 12px 25px;
            border-radius: 35px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        .daman-link:hover {
            background-color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #0a4da2, #1e90ff);
                padding: 35px 25px;
                gap: 25px;
                border-top: 2px solid rgba(255,255,255,0.3);
            }
            .nav-links.active {
                display: flex;
                animation: fadeIn 0.4s ease;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.9rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        h1 {
            font-size: 3.2rem;
            color: #0a4da2;
            text-align: center;
            margin: 60px 0 45px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.12);
            line-height: 1.4;
            padding: 0 15px;
        }
        h2 {
            font-size: 2.4rem;
            color: #2c3e50;
            margin: 70px 0 35px;
            padding-bottom: 15px;
            border-bottom: 5px solid #1e90ff;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100px;
            height: 5px;
            background-color: #ffd700;
        }
        h3 {
            font-size: 1.8rem;
            color: #0a4da2;
            margin: 45px 0 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "🔥";
            font-size: 2.1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "⚡";
            font-size: 1.7rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
            padding: 0 8px;
        }
        .highlight {
            font-weight: 800;
            color: #0a4da2;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .key-term {
            font-weight: 900;
            color: #2c3e50;
            background-color: #f8f9fa;
            padding: 3px 8px;
            border-radius: 6px;
            display: inline-block;
        }
        .desi-note {
            background-color: #e8f4f8;
            border-left: 6px solid #1e90ff;
            padding: 20px 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .desi-note strong {
            color: #0a4da2;
            font-size: 1.15rem;
        }
        .game-img {
            width: 100%;
            max-width: 1000px;
            height: auto;
            border-radius: 15px;
            margin: 50px auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            transition: transform 0.4s ease;
        }
        .game-img:hover {
            transform: translateY(-8px);
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 1.3rem;
            font-weight: 800;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        .download-btn {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #219653, #27ae60);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(39, 174, 96, 0.35);
        }
        .login-btn {
            background: linear-gradient(135deg, #9b59b6, #bb8fce);
            color: white;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #8e44ad, #9b59b6);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(142, 68, 173, 0.35);
        }
        ul, ol {
            margin: 30px 0 40px 50px;
            font-size: 1.1rem;
            line-height: 2.1;
        }
        li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -30px;
            top: 3px;
            font-size: 1.1rem;
        }
        ol li::before {
            content: counter(li);
            counter-increment: li;
            position: absolute;
            left: -35px;
            top: 3px;
            background-color: #0a4da2;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 18px rgba(0,0,0,0.12);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 2px solid #f3f3f3;
        }
        .stats-table th {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.7px;
        }
        .stats-table tr:hover {
            background-color: #f9fafb;
            transform: scale(1.008);
            transition: transform 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .section {
            background-color: white;
            border-radius: 20px;
            padding: 45px;
            margin-bottom: 50px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .tab-container {
            margin: 60px 0;
        }
        .tab-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 14px 30px;
            background-color: #f1f1f1;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .tab-btn.active {
            background: linear-gradient(135deg, #0a4da2, #1e90ff);
            color: white;
            box-shadow: 0 5px 12px rgba(10, 77, 162, 0.25);
        }
        .tab-content {
            display: none;
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.1);
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }
        .footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-section {
            flex: 1;
            min-width: 300px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 30px;
            font-size: 1.5rem;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 15px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #e2e2e2;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 10px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        .tag {
            padding: 12px 22px;
            background-color: rgba(255,255,255,0.12);
            border-radius: 35px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ffd700;
            transform: translateY(-3px);
        }
        .tag:hover a {
            color: #2c3e50;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.2rem;
            line-height: 2;
        }
        .recommendation strong {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: #c0c0c0;
        }
        .game-categories {
            margin: 40px 0;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .game-categories h3 {
            margin-bottom: 25px;
            color: #2c3e50;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-links a {
            padding: 10px 20px;
            background-color: #e9ecef;
            color: #2c3e50;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .category-links a:hover {
            background-color: #1e90ff;
            color: white;
            transform: translateY(-2px);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
                margin: 50px 0 40px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 60px 0 30px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 40px 0 22px;
            }
            h4 {
                font-size: 1.4rem;
                margin: 30px 0 18px;
            }
            p, ul, ol {
                font-size: 1.05rem;
            }
            .section {
                padding: 35px;
            }
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 1rem;
            }
            .btn {
                padding: 18px 35px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
                margin: 45px 0 35px;
            }
            h2 {
                font-size: 2.0rem;
                margin: 55px 0 28px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 35px 0 20px;
            }
            h4 {
                font-size: 1.3rem;
                margin: 28px 0 16px;
            }
            .btn {
                padding: 16px 30px;
                font-size: 1.1rem;
                width: 100%;
            }
            .btn-container {
                gap: 20px;
            }
            .stats-table th, .stats-table td {
                padding: 15px;
                font-size: 0.95rem;
            }
            .footer-content {
                gap: 40px;
            }
            .section {
                padding: 30px;
            }
            ul, ol {
                margin-left: 35px;
            }
            .game-img {
                border-radius: 10px;
                margin: 40px auto;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 18px;
            }
            h4 {
                font-size: 1.2rem;
                margin: 25px 0 15px;
            }
            .btn {
                padding: 15px 25px;
                font-size: 1rem;
            }
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 0.9rem;
            }
            .footer-content {
                gap: 30px;
            }
            .section {
                padding: 25px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .game-img {
                margin: 35px auto;
            }
            .tag {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f3f3f3;
        }
        ::-webkit-scrollbar-thumb {
            background: #1e90ff;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #0a4da2;
        }
        .faq-container {
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .faq-question {
            background-color: #e8f4f8;
            padding: 18px 25px;
            font-weight: 700;
            font-size: 1.1rem;
            color: #0a4da2;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            background-color: white;
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer.active {
            padding: 20px 25px;
            max-height: 500px;
        }
        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            content: "-";
            transform: rotate(180deg);
        }
