@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/public/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
        U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/public/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
        U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
        U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/public/fonts/bebas-neue-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
        U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/public/fonts/bebas-neue-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
        U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
        U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter Fallback';
    src: local('Arial');
    size-adjust: 107%;
    ascent-override: 90%;
    descent-override: 22.5%;
    line-gap-override: 0%;
}

:root {
    --fb-red: #ff3126;
    --fb-red-dark: #b81a0f;
    --fb-red-btn: #e01f12;
    --fb-red-btn-hover: #ff3a30;
    --fb-red-link: #ff6f66;
    --fb-red-glow: rgba(255, 49, 38, 0.4);

    --color-mma: #ff3126;
    --color-grappling: #00b4d8;
    --color-jjb: #a855f7;
    --color-fitness: #10b981;

    --bg-primary: #080808;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1e1e1e;

    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #a3b0c2;

    --border-primary: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.2);
    --border-accent: rgba(255, 49, 38, 0.4);
    --glass-bg: #0d0d0d;

    --font-primary: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;

    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 4px 16px rgba(0, 0, 0, 0.3);

    --header-height: 76px;
    --bottom-nav-height: 64px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1.2rem);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 1rem);
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }

p {
    color: var(--text-secondary);
}

.lead {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.7;
}

a {
    color: var(--fb-red-link);
    text-underline-offset: 0.2em;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #ff9b95;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.section-rule {
    border: 0;
    border-top: 1px solid var(--border-primary);
    opacity: 1;
    margin: 0;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fb-red);
    margin-bottom: 0.4rem;
}

.prose {
    max-width: 64ch;
}

@media (min-width: 768px) {
    .prose,
    .fighter-bio {
        text-align: justify;
        hyphens: auto;
    }
}

.text-gradient-red {
    color: var(--fb-red);
}

.hero-brand .text-gradient-red {
    background: linear-gradient(90deg, #ff3126, #ff7a70);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skip-link {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -120%);
    z-index: 2000;
    background: var(--fb-red-btn);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translate(-50%, 0);
    color: #fff;
}

:where(a, button, [tabindex]):focus-visible {
    outline: 2px solid var(--fb-red);
    outline-offset: 3px;
    border-radius: 2px;
}

.lead-readable {
    max-width: 44rem;
    margin-inline: auto;
}

.lead-readable-sm {
    max-width: 36rem;
    margin-inline: auto;
}

.lead-readable-lg {
    max-width: 48rem;
    margin-inline: auto;
}

/* --- Boutons --- */
.btn-fb,
.btn-outline-light {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-fb {
    background-color: var(--fb-red-btn);
    border-color: var(--fb-red-btn);
    color: #fff;
}

.btn-fb:hover,
.btn-fb:focus {
    background-color: var(--fb-red-btn-hover);
    border-color: var(--fb-red-btn-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-light {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-fb.btn-lg,
.btn-outline-light.btn-lg {
    padding: 0.85rem 2.2rem;
    font-size: 1.25rem;
}

.btn-fb.btn-sm,
.btn-outline-light.btn-sm {
    padding: 0.4rem 1.1rem;
    font-size: 0.95rem;
}

.btn-equal {
    min-width: 240px;
}

@media (max-width: 575.98px) {
    .btn-equal {
        width: 100%;
        min-width: 0;
    }
}

/* --- Header & Navigation Desktop --- */
.site-header {
    background-color: #0c0c0c;
    border-bottom: 1px solid var(--border-primary);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

#logo-header {
    height: 52px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.8rem 1.1rem;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--fb-red);
}

.navbar-nav .nav-link.active {
    color: var(--fb-red);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.2rem;
    left: 20%;
    width: 60%;
    height: 3px;
    background-color: var(--fb-red);
    border-radius: 2px;
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    height: 24px;
    width: 28px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    background-color: #fff;
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-toggler-icon::before { top: 2px; }
.navbar-toggler-icon::after  { bottom: 2px; }

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--bg-elevated);
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-primary);
        box-shadow: var(--shadow-card);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0.5rem;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .navbar-nav .nav-link.active {
        border-left: 3px solid var(--fb-red);
        padding-left: 0.85rem;
    }

    .nav-buttons {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }

    .nav-buttons .btn {
        width: 100%;
    }
}

/* --- Bottom Sticky Navigation (Mobile Only) --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 10px calc(6px + env(safe-area-inset-bottom, 0px));
}

.bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
    gap: 4px;
}

.bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    min-width: 52px;
    transition: color var(--transition-fast);
}

.bottom-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
}

.bottom-nav-label {
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 2px;
}

.bottom-nav-link:hover,
.bottom-nav-link.is-active {
    color: var(--fb-red);
}

.bottom-nav-cta {
    background: var(--fb-red-btn);
    color: #fff !important;
    font-family: var(--font-accent);
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 0 12px var(--fb-red-glow);
    white-space: nowrap;
    transition: background-color var(--transition-fast);
}

.bottom-nav-cta:hover {
    background: var(--fb-red-btn-hover);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: clamp(3.5rem, 8vw, 6.5rem);
    padding-bottom: clamp(3rem, 7vw, 5.5rem);
    background-color: #060606;
    background-image: image-set(
        url('/public/img/hero-samba-1920.webp') type('image/webp'),
        url('/public/img/hero-samba-1920.jpg') type('image/jpeg'));
    background-position: center 25%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (max-width: 900px) {
    .hero-section {
        background-image: image-set(
            url('/public/img/hero-samba-1280.webp') type('image/webp'),
            url('/public/img/hero-samba-1280.jpg') type('image/jpeg'));
    }
}

@media (max-width: 560px) {
    .hero-section {
        background-image: image-set(
            url('/public/img/hero-samba-800.webp') type('image/webp'),
            url('/public/img/hero-samba-800.jpg') type('image/jpeg'));
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(6, 6, 6, 0.94) 0%, rgba(6, 6, 6, 0.8) 45%, rgba(6, 6, 6, 0.35) 100%),
        linear-gradient(to top, rgba(6, 6, 6, 0.95) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 48rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 49, 38, 0.12);
    border: 1px solid var(--border-accent);
    color: #ff9b95;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.hero-badge-icon {
    color: var(--fb-red);
}

.hero-h1 {
    margin-bottom: 1rem;
}

.hero-brand {
    display: block;
    font-size: clamp(2.8rem, 7.5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: 1.5px;
}

.hero-kicker {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3.2vw, 1.7rem);
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-top: 0.4rem;
}

.hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 40rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-desc strong {
    color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 767.98px) {
    .hero-bg-overlay {
        background: linear-gradient(180deg, rgba(6, 6, 6, 0.85) 0%, rgba(6, 6, 6, 0.92) 100%);
    }

    .hero-content {
        text-align: center;
        margin-inline: auto;
    }

    .hero-desc {
        margin-inline: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* --- Stats Bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.2rem 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    line-height: 1;
    color: var(--fb-red);
    margin-bottom: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 575.98px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.5rem;
    }
}
/* --- Bandeau Rentrée --- */
.rentree-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 49, 38, 0.1), rgba(255, 122, 112, 0.06));
    border: 1px solid var(--border-accent);
    border-left: 4px solid var(--fb-red);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}


