/* =============================================
   FC UNITED — MAIN STYLESHEET
   ============================================= */
:root {
    --primary: #1a5c2a;
    --primary-light: #2a7a3a;
    --gold: #f5c518;
    --dark: #0a0f0b;
    --dark2: #0f1a12;
    --dark3: #162019;
    --light-bg: #f4f5f7;
    --text-muted: #7a9a82;
    --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--dark);
    color: var(--white);
    margin: 0;
    overflow-x: hidden;
}

/* ---- NAVBAR ---- */
.fc-navbar {
    background: rgba(13, 15, 26, 0.97) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
}

.fc-logo-badge {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    color: #fff;
}

.fc-navbar .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color .2s;
}
.fc-navbar .nav-link:hover { color: #fff !important; }

.fc-search-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 20px 0 0 20px;
    font-size: .8rem;
    width: 140px;
}
.fc-search-input::placeholder { color: rgba(255,255,255,0.4); }
.fc-search-input:focus { background: rgba(255,255,255,0.12); box-shadow: none; border-color: var(--primary); color: #fff; }

.fc-search-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: none;
    color: rgba(255,255,255,0.6);
    border-radius: 0 20px 20px 0;
    padding: 4px 10px;
}
.fc-search-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.fc-icon-btn {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: color .2s;
}
.fc-icon-btn:hover { color: var(--primary); }

/* ---- HERO ---- */
.fc-hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?w=1600&q=80') center center / cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.fc-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        100deg,
        rgba(13,15,26,0.95) 0%,
        rgba(13,15,26,0.75) 50%,
        rgba(13,15,26,0.4) 100%
    );
}

.fc-hero-watermark {
    position: absolute;
    bottom: 80px; left: 0;
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.fc-hero .container { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 80px; padding-bottom: 120px; }

.fc-hero-content { position: relative; z-index: 2; }

.fc-hero-welcome {
    display: block;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fc-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.fc-hero-sub {
    color: rgba(255,255,255,0.6);
    font-size: .95rem;
    max-width: 380px;
    line-height: 1.6;
}

/* ---- HERO BUTTONS ---- */
.fc-btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 3px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
}
.fc-btn-primary:hover { background: #c1121f; border-color: #c1121f; color: #fff; transform: translateY(-2px); }

.fc-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 3px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: border-color .2s, transform .2s;
}
.fc-btn-outline:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }

/* ---- NEWS SIDEBAR (hero) ---- */
.fc-news-sidebar {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; gap: 0;
}

.fc-news-item {
    display: block;
    padding: 14px 16px;
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    background: rgba(255,255,255,0.04);
    margin-bottom: 2px;
}
.fc-news-item:hover { border-left-color: var(--primary); background: rgba(255,255,255,0.08); }

.fc-news-title {
    display: block;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}
.fc-news-date {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
}

/* ---- COUNTDOWN BAR ---- */
.fc-countdown-bar {
    position: absolute;
    bottom: 0; right: 0;
    background: rgba(13,15,26,0.92);
    border-top: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 3;
}

.fc-countdown-label {
    background: var(--primary);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 14px;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
}

