:root {
            --primary-blue: #0055A4;
            --secondary-gold: #FFD700;
            --accent-red: #EF3340;
            --dark-bg: #0A1428;
            --light-bg: #F8F9FA;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            color: #333;
        }
        .gkfc-bg-primary { background-color: var(--primary-blue) !important; }
        .gkfc-text-primary { color: var(--primary-blue) !important; }
        .gkfc-bg-secondary { background-color: var(--secondary-gold) !important; }
        .gkfc-text-secondary { color: var(--secondary-gold) !important; }
        .hero-section {
            background: linear-gradient(rgba(10, 20, 40, 0.85), rgba(10, 20, 40, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 90vh;
            color: white;
        }
        .nav-logo {
            height: 60px;
            width: auto;
        }
        .gkfc-navbar {
            transition: all 0.3s ease;
            background-color: rgba(10, 20, 40, 0.95) !important;
        }
        .gkfc-navbar.scrolled {
            padding-top: 5px;
            padding-bottom: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .gkfc-btn-primary {
            background-color: var(--primary-blue);
            color: white;
            border: 2px solid var(--primary-blue);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .gkfc-btn-primary:hover {
            background-color: transparent;
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,85,164,0.2);
        }
        .gkfc-btn-secondary {
            background-color: var(--secondary-gold);
            color: var(--dark-bg);
            border: 2px solid var(--secondary-gold);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .gkfc-btn-secondary:hover {
            background-color: transparent;
            color: var(--secondary-gold);
            transform: translateY(-3px);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-gold));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .section-title.left::after {
            left: 0;
            transform: none;
        }
        .player-card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            border: none;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .player-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .player-card:hover .player-img {
            transform: scale(1.05);
        }
        .match-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border-left: 5px solid var(--primary-blue);
        }
        .match-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        .news-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .news-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .news-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .sponsor-logo {
            height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        .stadium-img {
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: #f1f5f9;
            border-radius: 30px;
            color: #334155;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,85,164,0.2);
        }
        .footer {
            background-color: var(--dark-bg);
            color: #cbd5e1;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .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;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--secondary-gold);
            color: var(--dark-bg);
        }
        .trophy-icon {
            color: var(--secondary-gold);
            font-size: 2rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .stat-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-gold));
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-gold);
            border: 3px solid var(--primary-blue);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                background-attachment: scroll;
            }
            .nav-logo {
                height: 50px;
            }
            .player-img {
                height: 200px;
            }
            .stadium-img {
                height: 250px;
            }
        }