.rentree-banner-content {
    flex: 1;
}

.rentree-banner-title {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--fb-red);
    margin-bottom: 0.25rem;
}

.rentree-banner-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}

.rentree-banner-text strong {
    color: #fff;
}

/* --- Today Widget --- */
.today-widget-wrap {
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.today-widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-card);
}

.today-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.today-widget-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-accent);
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--fb-red);
}

.today-widget-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fb-red-link);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.today-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.today-chip {
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-left: 4px solid var(--chip-color, var(--fb-red));
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
}

.today-chip[data-discipline="mma"] { --chip-color: var(--color-mma); }
.today-chip[data-discipline="grappling"] { --chip-color: var(--color-grappling); }
.today-chip[data-discipline="jjb"] { --chip-color: var(--color-jjb); }
.today-chip[data-discipline="fitness"] { --chip-color: var(--color-fitness); }

.today-chip-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.today-chip-name {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.today-chip-time {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.today-chip-venue {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Discipline Cards --- */
.discipline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.discipline-card:hover {
    border-color: var(--border-strong);
}

.discipline-mma { border-top: 3px solid var(--color-mma); }
.discipline-grappling { border-top: 3px solid var(--color-grappling); }
.discipline-jjb { border-top: 3px solid var(--color-jjb); }
.discipline-fitness { border-top: 3px solid var(--color-fitness); }

.discipline-mma:hover { border-color: var(--color-mma); }
.discipline-grappling:hover { border-color: var(--color-grappling); }
.discipline-jjb:hover { border-color: var(--color-jjb); }
.discipline-fitness:hover { border-color: var(--color-fitness); }

.discipline-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.discipline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discipline-tag-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.mma-badge { background: var(--color-mma); }
.grappling-badge { background: var(--color-grappling); }
.jjb-badge { background: var(--color-jjb); }
.fitness-badge { background: var(--color-fitness); }

.discipline-body {
    padding: 1.25rem;
}

.discipline-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.discipline-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.discipline-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.discipline-meta li {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.discipline-meta li svg {
    color: var(--fb-red);
}

/* --- Highlight Images & Pills --- */
.highlight-card-img {
    border: 1px solid var(--border-primary);
    transition: border-color var(--transition-normal);
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-pill svg {
    color: var(--fb-red);
}

.coach-quote {
    background: var(--bg-elevated);
    border-left: 3px solid var(--fb-red);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.coach-quote p {
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
}

/* --- Fighter Cards --- */
.fighter-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.fighter-card:hover {
    border-color: var(--fb-red);
    color: inherit;
}

.fighter-card-img-container {
    position: relative;
    overflow: hidden;
}

.fighter-card-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.fighter-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid var(--border-accent);
    color: var(--fb-red);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-sm);
}

.fighter-card-body {
    padding: 1.25rem;
    text-align: center;
}

.fighter-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    transition: color var(--transition-fast);
}

.fighter-card:hover .fighter-card-body h3 {
    color: var(--fb-red);
}

.fighter-card-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}

.fighter-mini-stats {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.stat-pill {
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stat-pill strong {
    color: var(--fb-red);
}

.fighter-record {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(110px, 100%), 1fr));
    gap: 0.75rem;
    margin: 0 0 1.75rem;
    padding: 0;
}

.fighter-record-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.5rem;
    text-align: center;
}

.fighter-record dt {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.fighter-record dd {
    font-family: var(--font-accent);
    font-size: 1.9rem;
    color: var(--fb-red);
    margin: 0.15rem 0 0;
}

/* --- Cards Standard --- */
.card {
    background-color: var(--bg-card);
    border-color: var(--border-primary);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.card-header {
    background-color: rgba(255, 255, 255, 0.03);
    border-bottom-color: var(--border-primary);
    padding: 1.1rem 1.25rem;
}

.venue-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.venue-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.venue-card .card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-primary);
    padding: 1.25rem 1.5rem;
}

.venue-card .card-footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-primary);
    padding: 0.85rem 1.25rem;
}

