:root {
            --pfc-primary: #FF9933;
            --pfc-secondary: #138808;
            --pfc-dark: #000080;
            --pfc-light: #f8f9fa;
            --pfc-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--pfc-primary), var(--pfc-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,100,0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--pfc-primary), var(--pfc-secondary));
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .player-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .player-card img {
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .fixture-badge {
            background: linear-gradient(45deg, var(--pfc-primary), var(--pfc-dark));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .news-card {
            border-left: 4px solid var(--pfc-primary);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: var(--pfc-secondary);
            background-color: rgba(255, 153, 51, 0.05);
        }
        .store-item {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .store-item:hover {
            border-color: var(--pfc-primary);
        }
        .price-tag {
            color: var(--pfc-secondary);
            font-weight: 700;
            font-size: 1.3rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: #f8f9fa;
            border-radius: 6px;
            color: var(--pfc-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--pfc-primary);
            color: white;
            transform: translateY(-2px);
            border-color: var(--pfc-primary);
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--pfc-primary);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--pfc-primary);
            transform: scale(1.1);
        }
        .stadium-img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--pfc-primary), var(--pfc-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .academy-badge {
            background: linear-gradient(45deg, var(--pfc-secondary), #0a6b0a);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .stats-number {
                font-size: 2rem;
            }
            .navbar-nav {
                text-align: center;
            }
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .membership-card {
            border: 2px solid #eee;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        .membership-card:hover {
            border-color: var(--pfc-primary);
            box-shadow: 0 10px 25px rgba(255, 153, 51, 0.15);
        }
        .ticket-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 1.5rem;
            height: 100%;
        }
        .highlight-video {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .match-result {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--pfc-dark);
        }
        .form-control:focus {
            border-color: var(--pfc-primary);
            box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
        }
