/*
 * Homepage-only styles.
 * Stage 1 covers the cinematic hero section only. Additional homepage
 * sections will bring their own scoped rules here in later stages.
 *
 * IMPORTANT — progressive enhancement rule for this whole file:
 * no element that carries real content may ever have a permanent
 * `opacity: 0` in its base (un-animated) rule. Entrance animations are
 * added ONLY inside `@media (prefers-reduced-motion: no-preference)`
 * blocks, using `animation-fill-mode: both` so the very first (0%)
 * keyframe briefly supplies the "before" state. Everywhere else —
 * reduced motion, unsupported browsers, or if a rule is ever mistyped —
 * the element falls back to its plain, fully visible default. This is
 * also what fixes the Stage 1 bug where hero content was invisible (see
 * the diagnosis note in the project completion report).
 */

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding-block: calc(var(--header-height) + 1rem) 2rem;

    /* Bright, energetic base — visible immediately, no media required. */
    background-color: var(--surface-soft);
    background-image:
        radial-gradient(ellipse 60% 50% at 85% 8%, rgba(255, 181, 46, 0.22), transparent 60%),
        radial-gradient(ellipse 70% 60% at 8% 95%, rgba(36, 107, 206, 0.16), transparent 60%),
        linear-gradient(180deg, var(--surface-warm) 0%, var(--surface-soft) 45%, var(--surface-main) 100%);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 1320px;
}

/* ==========================================================================
   Content column
   ========================================================================== */

.hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-blue-hover);
    margin-bottom: 0.75rem;
}

.hero__heading {
    /* No max-width here on purpose — the two lines are controlled by the
       explicit <br> in the markup, sized to fit the grid column at this
       font size. A char-based max-width previously forced each of those
       two lines to wrap again internally, which is what made the heading
       block unnecessarily tall. Let it fill the column naturally instead. */
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.12;
    color: var(--text-primary);
}

.hero__heading-highlight {
    color: var(--brand-primary);
}

.hero__subtext {
    margin-top: 1rem;
    max-width: 46ch;
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: var(--text-secondary);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero__microline {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-soft);
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero__trust-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--brand-primary);
}

/* ==========================================================================
   Visual column — framed media area with CSS/SVG fallback composition
   ========================================================================== */

.hero__visual {
    width: 100%;
}

.hero__media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: calc(var(--border-radius) * 2);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 28px 56px -18px rgba(16, 36, 62, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: var(--surface-main);
}

/* Intentional CSS/SVG fallback composition. Sits underneath the media
   layer at all times, so if the video/poster files are absent or fail to
   load, this remains fully visible instead of a blank or broken box. */
.hero__fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        /* faint crosshatch — an abstract nod to a practice net/ground,
           deliberately understated so it reads as texture, not imagery */
        repeating-linear-gradient(45deg, rgba(16, 36, 62, 0.05) 0 1px, transparent 1px 24px),
        repeating-linear-gradient(-45deg, rgba(16, 36, 62, 0.05) 0 1px, transparent 1px 24px),
        radial-gradient(ellipse 45% 35% at 88% 92%, rgba(58, 155, 103, 0.16), transparent 70%),
        radial-gradient(ellipse 75% 60% at 80% 4%, rgba(255, 181, 46, 0.4), transparent 60%),
        radial-gradient(ellipse 75% 65% at 8% 102%, rgba(36, 107, 206, 0.34), transparent 65%),
        linear-gradient(160deg, var(--brand-sky) 0%, var(--surface-main) 55%, var(--surface-warm) 100%);
}

.hero__fallback-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero__fallback-blob--blue {
    width: 64%;
    aspect-ratio: 1 / 1;
    left: -18%;
    bottom: -16%;
    background: radial-gradient(circle at 35% 35%, rgba(36, 107, 206, 0.38), rgba(36, 107, 206, 0) 70%);
}

.hero__fallback-blob--warm {
    width: 48%;
    aspect-ratio: 1 / 1;
    right: -12%;
    top: -10%;
    background: radial-gradient(circle at 60% 40%, rgba(255, 181, 46, 0.46), rgba(255, 181, 46, 0) 70%);
}

.hero__fallback-blob--green {
    width: 30%;
    aspect-ratio: 1 / 1;
    right: 6%;
    bottom: -8%;
    background: radial-gradient(circle at 50% 50%, rgba(58, 155, 103, 0.32), rgba(58, 155, 103, 0) 70%);
}