.venue-card h2,
.venue-card h3 {
    font-family: var(--font-accent);
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 0.25rem;
}

.venue-card .card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.venue-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    border-radius: 50rem;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.venue-pill:hover {
    background: rgba(255, 49, 38, 0.12);
    border-color: var(--fb-red);
    color: #fff;
}

.venue-address {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    font-size: 0.88rem;
    margin: 0;
    color: var(--text-muted);
}

.venue-address a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.venue-address a:hover {
    color: var(--fb-red-link);
}

/* --- Pricing Cards --- */
.pricing-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem 1.75rem;
    text-align: center;
    position: relative;
    transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--fb-red);
}

.pricing-card-featured {
    border-color: var(--fb-red);
}

.pricing-badge {
    display: none;
}

.pricing-card-head h2 {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pricing-amount span {
    font-size: 3.4rem;
    color: var(--fb-red);
    line-height: 1;
}

.pricing-amount small {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 0.3rem;
}

.pricing-rhythm {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.65rem 0 0.65rem 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fb-red);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features span {
    display: block;
    font-weight: 400;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- Reassurance Banner & Discounts --- */
.reassurance-banner {
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.reassurance-item {
    padding: 0.5rem;
}

.reassurance-icon {
    color: var(--fb-red);
    margin-bottom: 0.75rem;
}

.reassurance-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.reassurance-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.discount-card {
    background: var(--bg-card);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.discount-card:hover {
    border-color: var(--fb-red);
    transform: translateY(-4px);
}

.discount-code {
    display: inline-block;
    background: rgba(255, 49, 38, 0.15);
    border: 1px solid var(--border-accent);
    color: #ff8078;
    font-family: var(--font-accent);
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.discount-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.discount-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Custom Accordion (FAQ) --- */
.custom-accordion .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background-color: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 1.1rem 1.25rem;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-elevated);
    color: var(--fb-red);
    border-bottom: 1px solid var(--border-primary);
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
}

.custom-accordion .accordion-body {
    background-color: var(--bg-elevated);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 1.25rem;
}

/* --- Schedule Table & Day Switcher --- */
.schedule-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    align-items: flex-start;
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}

.schedule-filters fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.schedule-filters legend {
    float: none;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    width: auto;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.95rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-chip:hover {
    border-color: var(--fb-red);
    color: var(--text-primary);
}

.filter-chip.is-active {
    background: var(--fb-red-btn);
    border-color: var(--fb-red-btn);
    color: #fff;
}

.schedule-filter-status {
    flex-basis: 100%;
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    min-height: 1.2em;
}

.schedule-day-nav {
    display: none;
    gap: 0.25rem;
    margin: 0 0 1rem;
    padding: 0.3rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    overflow-x: auto;
    scrollbar-width: none;
}

.schedule-day-nav::-webkit-scrollbar {
    display: none;
}

.day-nav-btn {
    flex: 1 1 0;
    min-width: max-content;
    border: 0;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-accent);
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.55rem 0.4rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.day-nav-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.day-nav-btn.is-active {
    background: var(--fb-red-btn);
    color: #fff;
}

.day-nav-full {
    display: none;
}

.is-col-hidden {
    display: none;
}

.schedule-table-wrap {
    margin-top: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
}

.schedule-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    table-layout: fixed;
}

.schedule-table th,
.schedule-table td {
    border-right: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    vertical-align: top;
}

.schedule-table th:last-child,
.schedule-table td:last-child {
    border-right: none;
}

.schedule-table tbody tr:last-child th,
.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table thead th {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.9rem 0.75rem;
    font-size: 1.15rem;
    text-align: center;
    white-space: nowrap;
}

.schedule-table tbody td {
    padding: 0.45rem;
    width: calc((100% - 92px) / 7);
}

.schedule-hour {
    width: 92px;
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--bg-elevated);
    padding: 0.9rem 0.75rem;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: var(--fb-red);
    font-variant-numeric: tabular-nums;
}

.schedule-table thead .schedule-hour {
    z-index: 2;
    color: var(--text-muted);
}

.session-chip {
    --chip-accent: var(--fb-red);
    display: grid;
    gap: 0.15rem;
    padding: 0.6rem 0.65rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--chip-accent);
    background: color-mix(in srgb, var(--chip-accent) 14%, transparent);
    transition: background-color var(--transition-fast);
}