.fc-countdown-vs {
    color: rgba(255,255,255,0.6);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

.fc-countdown-timer {
    display: flex;
    gap: 0;
}

.fc-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 18px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.fc-cd-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.fc-cd-label {
    font-size: .6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ---- QUICK ACTION BUTTONS ---- */
.fc-quick-actions {
    position: fixed;
    right: 0; top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.fc-qa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    transition: background .2s, width .2s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fc-qa-btn:hover { background: #c1121f; color: #fff; width: 52px; }

/* ---- SECTIONS ---- */
.fc-section { padding: 70px 0; }
.fc-section-dark { background: var(--dark2); }
.fc-section-light { background: var(--dark3); }

.fc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.fc-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}

.fc-link-all {
    color: var(--primary);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: opacity .2s;
}
.fc-link-all:hover { opacity: .75; color: var(--primary); }

/* ---- FIXTURE CARDS ---- */
.fc-fixture-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}
.fc-fixture-card:hover { border-color: var(--primary); transform: translateY(-3px); }

.fc-fixture-comp {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.fc-fixture-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.fc-team-name {
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    flex: 1;
}

.fc-vs-badge {
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    margin: 0 10px;
}

.fc-fixture-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--text-muted);
    font-size: .75rem;
    margin-bottom: 14px;
}

.fc-btn-sm {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 3px;
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s, color .2s;
}
.fc-btn-sm:hover { background: var(--primary); color: #fff; }

/* ---- RESULT CARDS ---- */
.fc-result-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.fc-result-comp {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
    margin-bottom: 10px;
}

.fc-result-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.fc-result-team {
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
}

.fc-score {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
}

/* ---- NEWS CARDS ---- */
.fc-news-card {
    display: block;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    height: 100%;
    transition: border-color .2s, transform .2s;
}
.fc-news-card:hover { border-color: var(--primary); transform: translateY(-3px); }

.fc-news-card-img {
    width: 100%;
    height: 180px;
    background: var(--dark3) center/cover no-repeat;
}
.fc-news-card-featured .fc-news-card-img { height: 260px; }
.fc-news-card-img-placeholder { background: linear-gradient(135deg, var(--dark3), var(--primary) 200%); }

.fc-news-card-body { padding: 14px; }

.fc-news-card-date {
    display: block;
    color: var(--text-muted);
    font-size: .7rem;
    margin-bottom: 6px;
}

.fc-news-card-title {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
}

.fc-news-card-excerpt {
    color: var(--text-muted);
    font-size: .8rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- SPONSORS ---- */
.fc-sponsors {
    background: var(--dark);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.fc-sponsors-label {
    text-align: center;
    color: var(--text-muted);
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.fc-sponsors-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.fc-sponsor-item img {
    max-height: 50px;
    filter: grayscale(1) brightness(1.5);
    opacity: .5;
    transition: filter .3s, opacity .3s;
}
.fc-sponsor-item:hover img { filter: none; opacity: 1; }
.fc-sponsor-item span { color: var(--text-muted); font-weight: 700; }

/* ---- FOOTER ---- */
footer {
    background: #080a14 !important;
    border-top: 1px solid rgba(255,255,255,0.06);
}
footer a:hover { color: var(--primary) !important; }

/* ---- GENERAL PAGES ---- */
.fc-page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07) !important;
    color: #fff;
    transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: var(--primary) !important; }
.card-body { color: #fff; }
.text-muted { color: var(--text-muted) !important; }
.bg-light { background: var(--dark3) !important; }

.pagination .page-link { color: var(--primary); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .fc-countdown-bar { position: relative; bottom: auto; right: auto; width: 100%; justify-content: center; flex-wrap: wrap; }
    .fc-hero .container { padding-bottom: 20px; }
    .fc-hero-watermark { font-size: 60px; }
    .fc-quick-actions { display: none; }
}

@media (max-width: 576px) {
    .fc-hero-title { font-size: 2rem; }
    .fc-section { padding: 40px 0; }
}

/* ===== EXTENDED HOME SECTIONS ===== */

/* Stats Bar */
.fc-stats-bar {
    background: var(--primary);
    padding: 20px 0;
}
.fc-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.fc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 40px;
}
.fc-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.fc-stat-label {
    font-size: .7rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.fc-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
}

/* Squad Spotlight */
.fc-player-card {
    display: block;
    text-decoration: none;
    text-align: center;
    transition: transform .2s;
}
.fc-player-card:hover { transform: translateY(-4px); }

.fc-player-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(255,255,255,0.06) center/cover no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.2);
}
.fc-player-num {
    position: absolute;
    top: 8px; left: 10px;
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}
.fc-player-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.fc-player-name {
    display: block;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
}
.fc-player-pos {
    display: block;
    color: var(--primary);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Tickets CTA */
.fc-tickets-cta {
    background: linear-gradient(135deg, var(--dark) 0%, #2d0a0e 100%);
    padding: 70px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fc-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.fc-cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.fc-cta-title span { color: var(--primary); }
.fc-cta-sub {
    color: rgba(255,255,255,0.55);
    font-size: .9rem;
    max-width: 480px;
    margin: 0;
}
.fc-cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* Gallery Strip */
.fc-gallery-strip { overflow: hidden; background: rgba(255,255,255,0.04); }
.fc-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
}

.fc-gallery-marquee-wrap {
    overflow: hidden;
    height: 260px;
}

.fc-gallery-marquee-track {
    display: flex;
    animation: gallery-marquee 40s linear infinite;
    height: 100%;
}

.fc-gallery-marquee-item {
    flex-shrink: 0;
    width: 300px;
    height: 260px;
    background: #111 center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.fc-gallery-marquee-item .fc-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity .2s;
}

.fc-gallery-marquee-item:hover .fc-gallery-overlay {
    opacity: 1;
}

@keyframes gallery-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
    transition: opacity .2s;
}
.fc-gallery-item:hover .fc-gallery-overlay { opacity: 1; }
.fc-gallery-item:hover { transform: scale(1.03); z-index: 1; }

/* Shop Promo */
.fc-shop-promo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.fc-shop-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.fc-shop-sub {
    color: rgba(255,255,255,0.55);
    font-size: .9rem;
    max-width: 400px;
}
.fc-shop-promo-icons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.fc-shop-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.fc-shop-icon-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .fc-stats-row { gap: 10px; }
    .fc-stat-item { padding: 8px 20px; }
    .fc-stat-divider { display: none; }
    .fc-cta-inner { flex-direction: column; text-align: center; }
    .fc-cta-actions { justify-content: center; }
    .fc-gallery-grid { grid-template-columns: repeat(3, 1fr); height: 300px; }
    .fc-shop-promo { flex-direction: column; text-align: center; }
    .fc-shop-promo-icons { justify-content: center; }
}

/* ===== ANIMATIONS ===== */

/* Scroll reveal */
.fc-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.fc-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Countdown flip */
@keyframes cd-flip-anim {
    0%   { transform: translateY(-8px); opacity: 0; }
    100% { transform: translateY(0);    opacity: 1; }
}
.cd-flip { animation: cd-flip-anim .25s ease forwards; }

/* Hero content entrance */
@keyframes hero-slide-up {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fc-hero-welcome { animation: hero-slide-up .7s .1s both; }
.fc-hero-title   { animation: hero-slide-up .7s .25s both; }
.fc-hero-sub     { animation: hero-slide-up .7s .4s both; }
.fc-hero-content .d-flex { animation: hero-slide-up .7s .55s both; }

/* News sidebar entrance */
@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
.fc-news-sidebar .fc-news-item:nth-child(1) { animation: slide-in-right .6s .4s both; }
.fc-news-sidebar .fc-news-item:nth-child(2) { animation: slide-in-right .6s .55s both; }
.fc-news-sidebar .fc-news-item:nth-child(3) { animation: slide-in-right .6s .7s both; }

/* Countdown bar entrance */
@keyframes slide-up-bar {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fc-countdown-bar { animation: slide-up-bar .6s .8s both; }

/* Navbar scrolled state */
.fc-navbar-scrolled {
    padding: 4px 0 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4) !important;
    transition: padding .3s, box-shadow .3s;
}

/* Player card hover lift */
.fc-player-card { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.fc-player-card:hover { transform: translateY(-8px) scale(1.02); }

/* Fixture / result card pulse on hover */
.fc-fixture-card, .fc-result-card {
    transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .2s, box-shadow .3s;
}

/* Stats bar number pulse */
@keyframes stat-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.fc-stat-num.counted { animation: stat-pop .4s ease; }

/* Gallery item zoom */
.fc-gallery-item {
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    transform-origin: center;
}

/* Lightbox */
.fc-lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: background .3s;
}
.fc-lightbox-open { background: rgba(0,0,0,0.92); }
.fc-lightbox-inner {
    position: relative;
    max-width: 90vw; max-height: 90vh;
    transform: scale(0.85);
    opacity: 0;
    transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s;
}
.fc-lightbox-open .fc-lightbox-inner { transform: scale(1); opacity: 1; }
.fc-lightbox-inner img { max-width: 90vw; max-height: 85vh; border-radius: 6px; display: block; }
.fc-lightbox-close {
    position: absolute; top: -14px; right: -14px;
    width: 32px; height: 32px;
    background: var(--primary); color: #fff;
    border: none; border-radius: 50%;
    font-size: 1.1rem; cursor: pointer; line-height: 1;
    display: flex; align-items: center; justify-content: center;
}

/* Smooth section transitions */
.fc-section, .fc-stats-bar, .fc-tickets-cta, .fc-gallery-strip, .fc-sponsors {
    transition: background .3s;
}

/* CTA button pulse */
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(230,57,70,0); }
}
.fc-tickets-cta .fc-btn-primary { animation: btn-pulse 2.5s infinite; }