.hero__fallback-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--brand-blue);
    opacity: 0.35;
}

.hero__fallback-lines .hero__fallback-trajectory {
    color: var(--brand-primary);
    opacity: 1;
}

.hero__fallback-label {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 36, 62, 0.1);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.hero__fallback-label--1 {
    top: 8%;
    left: 8%;
}

.hero__fallback-label--2 {
    bottom: 9%;
    right: 8%;
}

.hero__fallback-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(16, 36, 62, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* Decorative inner frame — sits above the media layer too, so it still
   reads as a refined "picture frame" once real video/poster is in place. */
.hero__frame-accent {
    position: absolute;
    inset: 3%;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: calc(var(--border-radius) * 1.5);
    pointer-events: none;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__video,
.hero__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================================
   Scroll indicator
   ========================================================================== */

.hero__scroll-indicator {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.hero__scroll-indicator svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Entrance animation (progressive enhancement only — see file header note)
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
    .hero__eyebrow    { animation: hero-rise 650ms cubic-bezier(0.4, 0, 0.2, 1)  80ms both; }
    .hero__heading    { animation: hero-rise 700ms cubic-bezier(0.4, 0, 0.2, 1) 160ms both; }
    .hero__subtext    { animation: hero-rise 700ms cubic-bezier(0.4, 0, 0.2, 1) 240ms both; }
    .hero__actions    { animation: hero-rise 700ms cubic-bezier(0.4, 0, 0.2, 1) 320ms both; }
    .hero__microline  { animation: hero-rise 700ms cubic-bezier(0.4, 0, 0.2, 1) 380ms both; }
    .hero__trust      { animation: hero-rise 700ms cubic-bezier(0.4, 0, 0.2, 1) 440ms both; }
    .hero__visual     { animation: hero-rise 750ms cubic-bezier(0.4, 0, 0.2, 1) 200ms both; }

    .hero__video {
        transform: scale(1.02);
        animation: hero-media-settle 8s ease-out forwards;
    }

    .hero__fallback-blob--blue {
        animation: hero-blob-float 9s ease-in-out infinite;
    }

    .hero__fallback-blob--warm {
        animation: hero-blob-float 11s ease-in-out infinite reverse;
    }

    .hero__fallback-blob--green {
        animation: hero-blob-float 13s ease-in-out infinite;
    }

    .hero__scroll-indicator svg {
        animation: hero-scroll-bob 2.2s ease-in-out infinite;
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-media-settle {
    from { transform: scale(1.06); }
    to { transform: scale(1.02); }
}

@keyframes hero-blob-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3%) scale(1.04); }
}

@keyframes hero-scroll-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ==========================================================================
   Desktop height containment
   ========================================================================== */

/*
 * Root cause of the desktop overflow this block fixes: `.hero` only had a
 * `min-height` (100vh/100svh), which is a FLOOR, not a ceiling — it never
 * stops the box from growing taller than the viewport. The actual height
 * was being driven by `.hero__media-frame`'s `aspect-ratio: 4/5`, which is
 * derived from the panel's WIDTH, not the viewport's height. On common
 * laptop screens the 52%-wide visual column produced a panel taller than
 * the space actually available below the fixed header, so the hero grew
 * past the viewport and the bottom of the panel (including the
 * "MULTI-SPORT TRAINING" label) ended up below the fold.
 *
 * Fix, desktop/large-tablet only (mobile keeps its existing aspect-ratio
 * based sizing untouched below): give `.hero` a real, capped height
 * (`100dvh`, falling back to `100vh`), then let the grid row and the
 * visual column stretch to fill exactly that height, dropping the fixed
 * aspect-ratio in favour of `height: 100%` plus a sensible max/min-height
 * on the media frame itself. Real video/poster media still uses
 * `object-fit: cover` inside this frame, so it will fill whatever height
 * this produces without ever growing the panel taller.
 */
@media (min-width: 901px) {
    .hero {
        min-height: 0;
        height: 100vh;
        height: 100dvh;
    }

    .hero__grid {
        height: 100%;
        grid-template-rows: minmax(0, 1fr);
    }

    .hero__visual {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__media-frame {
        aspect-ratio: auto;
        width: 100%;
        height: 100%;
        max-height: 620px;
        min-height: 380px;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-block: calc(var(--header-height) + 1rem) 2rem;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        margin-top: 2.5rem;
    }

    .hero__media-frame {
        aspect-ratio: 16 / 10;
    }

    .hero__scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__media-frame {
        aspect-ratio: 4 / 3;
    }

    .hero__trust {
        gap: 0.6rem 1.25rem;
    }
}

/* Reduced motion: nothing above depends on it, but make sure any residual
   motion (e.g. smooth scroll snapping to this section) stays calm. */
@media (prefers-reduced-motion: reduce) {
    .hero__video {
        transform: none;
    }
}

/* ==========================================================================
   Section 2 — The St. George Sports Arena
   ==========================================================================
   Progressive enhancement note (same rule as the hero): every element here
   is fully visible by default with plain `display`/`opacity: 1`. The only
   thing JavaScript adds is which single panel is exempt from the `hidden`
   attribute on desktop, plus a purely decorative fade on the panel that
   becomes active. Nothing here ever starts from a permanent opacity: 0.
   ========================================================================== */

/* Hero → Section 2 seam: a curved edge + a small "02" marker instead of a
   plain divider line. */
.section-seam {
    position: relative;
    height: 56px;
    margin-bottom: -1px;
    pointer-events: none;
}

.section-seam__curve {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.section-seam__marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--brand-primary);
    color: var(--text-on-brand);
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 8px 20px rgba(16, 36, 62, 0.25), 0 0 0 4px var(--surface-main);
}

.sports-arena {
    position: relative;
    background-color: var(--surface-main);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.sports-arena__intro {
    max-width: 46ch;
    padding-top: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.sports-arena__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-blue-hover);
    margin-bottom: 0.6rem;
}

.sports-arena__heading {
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    line-height: 1.15;
    color: var(--text-primary);
}

.sports-arena__heading-highlight {
    color: var(--brand-primary);
}

.sports-arena__subtext {
    margin-top: 0.85rem;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text-secondary);
}

