:root {
            --primary: #e74c3c;
            --secondary: #3498db;
            --accent: #2ecc71;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --text: #333;
            --spacing: 1.5rem;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: var(--text);
            background-color: #f9f9f9;
            padding-bottom: 4rem;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        nav a:hover {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
        }
        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            color: white;
        }
        .btn-download {
            background-color: var(--accent);
        }
        .btn-download:hover {
            background-color: #27ae60;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: var(--dark);
        }
        .btn-login:hover {
            background-color: #1a252f;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .hero {
            background: url('https://host.com/images/pune-football-dynamos-hero.jpg') center/cover no-repeat;
            padding: 6rem 0;
            text-align: center;
            color: white;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }
        main {
            margin: 3rem 0;
        }
        section {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--light);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: rgba(46, 204, 113, 0.1);
            padding: 1rem;
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: var(--accent);
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            transition: 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .feature-card h4 {
            color: var(--dark);
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feature-card p {
            font-size: 1rem;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0;
            text-align: center;
        }
        .stat-box {
            background-color: rgba(52, 152, 219, 0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            min-width: 200px;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--dark);
        }
        .quote {
            font-style: italic;
            color: #555;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            margin: 2rem 0;
            position: relative;
        }
        .quote::before {
            content: '"';
            font-size: 4rem;
            color: rgba(52, 152, 219, 0.2);
            position: absolute;
            top: -20px;
            left: 10px;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 1rem;
            font-weight: 600;
            color: var(--dark);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .gallery-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: var(--border-radius);
            transition: 0.3s;
            cursor: pointer;
        }
        .gallery-img:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid var(--light);
            margin: 2rem 0;
        }
        .tab-btn {
            padding: 1rem 2rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            transition: 0.3s;
            border-bottom: 3px solid transparent;
        }
        .tab-btn.active {
            color: var(--primary);
            border-bottom: 3px solid var(--primary);
        }
        .tab-content {
            padding: 1.5rem 0;
        }
        .tab-pane {
            display: none;
        }
        .tab-pane.active {
            display: block;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 0.8rem;
        }
        .footer-col a {
            color: var(--light);
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-col a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .tag {
            background-color: #34495e;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .recommendation {
            background-color: rgba(46, 204, 113, 0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            text-align: center;
        }
        .recommendation h3 {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            nav ul {
                gap: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .cta-buttons {
                margin-left: auto;
            }
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            section {
                padding: 1.8rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 576px) {
            .cta-buttons {
                width: 100%;
                margin-top: 1rem;
                justify-content: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .stats {
                gap: 1rem;
            }
            .stat-box {
                padding: 1.5rem;
                min-width: 150px;
            }
            .stat-value {
                font-size: 2rem;
            }
            .tabs {
                flex-direction: column;
            }
            .tab-btn {
                text-align: left;
            }
        }