/* Quick action buttons bounce in */
@keyframes qa-bounce {
    0%   { opacity: 0; transform: translateX(20px); }
    60%  { transform: translateX(-4px); }
    100% { opacity: 1; transform: translateX(0); }
}
.fc-qa-btn:nth-child(1) { animation: qa-bounce .5s .5s both; }
.fc-qa-btn:nth-child(2) { animation: qa-bounce .5s .65s both; }
.fc-qa-btn:nth-child(3) { animation: qa-bounce .5s .8s both; }

/* Sponsor hover */
.fc-sponsor-item { transition: transform .2s; }
.fc-sponsor-item:hover { transform: scale(1.1); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ===== EXTRA ANIMATIONS ===== */

/* Scroll progress bar */
#fc-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: var(--primary);
    z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 8px var(--primary);
}

/* Page transition overlay */
#fc-page-overlay {
    position: fixed; inset: 0;
    background: var(--primary);
    z-index: 99999;
    transform: scaleY(1);
    transform-origin: top;
    transition: transform .32s cubic-bezier(.77,0,.18,1);
    pointer-events: none;
}
#fc-page-overlay.fc-overlay-out { transform: scaleY(0); transform-origin: bottom; }
#fc-page-overlay.fc-overlay-in  { transform: scaleY(1); transform-origin: top; }

/* Ripple */
.fc-ripple {
    position: absolute; border-radius: 50%;
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.5);
    transform: translate(-50%,-50%) scale(0);
    animation: ripple-anim .6s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: translate(-50%,-50%) scale(30); opacity: 0; }
}

/* Floating particles */
.fc-particle {
    position: absolute; border-radius: 50%;
    background: rgba(230,57,70,0.4);
    pointer-events: none;
    animation: particle-float linear infinite;
}
@keyframes particle-float {
    0%   { transform: translateY(0) scale(1); opacity: .6; }
    50%  { transform: translateY(-60px) scale(1.2); opacity: .3; }
    100% { transform: translateY(-120px) scale(0.8); opacity: 0; }
}

/* Section title underline draw */
.fc-section-title {
    position: relative;
    display: inline-block;
}
.fc-section-title::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    height: 3px; width: 0;
    background: var(--primary);
    transition: width .6s cubic-bezier(.22,1,.36,1);
    border-radius: 2px;
}
.fc-revealed .fc-section-title::after,
.fc-section-header.fc-revealed .fc-section-title::after { width: 50px; }

/* Sponsor marquee */
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.fc-sponsors-row {
    flex-wrap: nowrap !important;
    overflow: hidden;
    animation: marquee 20s linear infinite;
    width: max-content;
}

/* News card image zoom on hover */
.fc-news-card-img {
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.fc-news-card:hover .fc-news-card-img { transform: scale(1.05); }

/* Player card shimmer */
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}
.fc-player-img:not([style*="background-image"]) {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Fixture card VS badge bounce */
@keyframes vs-bounce {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.15); }
}
.fc-fixture-card:hover .fc-vs-badge { animation: vs-bounce .5s ease; }

/* Result score count-up flash */
@keyframes score-flash {
    0%,100% { opacity: 1; }
    50%      { opacity: .4; }
}
.fc-score { animation: score-flash 2s ease infinite; }

/* CTA section slide-in from sides */
.fc-cta-text    { animation: hero-slide-up .7s .1s both; }
.fc-cta-actions { animation: hero-slide-up .7s .3s both; }

/* Shop icon items stagger */
.fc-shop-icon-item:nth-child(1) { transition-delay: .05s; }
.fc-shop-icon-item:nth-child(2) { transition-delay: .1s; }
.fc-shop-icon-item:nth-child(3) { transition-delay: .15s; }
.fc-shop-icon-item:nth-child(4) { transition-delay: .2s; }

/* Gallery item stagger reveal */
.fc-gallery-item:nth-child(1) { animation-delay: .0s; }
.fc-gallery-item:nth-child(2) { animation-delay: .05s; }
.fc-gallery-item:nth-child(3) { animation-delay: .1s; }
.fc-gallery-item:nth-child(4) { animation-delay: .15s; }
.fc-gallery-item:nth-child(5) { animation-delay: .2s; }
.fc-gallery-item:nth-child(6) { animation-delay: .25s; }

/* Navbar link underline slide */
.fc-navbar .nav-link {
    position: relative;
}
.fc-navbar .nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 2px; background: var(--primary);
    transition: left .2s, right .2s;
}
.fc-navbar .nav-link:hover::after { left: 10%; right: 10%; }

@media (prefers-reduced-motion: reduce) {
    .fc-particle, #fc-progress, #fc-page-overlay { display: none; }
}

/* ===== MATRIX RAIN ===== */
#fc-matrix {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
}

/* ===== HERO MEDIA (image/video) ===== */
.fc-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.fc-hero-media img,
.fc-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Ensure overlay and content sit above media */
.fc-hero-overlay  { z-index: 1; }
.fc-hero-watermark { z-index: 2; }
.fc-hero .container { z-index: 3; }
.fc-quick-actions  { z-index: 4; }
#fc-matrix         { z-index: 1; }

/* ===== RESULTS TICKER BAR ===== */
.fc-ticker-bar {
    display: flex;
    align-items: stretch;
    background: var(--dark2, #13152a);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    height: 72px;
    position: relative;
    z-index: 99;
}

.fc-ticker-label {
    flex-shrink: 0;
    background: var(--primary);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 18px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
}

.fc-ticker-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.fc-ticker-track-wrap::before,
.fc-ticker-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.fc-ticker-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--dark2, #13152a), transparent); }
.fc-ticker-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--dark2, #13152a), transparent); }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.fc-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
    height: 72px;
}
.fc-ticker-track:hover { animation-play-state: paused; }

.fc-ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.07);
    height: 100%;
    transition: background .2s;
    white-space: nowrap;
}
.fc-ticker-item:hover { background: rgba(255,255,255,0.04); }

.fc-ticker-team-badge {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: .85rem;
    flex-shrink: 0;
}
.fc-ticker-team-badge-away {
    background: rgba(230,57,70,0.1);
    border-color: rgba(230,57,70,0.2);
    color: var(--primary);
}