/* Layout: vertical selector + stage */
.sports-arena__layout {
    display: grid;
    grid-template-columns: minmax(180px, 240px) 1fr;
    align-items: start;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.sports-arena__selector {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sport-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius);
    border: 1.5px solid var(--border-soft);
    background-color: var(--surface-main);
    text-align: left;
    color: var(--text-primary);
    min-height: 44px;
    transition: border-color var(--transition-standard), background-color var(--transition-standard);
}

.sport-tab:hover {
    border-color: var(--brand-blue);
}

.sport-tab.is-active {
    background-color: var(--surface-soft);
    border-color: var(--stage-accent, var(--brand-primary));
}

.sport-tab__index {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.sport-tab.is-active .sport-tab__index {
    color: var(--stage-accent, var(--brand-primary));
}

.sport-tab__label {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Stage */
.sports-arena__stage {
    position: relative;
    height: clamp(420px, 46vh, 560px);
    border-radius: calc(var(--border-radius) * 2);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 24px 48px -20px rgba(16, 36, 62, 0.3);
    background-color: var(--surface-soft);
}

.sports-arena__bgtype {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    font-size: clamp(5rem, 13vw, 10rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--stage-accent, var(--brand-primary));
    opacity: 0.07;
    white-space: nowrap;
    pointer-events: none;
}

.sport-panel {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1;
}

.sport-panel[hidden] {
    display: none;
}

/* Per-sport accent + atmosphere tint — one unified system, four moods. */
.sport-panel--cricket {
    --panel-accent: var(--brand-primary);
    --panel-glow-a: rgba(36, 107, 206, 0.24);
    --panel-glow-b: rgba(255, 181, 46, 0.22);
}

.sport-panel--football {
    --panel-accent: var(--brand-green);
    --panel-glow-a: rgba(58, 155, 103, 0.24);
    --panel-glow-b: rgba(36, 107, 206, 0.16);
}

.sport-panel--boxing {
    --panel-accent: var(--brand-primary);
    --panel-glow-a: rgba(217, 35, 63, 0.2);
    --panel-glow-b: rgba(255, 181, 46, 0.3);
}

.sport-panel--athletics {
    --panel-accent: var(--brand-blue);
    --panel-glow-a: rgba(36, 107, 206, 0.24);
    --panel-glow-b: rgba(255, 181, 46, 0.26);
}

.sport-panel__atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(160deg, var(--panel-glow-a) 0%, var(--surface-main) 55%, var(--panel-glow-b) 100%);
}

.sport-panel__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.sport-panel__blob--a {
    width: 44%;
    aspect-ratio: 1 / 1;
    left: -10%;
    bottom: -18%;
    background: radial-gradient(circle at 35% 35%, var(--panel-glow-a), transparent 70%);
}

.sport-panel__blob--b {
    width: 34%;
    aspect-ratio: 1 / 1;
    right: -8%;
    top: -14%;
    background: radial-gradient(circle at 60% 40%, var(--panel-glow-b), transparent 70%);
}

.sport-panel__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--panel-accent);
    opacity: 0.3;
}

