        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f8f9fa;
            padding-bottom: 60px;
            overflow-x: hidden;
        }
        :root {
            --primary: #0047ab;
            --secondary: #121212;
            --accent: #ff9933;
            --light: #fafafa;
            --dark: #1e1e1e;
            --success: #2e7d32;
            --danger: #c62828;
            --warning: #ffb300;
            --info: #0288d1;
            --border: #e0e0e0;
            --indian-red: #b71c1c;
            --indian-green: #2e7d32;
            --indian-yellow: #ffb300;
        }
        .container {
            width: 94%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 18px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: background-color 0.3s ease, padding 0.3s ease;
        }
        header:hover {
            background-color: #0a0a0a;
            padding: 20px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo::before {
            content: '⚽';
            font-size: 1.8rem;
        }
        .logo span {
            color: white;
            font-weight: 500;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 38px;
            align-items: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1.08rem;
            position: relative;
            padding-bottom: 4px;
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a:hover::after {
            width: 100%;
        }
        .nav-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .btn {
            padding: 12px 26px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-align: center;
            display: inline-block;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
            border: 2px solid transparent;
        }
        .btn-download:hover {
            background-color: #003980;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,57,128,0.4);
            border-color: var(--accent);
        }
        .btn-login {
            background-color: var(--accent);
            color: var(--dark);
            border: 2px solid transparent;
        }
        .btn-login:hover {
            background-color: #e68a00;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(230,138,0,0.4);
            border-color: white;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .hero {
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.95)), url('https://host.com/images/fifa-heroic-dynamo-hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 0;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://host.com/images/football-pattern-indian.png') repeat;
            opacity: 0.07;
            z-index: 1;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(to top, var(--light), transparent);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            color: var(--accent);
            text-shadow: 0 4px 8px rgba(0,0,0,0.4);
            font-family: 'Arial Black', Gadget, sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 950px;
            margin: 0 auto 50px;
            opacity: 0.98;
            line-height: 2;
            font-weight: 500;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .hero .btn {
            padding: 16px 35px;
            font-size: 1.15rem;
            min-width: 220px;
        }
        .hero-tags {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        .hero-tag {
            background-color: rgba(255, 153, 51, 0.2);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
        }
        .section {
            margin-bottom: 80px;
            background: white;
            border-radius: 22px;
            padding: 50px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-top: 5px solid var(--primary);
        }
        .section:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        .section-title {
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 4px solid var(--accent);
            display: inline-block;
            font-family: 'Arial Bold', Gadget, sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .section-subtitle {
            font-size: 1.7rem;
            color: var(--secondary);
            margin: 40px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-subtitle::before {
            content: '🏆';
            font-size: 2rem;
        }
        .section-intro {
            font-size: 1.2rem;
            color: #333;
            line-height: 2;
            margin-bottom: 35px;
            font-weight: 500;
            background-color: rgba(0, 71, 171, 0.05);
            padding: 20px;
            border-radius: 12px;
            border-left: 5px solid var(--primary);
        }
        p {
            margin-bottom: 30px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
            color: #333;
        }
        p strong {
            color: var(--primary);
        }
        .highlight {
            background-color: rgba(255, 153, 51, 0.18);
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
            color: #b35900;
        }
        .important {
            font-weight: 700;
            color: var(--indian-red);
            font-size: 1.2rem;
        }
        .desi-note {
            background-color: rgba(46, 125, 50, 0.08);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid var(--indian-green);
            font-size: 1.1rem;
            color: #2e7d32;
        }
        .desi-note::before {
            content: '🇮🇳 ';
            font-size: 1.3rem;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding: 18px 25px;
            margin: 35px 0;
            background-color: #faf6ed;
            border-radius: 0 10px 10px 0;
            color: #444;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 15px;
            font-weight: 600;
            color: var(--secondary);
            font-style: normal;
            font-size: 1.05rem;
        }
        ul, ol {
            margin-left: 40px;
            margin-bottom: 35px;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            font-size: 1.15rem;
            line-height: 1.85;
            color: #333;
        }
        li strong {
            color: var(--primary);
        }
        li::marker {
            color: var(--accent);
            font-weight: bold;
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 45px 0;
            justify-content: center;
        }
        .game-image {
            width: 100%;
            max-width: 620px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            object-fit: cover;
            height: auto;
            border: 5px solid #f0f0f0;
            background: #f0f0f0;
        }
        .game-image:hover {
            transform: scale(1.04);
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            border-color: var(--accent);
        }
        .image-caption {
            text-align: center;
            font-size: 1rem;
            color: #555;
            margin-top: 12px;
            font-style: italic;
            font-weight: 500;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            font-size: 1.1rem;
        }
        .game-table th, .game-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 2px solid var(--border);
        }
        .game-table th {
            background-color: var(--secondary);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 0.8px;
        }
        .game-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .game-table tr:hover {
            background-color: #f0f7ff;
            transform: scale(1.01);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .game-table td:first-child {
            font-weight: 600;
            color: var(--primary);
        }
        .tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            border-bottom: 2px solid var(--border);
            padding-bottom: 12px;
            flex-wrap: wrap;
        }
        .tab {
            padding: 14px 28px;
            background-color: var(--light);
            border: none;
            border-radius: 8px 8px 0 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
        }
        .tab:hover:not(.active) {
            background-color: #e3f2fd;
            color: var(--primary);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.6s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 35px;
            margin: 45px 0;
        }
        .card {
            background: white;
            border-radius: 18px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
            overflow: hidden;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            border: 1px solid #f0f0f0;
            border-top: 4px solid var(--primary);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .card:hover .card-img {
            transform: scale(1.08);
        }
        .card-content {
            padding: 30px;
        }
        .card-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .card-description {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.85;
            margin-bottom: 25px;
        }
        .card-features {
            margin-left: 25px;
        }
        .card-features li {
            font-size: 1.05rem;
            margin-bottom: 10px;
        }
        .badge {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 12px;
        }
        .badge-primary {
            background-color: #e3f2fd;
            color: var(--primary);
        }
        .badge-success {
            background-color: #e8f5e9;
            color: var(--success);
        }
        .badge-warning {
            background-color: #fff8e1;
            color: #ff8f00;
        }
        .badge-indian {
            background-color: #ffebee;
            color: var(--indian-red);
        }
        .cta-box {
            background: linear-gradient(135deg, var(--primary), #003366);
            color: white;
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,71,171,0.25);
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://host.com/images/indian-pattern.png') repeat;
            opacity: 0.05;
            z-index: 1;
        }
        .cta-box h3 {
            font-size: 2.1rem;
            margin-bottom: 25px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            position: relative;
            z-index: 2;
        }
        .cta-box p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 35px;
            color: white;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 90px 0 50px;
            border-radius: 40px 40px 0 0;
            margin-top: 90px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-column h3 {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: var(--accent);
            position: relative;
            padding-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a::before {
            content: '⚽';
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 12px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .tag {
            background-color: #333;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary);
            transform: translateY(-4px);
        }
        .recommendation {
            background-color: rgba(255, 153, 51, 0.12);
            border-left: 6px solid var(--accent);
            padding: 30px;
            margin: 50px 0;
            border-radius: 0 12px 12px 0;
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .recommendation h4::before {
            content: '🏆';
        }
        .recommendation p {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid #444;
            font-size: 1.05rem;
            color: #aaa;
            line-height: 2;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .copyright-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .copyright-links a:hover {
            color: var(--accent);
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
            display: inline-block;
            margin-bottom: 25px;
        }
        .footer-logo span {
            color: white;
            font-weight: 400;
        }
        .text-center {
            text-align: center;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-50 {
            margin-top: 50px;
        }
        .mb-70 {
            margin-bottom: 70px;
        }
        .indent {
            text-indent: 50px;
        }
        .desi-divider {
            height: 3px;
            width: 100%;
            background: linear-gradient(to right, transparent, var(--accent), transparent);
            margin: 60px 0;
        }
        @media (max-width: 1300px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .cards {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        @media (max-width: 1024px) {
            nav ul {
                gap: 28px;
            }
            .hero {
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 3.2rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .section {
                padding: 40px;
            }
            .game-table th, .game-table td {
                padding: 18px;
            }
        }
        @media (max-width: 768px) {
            nav ul, .nav-buttons {
                display: none;
            }
            .mobile-nav {
                display: flex !important;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                padding: 30px;
                flex-direction: column;
                gap: 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.25);
                border-radius: 0 0 20px 20px;
                z-index: 9998;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 80px 0;
                background-attachment: scroll;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .hero .btn {
                width: 100%;
                max-width: 320px;
            }
            .section {
                padding: 30px;
                margin-bottom: 60px;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-subtitle {
                font-size: 1.5rem;
            }
            .cards {
                grid-template-columns: 1fr;
            }
            .image-container {
                gap: 20px;
            }
            .game-image {
                max-width: 100%;
            }
            .game-table {
                font-size: 1rem;
            }
            .game-table th, .game-table td {
                padding: 15px 10px;
            }
            .tabs {
                gap: 10px;
            }
            .tab {
                padding: 12px 20px;
                font-size: 1rem;
            }
            .footer-content {
                gap: 40px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero {
                padding: 60px 0;
                border-radius: 0 0 25px 25px;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.15rem;
                padding: 0 15px;
            }
            .section {
                padding: 25px;
                border-radius: 15px;
            }
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.8;
                text-align: left;
            }
            ul, ol {
                margin-left: 30px;
            }
            .section-intro {
                font-size: 1.1rem;
                padding: 15px;
            }
            .cta-box {
                padding: 35px 20px;
            }
            .cta-box h3 {
                font-size: 1.8rem;
            }
            .footer {
                padding: 70px 0 40px;
                border-radius: 25px 25px 0 0;
            }
            .footer-content {
                gap: 35px;
            }
            .copyright {
                font-size: 1rem;
            }
            .copyright-links {
                gap: 20px;
            }
            .desi-divider {
                margin: 40px 0;
            }
        }
        @keyframes fadeInPage {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        body {
            animation: fadeInPage 0.9s ease;
        }
        img {
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        img.loaded {
            opacity: 1;
        }
        html {
            scroll-behavior: smooth;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #003980;
        }