.fc-ticker-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.fc-ticker-date {
    font-size: .62rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.fc-ticker-score-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-ticker-team {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-ticker-score {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary);
    min-width: 48px;
    text-align: center;
    line-height: 1;
}

.fc-ticker-comp {
    font-size: .6rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: .5px;
}

@media (max-width: 576px) {
    .fc-ticker-bar { height: 60px; }
    .fc-ticker-track { height: 60px; }
    .fc-ticker-label { padding: 0 12px; font-size: .6rem; }
    .fc-ticker-team-badge { width: 30px; height: 30px; font-size: .7rem; }
    .fc-ticker-score { font-size: 1rem; }
    .fc-ticker-team { font-size: .7rem; max-width: 70px; }
}

/* ===== PUBLIC GALLERY PAGE ===== */
.fc-gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fc-filter-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.fc-filter-btn:hover,
.fc-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.fc-gallery-pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.fc-gallery-pub-img {
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05) center/cover no-repeat;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.fc-gallery-pub-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0;
    transition: opacity .25s;
}
.fc-gallery-pub-img:hover .fc-gallery-pub-overlay { opacity: 1; }
.fc-gallery-pub-img:hover { transform: scale(1.02); transition: transform .3s cubic-bezier(.22,1,.36,1); }

.fc-gallery-pub-caption {
    font-size: .78rem;
    font-weight: 600;
    text-align: center;
    padding: 0 12px;
}

.fc-lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: .82rem;
    margin-top: 10px;
}

/* ===== PAGE LOADER (overrides rollup) ===== */
#fc-page-overlay {
    position: fixed !important; inset: 0 !important;
    background: #0d0f1a !important;
    z-index: 99999 !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    opacity: 1 !important;
    transform: none !important;
    transition: opacity .5s ease !important;
    pointer-events: all !important;
}
#fc-page-overlay.fc-overlay-out { opacity: 0 !important; pointer-events: none !important; }
#fc-page-overlay.fc-overlay-in  { opacity: 1 !important; pointer-events: all !important; }

.fc-loader-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.fc-loader-ball {
    width: 64px; height: 64px;
    background: #e63946;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #fff;
    animation: loader-spin .8s linear infinite;
    box-shadow: 0 0 32px rgba(230,57,70,0.6);
}
@keyframes loader-spin { to { transform: rotate(360deg); } }

.fc-loader-name {
    color: rgba(255,255,255,0.55);
    font-size: .72rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
}

.fc-loader-bar {
    width: 120px; height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px; overflow: hidden;
}
.fc-loader-bar-fill {
    height: 100%; background: #e63946; border-radius: 2px;
    animation: loader-bar 1.2s ease-in-out infinite;
}
@keyframes loader-bar {
    0%   { width: 0%;  margin-left: 0; }
    50%  { width: 70%; margin-left: 15%; }
    100% { width: 0%;  margin-left: 100%; }
}

/* Gallery pub grid — ensure items are always visible */
.fc-gallery-pub-item { opacity: 1 !important; transform: none !important; }
.fc-gallery-pub-img  { min-height: 200px; background-color: rgba(255,255,255,0.05); }

/* ===== GREEN/GOLD COLOUR OVERRIDES ===== */
.text-danger, .fc-hero-welcome, .fc-player-pos, .fc-news-card-date,
.fc-ticker-score, .ac-card-link { color: var(--gold) !important; }

.fc-vs-badge, .fc-btn-primary, .fc-ticker-label,
.fc-stats-bar, .fc-tickets-cta { background: var(--primary) !important; }

.fc-btn-primary { border-color: var(--primary) !important; }
.fc-btn-primary:hover { background: var(--primary-light) !important; border-color: var(--primary-light) !important; }

.fc-btn-sm { border-color: var(--primary) !important; color: var(--primary) !important; }
.fc-btn-sm:hover { background: var(--primary) !important; color: #fff !important; }

.fc-btn-outline { border-color: rgba(255,255,255,0.5) !important; }

.fc-section-header::after, #fc-progress { background: var(--gold) !important; }

.fc-fixture-card:hover { border-color: var(--primary) !important; }
.fc-result-card:hover  { border-left-color: var(--primary) !important; }
.fc-news-card:hover    { border-color: var(--primary) !important; }

.fc-qa-btn { background: var(--primary) !important; }
.fc-qa-btn:hover { background: var(--primary-light) !important; }

.fc-score { color: var(--gold) !important; }

.fc-logo-badge { background: var(--primary) !important; }
.navbar-brand .text-danger { color: var(--gold) !important; }

.fc-cta-title span { color: var(--gold) !important; }
.fc-shop-icon-item i { color: var(--gold) !important; }

.fc-gallery-overlay { background: rgba(26,92,42,0.6) !important; }

.fc-filter-btn.active, .fc-filter-btn:hover { background: var(--primary) !important; border-color: var(--primary) !important; }

.fc-loader-ball { background: var(--primary) !important; box-shadow: 0 0 32px rgba(26,92,42,0.6) !important; }
.fc-loader-bar-fill { background: var(--gold) !important; }

.btn-danger, .bg-danger { background: var(--primary) !important; border-color: var(--primary) !important; }
.btn-outline-danger { color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-outline-danger:hover { background: var(--primary) !important; color: #fff !important; }
.badge.bg-danger { background: var(--primary) !important; }

.fc-ticker-bar { background: var(--dark2) !important; border-bottom-color: var(--primary) !important; }
.fc-ticker-team-badge-away { background: rgba(26,92,42,0.15) !important; border-color: rgba(26,92,42,0.3) !important; color: var(--gold) !important; }

.fc-particle { background: rgba(245,197,24,0.4) !important; }

/* Matrix rain accent */

/* ===== GALLERY PAGE ===== */

/* Album tabs */
.gl-album-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 20px;
}
.gl-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    border-radius: 6px;
    padding: 8px 18px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gl-tab:hover { background: rgba(255,255,255,0.1); color: #fff; }
.gl-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.gl-tab-count {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: .68rem;
}
.gl-tab.active .gl-tab-count { background: rgba(255,255,255,0.25); }

/* Uniform grid */
.gl-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.gl-item {
    break-inside: unset;
    margin-bottom: 0;
}
.gl-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    display: block;
    aspect-ratio: 1 / 1;
}
.gl-thumb img,
.gl-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.gl-thumb:hover img,
.gl-thumb:hover video { transform: scale(1.05); }

.gl-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    pointer-events: none;
}

.gl-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity .25s;
}
.gl-thumb:hover .gl-item-overlay { opacity: 1; }