.sport-panel__accent-line {
    opacity: 1;
}

.sport-panel__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

/* Future real training photography slots. Missing files simply render
   nothing here (no broken-image icon), leaving the CSS atmosphere behind
   them fully visible — no structural change needed once these exist. */
.sport-panel--cricket .sport-panel__media {
    background-image: url('../images/homepage/sports/cricket-training.webp');
}

.sport-panel--football .sport-panel__media {
    background-image: url('../images/homepage/sports/football-training.webp');
}

.sport-panel--boxing .sport-panel__media {
    background-image: url('../images/homepage/sports/boxing-training.webp');
}

.sport-panel--athletics .sport-panel__media {
    background-image: url('../images/homepage/sports/athletics-training.webp');
}

.sport-panel__info {
    position: absolute;
    z-index: 2;
    left: clamp(1.25rem, 3vw, 2rem);
    right: clamp(1.25rem, 3vw, 2rem);
    bottom: clamp(1.25rem, 3vw, 2rem);
    max-width: 420px;
    padding: 1.25rem 1.5rem;
    border-radius: calc(var(--border-radius) * 1.5);
    background-color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 36, 62, 0.08);
    box-shadow: 0 16px 32px -12px rgba(16, 36, 62, 0.25);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.sport-panel__counter {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--panel-accent);
    margin-bottom: 0.5rem;
}

.sport-panel__title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: var(--text-primary);
}

.sport-panel__desc {
    margin-top: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    max-width: 40ch;
}

.sport-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.sport-panel__tags li {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background-color: var(--surface-soft);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
}

.sport-panel__cta {
    margin-top: 1.1rem;
}

/* Mobile jump-links — hidden on desktop, shown below the mobile scroller. */
.sports-arena__mobile-nav {
    display: none;
}

/* Refined switch transition — JS adds this class to the panel it just
   revealed; harmless if it never runs, since opacity is already 1. */
@media (prefers-reduced-motion: no-preference) {
    .sport-panel.is-entering {
        animation: sport-fade-in 420ms ease;
    }
}

@keyframes sport-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 900px) {
    .sports-arena__layout {
        grid-template-columns: 1fr;
        padding-inline: 0;
        max-width: none;
    }

    .sports-arena__selector {
        display: none;
    }

    .sports-arena__stage {
        height: auto;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: none;
        padding-inline-start: clamp(1.25rem, 4vw, 2.5rem);
        scroll-padding-inline-start: clamp(1.25rem, 4vw, 2.5rem);
    }

    .sports-arena__bgtype {
        display: none;
    }

    .sport-panel {
        position: relative;
        inset: auto;
        flex: 0 0 84%;
        height: 440px;
        scroll-snap-align: start;
        border-radius: calc(var(--border-radius) * 2);
        overflow: hidden;
        border: 1px solid var(--border-soft);
        box-shadow: 0 16px 32px -16px rgba(16, 36, 62, 0.28);
    }

    /* On mobile every panel stays reachable by swiping, regardless of the
       `hidden` attribute JS uses for the desktop tab behaviour. */
    .sport-panel[hidden] {
        display: block;
    }

    .sport-panel__info {
        max-width: none;
    }

    .sports-arena__mobile-nav {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding-inline: clamp(1.25rem, 4vw, 2.5rem);
        margin-top: 1rem;
    }

    .sports-arena__mobile-link {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0.5rem 1rem;
        border-radius: 999px;
        border: 1.5px solid var(--border-soft);
        background-color: var(--surface-main);
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-primary);
    }
}

@media (max-width: 480px) {
    .sport-panel {
        flex: 0 0 88%;
        height: 400px;
    }

    .sports-arena__intro {
        padding-top: 1.75rem;
    }
}
