:root {
            --fcgoa-orange: #FF671F;
            --fcgoa-blue: #046A38;
            --fcgoa-green: #046A38;
            --fcgoa-white: #FFFFFF;
            --fcgoa-dark: #1A1A1A;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand img { height: 40px; }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1577223625818-75bc1f2ac0e5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--fcgoa-orange);
        }
        .text-center .section-title:after { left: 50%; transform: translateX(-50%); }
        .player-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            overflow: hidden;
        }
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .player-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-img { transform: scale(1.05); }
        .fcgoa-bg-primary { background-color: var(--fcgoa-orange); }
        .fcgoa-text-primary { color: var(--fcgoa-orange); }
        .fcgoa-btn {
            background-color: var(--fcgoa-orange);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .fcgoa-btn:hover {
            background-color: #e55c1a;
            color: white;
            transform: scale(1.05);
        }
        .news-card {
            border-left: 4px solid var(--fcgoa-orange);
            transition: background-color 0.3s ease;
        }
        .news-card:hover { background-color: #f8f9fa; }
        .stadium-img {
            height: 350px;
            object-fit: cover;
            border-radius: 8px;
        }
        .friendlink a.flink {
            color: #555;
            text-decoration: none;
            padding: 8px 15px;
            margin: 5px;
            background: #f1f1f1;
            border-radius: 4px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--fcgoa-orange);
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #222;
            color: #ccc;
        }
        footer a { color: #aaa; text-decoration: none; }
        footer a:hover { color: white; }
        .sponsor-logo {
            height: 60px;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .match-card {
            border-left: 5px solid var(--fcgoa-green);
            border-radius: 8px;
        }
        .match-live { border-left-color: #dc3545; }
        .ticket-card {
            border: 2px solid #eee;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .ticket-card:hover {
            border-color: var(--fcgoa-orange);
            box-shadow: 0 5px 15px rgba(255,103,31,0.1);
        }
        .merch-item {
            transition: transform 0.3s ease;
            border: 1px solid #eee;
        }
        .merch-item:hover { transform: scale(1.03); }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0; }
            .player-img { height: 200px; }
            .stadium-img { height: 250px; }
        }