.gl-overlay-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.6rem;
    color: #fff;
}

.gl-item-title {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.3;
}
.gl-item-cat {
    color: var(--gold, #f5c518);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 2px;
}

/* Lightbox */
.gl-lightbox {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}
.gl-lightbox.gl-lb-open { opacity: 1; pointer-events: all; }

.gl-lb-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
}

.gl-lb-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw;
    transform: scale(0.92);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.gl-lightbox.gl-lb-open .gl-lb-content { transform: scale(1); }

.gl-lb-media { display: flex; align-items: center; justify-content: center; }

.gl-lb-close {
    position: fixed; top: 20px; right: 24px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff; font-size: 1.3rem;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 2;
}
.gl-lb-close:hover { background: var(--primary); border-color: var(--primary); }

.gl-lb-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff; font-size: 1rem;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 2;
}
.gl-lb-nav:hover { background: var(--primary); border-color: var(--primary); }
.gl-lb-prev { left: 16px; }
.gl-lb-next { right: 16px; }

.gl-lb-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 12px;
    padding: 0 4px;
}
.gl-lb-title { color: rgba(255,255,255,0.8); font-size: .85rem; font-weight: 600; }
.gl-lb-counter { color: rgba(255,255,255,0.4); font-size: .78rem; }

@media (max-width: 576px) {
    .gl-lb-prev { left: 6px; }
    .gl-lb-next { right: 6px; }
    .gl-lb-nav, .gl-lb-close { width: 36px; height: 36px; font-size: .9rem; }
}

/* ===== TRAINING SCHEDULE ===== */
.tr-week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.tr-day-col { display: flex; flex-direction: column; gap: 10px; }

.tr-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--primary);
    border-radius: 8px;
}
.tr-day-name {
    font-weight: 800;
    font-size: .85rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tr-day-count {
    font-size: .68rem;
    color: rgba(255,255,255,0.7);
}

.tr-sessions { display: flex; flex-direction: column; gap: 8px; }

.tr-session-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--gold, #f5c518);
    border-radius: 6px;
    padding: 12px 14px;
    transition: border-color .2s, transform .2s;
}
.tr-session-card:hover { border-left-color: var(--primary); transform: translateX(3px); }

.tr-session-time {
    font-size: .7rem;
    color: var(--gold, #f5c518);
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.tr-session-title {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.tr-session-group {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.tr-session-meta {
    font-size: .75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}
.tr-session-notes {
    font-size: .72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 6px;
}

@media (max-width: 576px) {
    .tr-week-grid { grid-template-columns: 1fr; }
}

/* ===== FINAL COLOUR PASS — GREEN/WHITE/GOLD ===== */
:root {
    --primary: #1a5c2a;
    --primary-light: #2a7a3a;
    --gold: #f5c518;
}
/* Yellow accents */
.fc-score, .fc-news-card-date, .fc-player-pos,
.fc-ticker-score, .fc-section-title span.text-danger,
.fc-cd-num, .tr-session-time, .gl-item-cat { color: #f5c518 !important; }

/* Green solids */
.fc-btn-primary, .fc-vs-badge, .fc-ticker-label,
.fc-stats-bar, .fc-qa-btn, .tr-day-header,
.tr-session-group, .fc-filter-btn.active { background: #1a5c2a !important; }

.fc-btn-primary:hover, .fc-qa-btn:hover { background: #2a7a3a !important; }

/* Yellow underline / bar */
.fc-section-title::after, #fc-progress, .fc-loader-bar-fill { background: #f5c518 !important; }
.fc-loader-ball { background: #1a5c2a !important; }

/* ===== SQUAD PAGE ===== */
.sq-position-block { margin-bottom: 48px; }

.sq-position-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.07);
    position: relative;
}
.sq-position-header::before {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 48px; height: 2px;
    background: #1a5c2a;
}
.sq-position-label {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.sq-position-count {
    background: #1a5c2a;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.sq-player-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .25s, border-color .2s, box-shadow .25s;
}
.sq-player-card:hover {
    transform: translateY(-5px);
    border-color: #1a5c2a;
    box-shadow: 0 12px 28px rgba(26,92,42,0.25);
}

.sq-player-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: rgba(255,255,255,0.05);
    overflow: hidden;
}
.sq-player-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .4s;
}
.sq-player-card:hover .sq-player-img img { transform: scale(1.05); }

.sq-player-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
    background: linear-gradient(180deg, rgba(26,92,42,0.15) 0%, rgba(0,0,0,0.3) 100%);
}

.sq-player-number {
    position: absolute;
    top: 8px; left: 10px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    pointer-events: none;
}

.sq-player-info {
    padding: 10px 12px;
    background: rgba(0,0,0,0.3);
}
.sq-player-name {
    display: block;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.sq-player-nat {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: .68rem;
}

/* ===== PLAYER PROFILE ===== */
.sq-profile-hero {
    background: linear-gradient(135deg, #0a0f0b 0%, #162019 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sq-profile-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    position: absolute;
    top: 0; right: 0;
    pointer-events: none;
}
.sq-stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}
.sq-stat-box .sq-stat-val {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #f5c518;
}
.sq-stat-box .sq-stat-lbl {
    display: block;
    font-size: .68rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 3px;
}

/* ===== NEWS PAGE ===== */

/* Featured card */
.news-featured-card { border-radius: 12px; overflow: hidden; display: block; border: 1px solid rgba(255,255,255,0.07); margin-bottom: 40px; }
.news-featured-img {
    position: relative;
    height: clamp(280px, 45vw, 480px);
    overflow: hidden;
}
.news-featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.news-featured-card:hover .news-featured-img img { transform: scale(1.04); }
.news-featured-placeholder {
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.15);
}
.news-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px;
}
.news-tag {
    display: inline-block;
    background: #1a5c2a;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    width: fit-content;
}
.news-featured-meta {
    display: flex; gap: 16px;
    color: rgba(255,255,255,0.5);
    font-size: .75rem;
    margin-bottom: 10px;
}
.news-featured-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}
.news-featured-excerpt {
    color: rgba(255,255,255,0.65);
    font-size: .88rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 0;
}

/* News grid cards */
.news-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s, border-color .2s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); border-color: #1a5c2a; box-shadow: 0 12px 28px rgba(26,92,42,0.2); }

.news-card-img {
    height: 200px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.12); }