.session-chip[hidden],
.schedule-table tr[hidden] {
    display: none;
}

.session-chip + .session-chip {
    margin-top: 0.45rem;
}

.session-chip:hover {
    background: color-mix(in srgb, var(--chip-accent) 26%, transparent);
}

.session-chip[data-discipline="grappling"] {
    --chip-accent: var(--color-grappling);
}

.session-chip[data-discipline="jjb"] {
    --chip-accent: var(--color-jjb);
}

.session-chip[data-discipline="fitness"] {
    --chip-accent: var(--color-fitness);
}

.session-chip-name {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.15;
}

.session-chip-time {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.session-chip-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    justify-self: start;
}

.session-chip-loc:hover {
    color: var(--fb-red-link);
    text-decoration: underline;
}

.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.schedule-legend li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.schedule-legend li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: var(--fb-red);
}

.schedule-legend li[data-discipline="grappling"]::before { background: var(--color-grappling); }
.schedule-legend li[data-discipline="jjb"]::before { background: var(--color-jjb); }
.schedule-legend li[data-discipline="fitness"]::before { background: var(--color-fitness); }

@media (max-width: 991.98px) {
    .schedule-filters {
        display: none;
    }

    .schedule-day-nav {
        display: flex;
        margin-top: 1.5rem;
    }

    .schedule-table-wrap {
        margin-top: 0;
    }

    .schedule-table {
        min-width: 0;
    }

    .schedule-table thead th {
        font-size: 1.05rem;
        padding: 0.75rem 0.5rem;
    }

    .schedule-hour {
        width: 72px;
        padding: 0.75rem 0.4rem;
        font-size: 1rem;
    }

    .schedule-table tbody td {
        padding: 0.4rem;
        width: auto;
    }

    .session-chip {
        padding: 0.55rem 0.6rem;
    }
}

@media (max-width: 399.98px) {
    .day-nav-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.15rem;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .day-nav-full {
        display: inline;
    }

    .day-nav-short {
        display: none;
    }
}

/* --- Final CTA Card --- */
.final-cta-section {
    padding-inline: 0.5rem;
}

.final-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
}

.final-cta-card h2 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 0.75rem;
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border-primary);
    padding-top: 2.5rem;
    margin-top: 3rem;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--fb-red-link);
}

.footer-rule {
    border: 0;
    border-top: 1px solid var(--border-primary);
    opacity: 1;
    margin: 2rem 0 1.5rem;
}

.footer-social-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--fb-red);
    color: var(--fb-red);
    background: rgba(255, 49, 38, 0.08);
}

.footer-legal {
    background-color: rgba(0, 0, 0, 0.35);
    color: var(--text-muted);
    padding: 1.25rem 1rem;
    font-size: 0.88rem;
    text-align: center;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--fb-red);
    text-decoration: underline;
}

.footer-credit {
    font-size: 0.82rem;
    opacity: 0.85;
}
