* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #0f4c81;
            --accent: #ff6b00;
            --bg-light: #f8f9fa;
            --text-dark: #2d3436;
            --text-light: #ffffff;
            --border: #e0e0e0;
            --shadow: 0 3px 12px rgba(0,0,0,0.08);
            --highlight-bg: #fff3cd;
            --wiki-border: #c8e6c9;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 1rem;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        header {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: var(--text-light);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.2s ease;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            color: var(--accent);
            transform: translateY(-1px);
        }
        .btn {
            padding: 11px 22px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--text-light);
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        .btn-download:hover {
            background-color: #e05e00;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255,107,0,0.3);
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
            margin-left: 12px;
        }
        .btn-login:hover {
            background-color: rgba(255,255,255,0.12);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(rgba(15,76,129,0.85), rgba(15,76,129,0.85)), url('https://host.com/hero-pune-super-kickers.jpg') center/cover no-repeat;
            color: var(--text-light);
            padding: 90px 0;
            text-align: center;
            margin-bottom: 50px;
            border-radius: 0 0 25px 25px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(to top, var(--bg-light), transparent);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--accent);
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 35px;
            line-height: 2.1;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .wiki-info-box {
            background-color: var(--wiki-border);
            border: 1px solid #b2d8b2;
            border-radius: 8px;
            padding: 20px;
            margin: 0 0 40px 20px;
            float: right;
            width: 320px;
            max-width: 100%;
            box-shadow: var(--shadow);
        }
        .wiki-info-box h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 15px;
            border-bottom: 1px solid #81c784;
            padding-bottom: 8px;
            text-align: center;
        }
        .info-row {
            display: flex;
            margin-bottom: 12px;
        }
        .info-label {
            font-weight: 600;
            width: 40%;
            color: #2e7d32;
        }
        .info-value {
            width: 60%;
            line-height: 1.6;
        }
        .info-image {
            width: 100%;
            border-radius: 6px;
            margin: 10px 0 15px;
            border: 1px solid #81c784;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .section {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
        }
        .section h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 30px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent);
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .section h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin: 35px 0 20px;
            padding-left: 10px;
            border-left: 3px solid var(--accent);
        }
        .section h4 {
            color: #2e7d32;
            font-size: 1.3rem;
            margin: 25px 0 15px;
        }
        .section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .section ul, .section ol {
            margin: 0 0 25px 40px;
        }
        .section li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: var(--highlight-bg);
            padding: 18px;
            border-left: 5px solid var(--accent);
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #d84315;
            font-size: 1.15rem;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        .stat-boxes {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
        }
        .stat-box {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            flex: 1;
            min-width: 180px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .stat-box .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .stat-box .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            text-transform: capitalize;
        }
        .tabs {
            display: flex;
            border-bottom: 1px solid var(--border);
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .tab {
            padding: 12px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #555;
            transition: all 0.3s ease;
        }
        .tab.active {
            border-bottom: 3px solid var(--accent);
            color: var(--primary);
            background-color: rgba(15,76,129,0.05);
        }
        .tab:hover {
            color: var(--accent);
            background-color: rgba(15,76,129,0.03);
        }
        .tab-content {
            padding: 25px 0;
            border-left: 1px solid var(--border);
            padding-left: 20px;
            margin-left: 5px;
        }
        .quote-box {
            font-style: italic;
            padding: 20px;
            margin: 30px 0;
            border-left: 4px solid var(--accent);
            background-color: rgba(255,107,0,0.05);
            color: #333;
        }
        .quote-author {
            display: block;
            text-align: right;
            font-weight: 600;
            margin-top: 10px;
            color: var(--primary);
            font-style: normal;
        }
        .features-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .features-table th, .features-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        .features-table th {
            background-color: var(--primary);
            color: var(--text-light);
            font-weight: 600;
        }
        .features-table tr:nth-child(even) {
            background-color: rgba(15,76,129,0.03);
        }
        .features-table tr:hover {
            background-color: rgba(15,76,129,0.05);
        }
        footer {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 60px 0 30px;
            margin-top: 60px;
            border-radius: 25px 25px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--accent);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            opacity: 0.85;
            transition: opacity 0.3s ease, color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }
        .recommendation {
            background-color: rgba(255,255,255,0.08);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            opacity: 0.8;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .wiki-info-box {
                float: none;
                margin: 0 auto 40px;
                width: 100%;
                max-width: 400px;
            }
            .hero h1 {
                font-size: 3rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: var(--primary);
                padding: 25px;
                gap: 20px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
                border-radius: 0 0 15px 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .section h2 {
                font-size: 1.9rem;
            }
            .section h3 {
                font-size: 1.45rem;
            }
            .stat-box .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 70px 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .btn {
                padding: 10px 18px;
                font-size: 1rem;
            }
            .section {
                padding: 25px;
            }
            .stat-boxes {
                gap: 15px;
            }
            .stat-box {
                padding: 20px;
                min-width: 150px;
            }
            .tab {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 576px) {
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .hero-buttons {
                gap: 15px;
            }
            .logo {
                font-size: 1.7rem;
            }
            .section h2 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            .section h3 {
                font-size: 1.3rem;
                margin: 25px 0 15px;
            }
            .section p {
                font-size: 1rem;
                margin-bottom: 15px;
            }
            .stat-box .stat-number {
                font-size: 2rem;
            }
            .stat-box .stat-label {
                font-size: 1rem;
            }
            .footer-content {
                gap: 30px;
            }
            .copyright {
                font-size: 0.9rem;
            }
        }
        img {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        img.loaded {
            opacity: 1;
            transform: translateY(0);
        }