.news-card-body { padding: 16px; flex-grow: 1; display: flex; flex-direction: column; }
.news-card-meta { display: flex; gap: 12px; color: rgba(255,255,255,0.4); font-size: .72rem; margin-bottom: 8px; }
.news-card-title { font-size: .95rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.news-card-excerpt { color: rgba(255,255,255,0.5); font-size: .8rem; line-height: 1.6; margin-bottom: 10px; flex-grow: 1; }
.news-read-more { color: #f5c518; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-top: auto; }

/* Article page */
.news-article-hero {
    position: relative;
    height: clamp(260px, 40vw, 460px);
    overflow: hidden;
}
.news-article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-article-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,15,10,0.95) 100%);
}

.news-article-meta {
    display: flex; gap: 16px;
    color: rgba(255,255,255,0.45);
    font-size: .78rem;
}
.news-article-title {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.news-article-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    border-left: 3px solid #1a5c2a;
    padding-left: 16px;
    margin-bottom: 24px;
}
.news-article-body {
    color: rgba(255,255,255,0.75);
    font-size: .95rem;
    line-height: 1.85;
}

/* Share buttons */
.news-share { display: flex; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.news-share-label { color: rgba(255,255,255,0.4); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
.news-share-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: .9rem;
    transition: background .2s, color .2s;
}
.news-share-btn:hover { background: #1a5c2a; color: #fff; border-color: #1a5c2a; }

/* Sidebar */
.news-sidebar-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 20px;
}
.news-sidebar-title {
    font-size: .75rem;
    font-weight: 800;
    color: #f5c518;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.news-sidebar-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: opacity .2s;
}
.news-sidebar-item:last-child { border-bottom: none; }
.news-sidebar-item:hover { opacity: .8; }
.news-sidebar-thumb {
    width: 64px; height: 64px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05) center/cover no-repeat;
    flex-shrink: 0;
}
.news-sidebar-thumb-empty { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); }
.news-sidebar-info { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.news-sidebar-item-title { color: #fff; font-size: .8rem; font-weight: 600; line-height: 1.4; }
.news-sidebar-item-date { color: rgba(255,255,255,0.4); font-size: .68rem; }

/* ===== LEADERSHIP PAGE ===== */
.ld-dept-block { margin-bottom: 52px; }

.ld-dept-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(255,255,255,0.07);
    position: relative;
}
.ld-dept-header::before {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 52px; height: 2px;
    background: #f5c518;
}
.ld-dept-icon {
    width: 36px; height: 36px;
    background: #1a5c2a;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .85rem;
    flex-shrink: 0;
}
.ld-dept-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ld-dept-count {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.ld-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform .25s, border-color .2s, box-shadow .25s;
}
.ld-card:hover {
    transform: translateY(-5px);
    border-color: #1a5c2a;
    box-shadow: 0 14px 32px rgba(26,92,42,0.2);
}

.ld-card-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}
.ld-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
    transition: transform .4s;
}
.ld-card:hover .ld-card-photo img { transform: scale(1.05); }

.ld-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(26,92,42,0.1) 0%, rgba(0,0,0,0.2) 100%);
}

.ld-card-dept-badge {
    position: absolute;
    bottom: 8px; left: 8px;
    background: #1a5c2a;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ld-card-body { padding: 14px; }

.ld-card-name {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.ld-card-role {
    display: block;
    font-size: .72rem;
    color: #f5c518;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.ld-card-bio {
    font-size: .78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 8px;
}
.ld-card-email {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color .2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ld-card-email:hover { color: #f5c518; }

/* ===== TICKETS & BOOKING ===== */

/* Success banner */
.tk-success-banner {
    background: #1a5c2a;
    padding: 20px 0;
    border-bottom: 3px solid #f5c518;
}
.tk-success-inner { display:flex; align-items:flex-start; gap:16px; }
.tk-success-icon { font-size:2rem; color:#f5c518; flex-shrink:0; margin-top:2px; }
.tk-success-title { color:#fff; font-weight:800; font-size:1rem; margin:0 0 4px; }
.tk-success-msg { color:rgba(255,255,255,0.8); font-size:.85rem; margin:0; line-height:1.6; }
.tk-ref { color:#f5c518; font-family:monospace; font-size:1rem; }

/* Match block */
.tk-match-block { }
.tk-match-header {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid #1a5c2a;
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.tk-match-teams { display:flex; align-items:center; gap:12px; flex:1; min-width:200px; }
.tk-team { font-size:1rem; font-weight:800; color:#fff; }
.tk-vs { background:#1a5c2a; color:#fff; font-size:.65rem; font-weight:800; padding:3px 8px; border-radius:3px; }
.tk-match-meta { display:flex; flex-wrap:wrap; gap:12px; color:rgba(255,255,255,0.45); font-size:.75rem; }
.tk-seats-left { background:rgba(245,197,24,0.15); color:#f5c518; font-size:.72rem; font-weight:700; padding:4px 12px; border-radius:20px; border:1px solid rgba(245,197,24,0.3); white-space:nowrap; }
.tk-sold-out { background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.3); font-size:.72rem; font-weight:700; padding:4px 12px; border-radius:20px; }

/* Ticket card */
.tk-ticket-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: border-color .2s, transform .2s;
    position: relative;
}
.tk-ticket-card:hover:not(.tk-ticket-sold) { border-color:#1a5c2a; transform:translateY(-3px); }
.tk-ticket-sold { opacity: .5; }

.tk-ticket-tear {
    height: 4px;
    background: repeating-linear-gradient(90deg, #1a5c2a 0, #1a5c2a 8px, transparent 8px, transparent 14px);
}
.tk-ticket-body { padding: 18px; }
.tk-ticket-cat { display:block; font-size:.7rem; font-weight:700; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; }
.tk-ticket-price { font-size:1.6rem; font-weight:900; color:#f5c518; line-height:1; margin-bottom:12px; }
.tk-ticket-avail { margin-bottom:4px; }
.tk-avail-bar { height:4px; background:rgba(255,255,255,0.08); border-radius:2px; margin-bottom:4px; overflow:hidden; }
.tk-avail-fill { height:100%; background:#1a5c2a; border-radius:2px; transition:width .3s; }
.tk-ticket-avail span { font-size:.7rem; color:rgba(255,255,255,0.4); }

/* Booking modal */
.tk-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; opacity: 0;
    transition: opacity .3s;
}
.tk-modal.tk-modal-open { opacity:1; pointer-events:all; }

.tk-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
}

.tk-modal-box {
    position: relative; z-index: 1;
    background: #0f1a12;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid #1a5c2a;
    border-radius: 12px;
    padding: 28px;
    width: 100%; max-width: 520px;
    max-height: 90vh; overflow-y: auto;
    transform: scale(0.92) translateY(20px);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.tk-modal.tk-modal-open .tk-modal-box { transform: scale(1) translateY(0); }

.tk-modal-close {
    position: absolute; top:14px; right:16px;
    width:32px; height:32px; border-radius:50%;
    background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
    color:#fff; font-size:1.1rem; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s;
}
.tk-modal-close:hover { background:#1a5c2a; }

.tk-modal-title { color:#fff; font-size:1.1rem; font-weight:800; margin-bottom:16px; }

.tk-modal-summary {
    background: rgba(26,92,42,0.12);
    border: 1px solid rgba(26,92,42,0.25);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}
.tk-modal-match { font-size:.95rem; font-weight:700; color:#fff; margin-bottom:4px; }
.tk-modal-detail { display:flex; gap:16px; font-size:.75rem; color:rgba(255,255,255,0.5); }

.tk-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.tk-form-group { display:flex; flex-direction:column; gap:5px; }
.tk-form-full { grid-column:1/-1; }
.tk-form-group label { font-size:.78rem; color:rgba(255,255,255,0.65); font-weight:600; }

.tk-price-summary {
    display: flex; justify-content:space-between; align-items:center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
    font-size: .85rem;
    font-weight: 600;
}
.tk-total-price { font-size:1.2rem; font-weight:900; color:#f5c518; }

@media (max-width:480px) {
    .tk-form-grid { grid-template-columns:1fr; }
    .tk-modal-box { padding:20px; margin:12px; }
}

/* ===== FOOTER ===== */
.fc-footer {
    background: #060d07;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 0;
}

/* Partners strip */
.fc-footer-partners {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}
.fc-footer-partners-label {
    font-size: .65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.fc-footer-partners-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.fc-footer-partner {
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    opacity: .55;
}
.fc-footer-partner:hover { opacity: 1; transform: scale(1.05); }
.fc-footer-partner img { max-height: 36px; filter: grayscale(1) brightness(2); }
.fc-footer-partner span {
    color: rgba(255,255,255,0.5);
    font-size: .78rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 4px 12px;
    border-radius: 4px;
    display: block;
    transition: border-color .2s, color .2s;
}
.fc-footer-partner:hover span { border-color: #1a5c2a; color: #fff; }

/* Brand */
.fc-footer-brand { }
.fc-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.fc-footer-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.fc-footer-tagline {
    color: rgba(255,255,255,0.4);
    font-size: .82rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.fc-footer-social { display: flex; gap: 8px; }
.fc-footer-social-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: .85rem;
    transition: background .2s, color .2s, border-color .2s;
}
.fc-footer-social-btn:hover { background: #1a5c2a; color: #fff; border-color: #1a5c2a; }

/* Links */
.fc-footer-heading {
    font-size: .68rem;
    font-weight: 700;
    color: #f5c518;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.fc-footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.fc-footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: .82rem;
    transition: color .2s, padding-left .2s;
}
.fc-footer-links a:hover { color: #fff; padding-left: 4px; }

/* Contact */
.fc-footer-contact {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.fc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: .82rem;
}
.fc-footer-contact i { color: #1a5c2a; margin-top: 2px; flex-shrink: 0; }
.fc-footer-contact a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.fc-footer-contact a:hover { color: #fff; }

/* Bottom bar */
.fc-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.25);
    font-size: .75rem;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== FOOTER REBUILD ===== */
.fc-footer { background: #060d07; border-top: 3px solid #1a5c2a; }

.fc-footer-main { padding: 56px 0 40px; }

.fc-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: .82rem;
    text-decoration: none;
    line-height: 1.5;
    transition: color .2s;
}
.fc-footer-contact-item:hover { color: #fff; }
.fc-footer-contact-icon {
    width: 28px; height: 28px;
    background: rgba(26,92,42,0.2);
    border: 1px solid rgba(26,92,42,0.3);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #1a5c2a;
    font-size: .75rem;
    flex-shrink: 0;
}

.fc-footer-social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: .85rem;
    transition: background .2s, color .2s, border-color .2s;
}
.fc-footer-social-btn:hover { background: #1a5c2a; color: #fff; border-color: #1a5c2a; }

.fc-footer-heading {
    font-size: .65rem;
    font-weight: 700;
    color: #f5c518;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fc-footer-nav {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.fc-footer-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: .83rem;
    transition: color .2s, padding-left .2s;
    display: flex; align-items: center; gap: 6px;
}
.fc-footer-nav a::before {
    content: '';
    width: 0; height: 2px;
    background: #1a5c2a;
    transition: width .2s;
    border-radius: 1px;
}
.fc-footer-nav a:hover { color: #fff; padding-left: 4px; }
.fc-footer-nav a:hover::before { width: 12px; }

.fc-footer-partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fc-footer-partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 6px 14px;
    color: rgba(255,255,255,0.55);
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}
.fc-footer-partner-pill:hover {
    background: rgba(26,92,42,0.2);
    border-color: #1a5c2a;
    color: #fff;
}

.fc-footer-bottom {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
}
.fc-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255,255,255,0.25);
    font-size: .75rem;
}

/* ===== FOOTER PARTNERS MARQUEE ===== */
.fc-footer-marquee-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    height: 52px;
}
.fc-footer-marquee-label {
    flex-shrink: 0;
    background: #1a5c2a;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.fc-footer-marquee-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.fc-footer-marquee-track-wrap::before,
.fc-footer-marquee-track-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 40px; z-index: 2; pointer-events: none;
}
.fc-footer-marquee-track-wrap::before { left: 0; background: linear-gradient(to right, #060d07, transparent); }
.fc-footer-marquee-track-wrap::after  { right: 0; background: linear-gradient(to left, #060d07, transparent); }

@keyframes footer-marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

.fc-footer-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: footer-marquee 18s linear infinite;
    height: 52px;
}
.fc-footer-marquee-track:hover { animation-play-state: paused; }

.fc-footer-marquee-item {
    display: flex;
    align-items: center;
    padding: 0 28px;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.06);
    height: 100%;
    transition: background .2s;
    white-space: nowrap;
}
.fc-footer-marquee-item:hover { background: rgba(26,92,42,0.1); }
.fc-footer-marquee-item img { max-height: 24px; filter: grayscale(1) brightness(2); opacity: .5; transition: opacity .2s; }
.fc-footer-marquee-item:hover img { opacity: 1; filter: none; }
.fc-footer-marquee-item span {
    color: rgba(255,255,255,0.45);
    font-size: .78rem;
    font-weight: 700;
    transition: color .2s;
}
.fc-footer-marquee-item:hover span { color: #fff; }

/* ===== PARTNERS MARQUEE (home page) ===== */
.fc-partners-marquee-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    height: 56px;
}
.fc-partners-marquee-label {
    flex-shrink: 0;
    background: #1a5c2a;
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.fc-partners-marquee-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.fc-partners-marquee-track-wrap::before,
.fc-partners-marquee-track-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 50px; z-index: 2; pointer-events: none;
}
.fc-partners-marquee-track-wrap::before { left: 0; background: linear-gradient(to right, var(--dark2, #13152a), transparent); }
.fc-partners-marquee-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--dark2, #13152a), transparent); }

@keyframes partners-scroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

.fc-partners-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partners-scroll 20s linear infinite;
    height: 56px;
}
.fc-partners-marquee-track:hover { animation-play-state: paused; }

.fc-partners-marquee-item {
    display: flex;
    align-items: center;
    padding: 0 32px;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.06);
    height: 100%;
    transition: background .2s;
    white-space: nowrap;
}
.fc-partners-marquee-item:hover { background: rgba(26,92,42,0.12); }
.fc-partners-marquee-item img {
    max-height: 26px;
    filter: grayscale(1) brightness(2);
    opacity: .5;
    transition: opacity .2s, filter .2s;
}
.fc-partners-marquee-item:hover img { opacity: 1; filter: none; }
.fc-partners-marquee-item span {
    color: rgba(255,255,255,0.5);
    font-size: .82rem;
    font-weight: 700;
    transition: color .2s;
}
.fc-partners-marquee-item:hover span { color: #fff; }


/* ===== FIXTURES PAGE ===== */
.fixture-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: transform .25s, border-color .2s, box-shadow .25s;
}
.fixture-card:hover { transform: translateY(-4px); border-color: #1a5c2a; box-shadow: 0 12px 28px rgba(26,92,42,0.2); }

.fixture-date {
    font-size: .72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.fixture-time {
    font-size: .95rem;
    font-weight: 700;
    color: #f5c518;
    margin-bottom: 12px;
}

.fixture-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.fixture-team {
    flex: 1;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    word-break: break-word;
}

.fixture-vs {
    font-size: .7rem;
    color: #1a5c2a;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.fixture-venue {
    font-size: .75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fixture-competition {
    display: inline-block;
    background: rgba(26,92,42,0.2);
    color: #1a5c2a;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.result-card {
    display: block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: transform .25s, border-color .2s, box-shadow .25s;
}
.result-card:hover { transform: translateY(-4px); border-color: #1a5c2a; box-shadow: 0 12px 28px rgba(26,92,42,0.2); }

.result-date {
    font-size: .72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.result-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.result-team {
    flex: 1;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    word-break: break-word;
}

.result-score {
    font-size: 1.3rem;
    font-weight: 900;
    color: #f5c518;
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
}

.result-competition {
    display: inline-block;
    background: rgba(26,92,42,0.2);
    color: #1a5c2a;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}


/* ===== REGISTRATION & TOURNAMENT PROMO ===== */
.fc-promo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s, border-color .2s, box-shadow .25s;
}
.fc-promo-card:hover {
    transform: translateY(-4px);
    border-color: #1a5c2a;
    box-shadow: 0 12px 28px rgba(26,92,42,0.2);
}

.fc-promo-icon {
    font-size: 3rem;
    color: #1a5c2a;
    margin-bottom: 16px;
}

.fc-promo-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.fc-promo-description {
    color: rgba(255,255,255,0.6);
    font-size: .9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.fc-promo-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fc-promo-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: #f5c518;
    line-height: 1;
}

.fc-promo-period {
    font-size: .75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
}

.fc-promo-registration .fc-promo-icon { color: #1a5c2a; }
.fc-promo-tournament .fc-promo-icon { color: #f5c518; }

.fc-promo-card .btn {
    margin-top: auto;
}

.fc-payment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fc-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fc-payment-label {
    font-size: .7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.fc-payment-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a5c2a;
    font-family: 'Courier New', monospace;
}


/* ===== REGISTRATION MODAL ===== */
.fc-modal-content {
    background: #1a5c2a;
    border: 2px solid #1a5c2a;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.fc-modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    background: #1a5c2a;
}

.fc-modal-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.fc-modal-body {
    padding: 20px;
    background: #1a5c2a;
}

.fc-modal-footer {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 14px 20px;
    gap: 12px;
    background: #1a5c2a;
}

.fc-registration-info {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 16px;
}

.fc-registration-subtitle {
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.fc-registration-text {
    color: rgba(255,255,255,0.9);
    font-size: .85rem;
    margin-bottom: 10px;
}

.fc-price-highlight {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.fc-payment-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fc-payment-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(255,255,255,0.15);
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}

.fc-payment-info-label {
    font-size: .65rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
}

.fc-payment-info-value {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.fc-form-label {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 6px;
}

.fc-form-control {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #333;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: .85rem;
}

.fc-form-control::placeholder {
    color: #999;
}

.fc-form-control:focus {
    background: #fff;
    border-color: #1a5c2a;
    color: #333;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.fc-form-control option {
    background: #fff;
    color: #333;
}

.fc-registration-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 12px;
    margin-top: 16px;
}

.fc-total-label {
    font-size: .8rem;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}

.fc-total-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
}

.modal-backdrop {
    background: rgba(0,0,0,0.7);
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

.fc-contact-info {
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.fc-contact-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: opacity .2s;
}

.fc-contact-link:hover {
    opacity: 0.8;
}
