/* ═══════════════════════════════════════════════════════════════════════════
   Beach Handball Cup – Globales Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts Import ───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
    /* Farben */
    --sand:         #fef3e2;
    --sand-light:   #fef9f0;
    --sand-mid:     #fde8c8;
    --sand-dark:    #f5d89a;
    --ocean:        #0284c7;
    --ocean-dark:   #0369a1;
    --ocean-light:  #e0f2fe;
    --coral:        #ea580c;
    --coral-dark:   #c2410c;
    --coral-light:  #fff7ed;
    --white:        #ffffff;
    --text:         #1c1917;
    --text-muted:   #78716c;
    --text-light:   #a8a29e;
    --border:       rgba(0,0,0,0.07);
    --border-sand:  rgba(234,88,12,0.15);

    /* Schatten */
    --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:    0 8px 32px rgba(0,0,0,0.10);
    --shadow-card:  0 2px 12px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);

    /* Radien */
    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    16px;
    --radius-xl:    24px;
    --radius-pill:  100px;

    /* Typografie */
    --font-display: 'Poppins', 'Inter', sans-serif;
    --font-body:    'Inter', 'Poppins', sans-serif;

    /* Layout */
    --max-width:    1100px;
    --nav-h:        80px;
    --section-gap:  150px;
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Beach background — fixed, works on iOS Safari + all browsers */
html::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        /* Sky-blue horizon tint top-left */
        radial-gradient(ellipse 600px 450px at -5% 5%, rgba(125,211,252,0.12) 0%, transparent 65%),
        /* Warm sandy mid-glow */
        radial-gradient(ellipse 1000px 700px at 50% 50%, rgba(253,224,71,0.06) 0%, transparent 70%),
        /* Base warm sandy gradient */
        linear-gradient(172deg, #fefce8 0%, #fef6e4 22%, #fde8c8 52%, #fef0d8 76%, #fef9f0 100%);
}

/* ── Periodic Sunset Overlay ─────────────────────────────────────────────────── */
@keyframes bh-sunset {
    0%, 30%  { opacity: 0; }
    52%      { opacity: 1; }
    78%      { opacity: 1; }
    100%     { opacity: 0; }
}

html::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        /* Himmel oben: sanftes Abendblau */
        radial-gradient(ellipse 1600px 600px at 50% -20%, rgba(56,107,214,0.45) 0%, rgba(96,165,250,0.18) 50%, transparent 72%),
        /* Sonne: warmer Glanz oben rechts */
        radial-gradient(ellipse 650px 400px at 76% -2%, rgba(253,186,116,0.45) 0%, rgba(251,146,60,0.18) 42%, transparent 62%),
        /* Horizont: leichter orange-rosa Ton */
        radial-gradient(ellipse 1300px 320px at 50% 46%, rgba(251,113,133,0.14) 0%, transparent 58%),
        /* Meerblau links unten */
        radial-gradient(ellipse 900px 550px at -5% 95%, rgba(14,116,144,0.30) 0%, transparent 60%),
        /* Dämmerung unten: Blau */
        radial-gradient(ellipse 1400px 400px at 50% 120%, rgba(30,58,138,0.18) 0%, transparent 62%);
    opacity: 0;
    animation: bh-sunset 42s ease-in-out infinite;
    animation-delay: -6s;
}

/* ── Animated Waves ─────────────────────────────────────────────────────────── */
@keyframes bh-wave-bob-1 {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-55px); }
}
@keyframes bh-wave-bob-2 {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-42px); }
}
@keyframes bh-wave-bob-3 {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-36px); }
}
@keyframes bh-wave-bob-4 {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-48px); }
}

.bh-waves-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.bh-waves-svg {
    width: 100%;
    height: 100%;
    display: block;
}
/* Delay = 0% des Zyklus → startet unten */
.bh-wave--1 {
    animation: bh-wave-bob-1 16s ease-in-out infinite;
    animation-delay: 0s;
}
/* Delay = 25% von 9s = -2.25s → startet auf halber Auffahrt */
.bh-wave--2 {
    animation: bh-wave-bob-2 9s ease-in-out infinite;
    animation-delay: -2.25s;
}
/* Delay = 50% von 6.5s = -3.25s → startet oben (entgegengesetzt zu Welle 1) */
.bh-wave--3 {
    animation: bh-wave-bob-3 6.5s ease-in-out infinite;
    animation-delay: -3.25s;
}
/* Delay = 75% von 12s = -9s → startet auf halber Abfahrt */
.bh-wave--4 {
    animation: bh-wave-bob-4 12s ease-in-out infinite;
    animation-delay: -9s;
}

body {
    font-family: var(--font-body);
    background: transparent;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Layout Helpers ────────────────────────────────────────────────────────── */
.bh-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bh-main {
    padding-top: calc(var(--nav-h) + 24px);
}

.bh-section {
    padding: var(--section-gap) 0;
}

.bh-section + .bh-section {
    padding-top: 0;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.bh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    height: 40px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.bh-btn--sm {
    height: 36px;
    padding: 8px 16px;
    font-size: 0.8125rem;
}

.bh-btn--lg {
    height: 52px;
    padding: 14px 32px;
    font-size: 1rem;
}

.bh-btn--full {
    width: 100%;
}

.bh-btn--blue {
    background: var(--ocean);
    color: var(--white);
    border-color: var(--ocean);
}
.bh-btn--blue:hover {
    background: var(--ocean-dark);
    border-color: var(--ocean-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2,132,199,0.35);
}

.bh-btn--coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.bh-btn--coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234,88,12,0.35);
}

.bh-btn--outline-orange {
    background: transparent;
    color: var(--coral);
    border-color: var(--coral);
}
.bh-btn--outline-orange:hover {
    background: var(--coral);
    color: var(--white);
    transform: translateY(-1px);
}

.bh-btn--outline-white {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.5);
}
.bh-btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.8);
}

.bh-btn--white {
    background: var(--white);
    color: var(--ocean);
    border-color: var(--white);
}
.bh-btn--white:hover {
    background: var(--ocean-light);
    transform: translateY(-1px);
}

.bh-btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
}
.bh-btn--ghost:hover {
    background: rgba(0,0,0,0.04);
    color: var(--text);
}

.bh-btn--ghost.active,
.bh-btn--filter.active {
    background: var(--ocean);
    color: var(--white);
    border-color: var(--ocean);
}

/* ── Navigation ────────────────────────────────────────────────────────────── */
.bh-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: var(--max-width);
    z-index: 1000;
    border-radius: 18px;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.09), 0 0 0 1px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.bh-nav.scrolled {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.7);
}

.bh-nav__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px 0 16px;
    height: var(--nav-h);
}

.bh-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 12px;
}

.bh-nav__logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.bh-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.bh-nav__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
}

.bh-nav__link:hover {
    color: var(--text);
    background: rgba(0,0,0,0.04);
}

.bh-nav__link--active {
    color: var(--ocean);
    font-weight: 600;
    background: var(--ocean-light);
}

.bh-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bh-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: none;
    border: none;
    margin-left: auto;
}

.bh-nav__burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.bh-nav__burger[aria-expanded="true"] .bh-nav__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.bh-nav__burger[aria-expanded="true"] .bh-nav__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.bh-nav__burger[aria-expanded="true"] .bh-nav__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.bh-nav__mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 20px;
    border-top: 1px solid var(--border);
}

.bh-nav__mobile[hidden] {
    display: none;
}

.bh-nav__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.bh-nav__mobile-link {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.bh-nav__mobile-link:hover {
    background: rgba(0,0,0,0.04);
    color: var(--text);
}

.bh-nav__mobile-link--active {
    color: var(--ocean);
    background: var(--ocean-light);
    font-weight: 600;
}

.bh-nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.bh-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.bh-card--hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bh-card--hover:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ── Section Header ────────────────────────────────────────────────────────── */
.bh-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.bh-section-header__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-light);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.bh-section-header__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.bh-section-header__sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ── Status Badges ─────────────────────────────────────────────────────────── */
.bh-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.bh-badge--live {
    background: #fee2e2;
    color: #dc2626;
}

.bh-badge--live::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dc2626;
    animation: bh-pulse 1.2s ease-in-out infinite;
}

@keyframes bh-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.5; }
}

.bh-badge--done {
    background: #dcfce7;
    color: #16a34a;
}

.bh-badge--planned {
    background: #f1f5f9;
    color: #64748b;
}

.bh-badge--walkover {
    background: #fef9c3;
    color: #a16207;
}

/* ── Hero Section ──────────────────────────────────────────────────────────── */
.bh-hero {
    position: relative;
    padding: 60px 0 80px;
}

.bh-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bh-hero__bg-circle1,
.bh-hero__bg-circle2 {
    display: none;
}

.bh-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.bh-hero__logo-wrap {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-hero__logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bh-hero__logo-fallback {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.bh-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ocean);
    background: var(--ocean-light);
    padding: 5px 16px;
    border-radius: var(--radius-pill);
}

.bh-hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1.05;
    max-width: 800px;
}

.bh-hero__title span {
    color: var(--ocean);
}

.bh-hero__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.bh-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

.bh-hero__meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bh-hero__meta-icon svg {
    color: var(--ocean);
}

.bh-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Live Banner ───────────────────────────────────────────────────────────── */
.bh-live-banner {
    background: linear-gradient(135deg, #0f0e27 0%, #132540 60%, #0c2d48 100%);
    border-radius: var(--radius-lg);
    padding: 24px 28px 28px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.bh-live-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.015) 20px,
        rgba(255,255,255,0.015) 40px
    );
    pointer-events: none;
}

.bh-live-banner__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bh-live-banner__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.bh-live-banner__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.bh-live-game {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 32px 26px;
    color: var(--white);
    transition: background 0.15s, border-color 0.15s;
    text-decoration: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.bh-live-game:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
}

.bh-live-game__meta {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Main score row: team | score | team */
.bh-live-game__scoreboard {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 0;
}

.bh-live-game__team-col {
    display: flex;
    flex-direction: column;
}

.bh-live-game__team-col--right {
    text-align: right;
    align-items: flex-end;
}

.bh-live-game__team {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.1rem, 3vw, 1.75rem);
    line-height: 1.2;
    margin-bottom: 8px;
    word-break: break-word;
}

.bh-live-game__scorers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bh-live-game__scorer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
}

.bh-live-game__scorer-pts {
    color: #fb923c;
    font-weight: 700;
}

/* Center score block */
.bh-live-game__score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bh-live-game__score {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.bh-live-game__score-sep {
    color: rgba(255,255,255,0.25);
    margin: 0 8px;
}

.bh-live-game__sub-scores {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.bh-live-game__sub-score {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    font-weight: 500;
}

.bh-live-game__sub-score--so {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.78rem;
}

@media (max-width: 600px) {
    .bh-live-game {
        padding: 20px 18px 18px;
    }
    .bh-live-game__scoreboard {
        gap: 12px;
    }
    .bh-live-game__team {
        font-size: 0.95rem;
    }
    .bh-live-game__score {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }
}

/* ── Spiel-Card ────────────────────────────────────────────────────────────── */
.bh-game-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 3px solid transparent;
}

.bh-game-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.bh-game-card--live {
    border-left-color: #dc2626;
}

.bh-game-card--done {
    border-left-color: #16a34a;
}

.bh-game-card__time {
    text-align: center;
}

.bh-game-card__time-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--text);
    display: block;
}

.bh-game-card__time-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

.bh-game-card__match {
    flex: 1;
    min-width: 0;
}

.bh-game-card__teams {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    word-break: break-word;
}

a.bh-game-card {
    display: grid;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.bh-game-card__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.bh-game-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.bh-game-card__score {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.375rem;
    color: var(--ocean);
    letter-spacing: -0.02em;
}

/* ── Datum-Gruppe im Spielplan ─────────────────────────────────────────────── */
.bh-schedule-day {
    margin-bottom: 40px;
}

.bh-schedule-day__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.bh-schedule-day__date {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--text);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.bh-schedule-day__line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.bh-schedule-day__count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.bh-schedule-day__games {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Filter-Bar ────────────────────────────────────────────────────────────── */
.bh-filter-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.bh-filter-bar__label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    display: block;
}

.bh-filter-bar__row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bh-btn--filter {
    height: 34px;
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-weight: 500;
    transition: all 0.15s ease;
}

.bh-btn--filter:hover {
    border-color: var(--ocean);
    color: var(--ocean);
    background: var(--ocean-light);
}

.bh-btn--filter.active {
    background: var(--ocean);
    color: var(--white);
    border-color: var(--ocean);
}

/* ── Standings-Tabelle ─────────────────────────────────────────────────────── */
.bh-standings {
    width: 100%;
    border-collapse: collapse;
}

.bh-standings thead th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.bh-standings thead th:not(:first-child):not(:nth-child(2)) {
    text-align: center;
}

.bh-standings tbody tr {
    transition: background 0.15s ease;
}

.bh-standings tbody tr:hover {
    background: rgba(2,132,199,0.03);
}

.bh-standings tbody tr + tr {
    border-top: 1px solid var(--border);
}

.bh-standings td {
    padding: 12px 12px;
    font-size: 0.9rem;
    color: var(--text);
}

.bh-standings td:not(:first-child):not(:nth-child(2)) {
    text-align: center;
    color: var(--text-muted);
}

.bh-standings__rank {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9375rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bh-standings__rank--gold   { background: #fef9c3; color: #92400e; }
.bh-standings__rank--silver { background: #f1f5f9; color: #475569; }
.bh-standings__rank--bronze { background: #fff7ed; color: #9a3412; }
.bh-standings__rank--normal { background: transparent; color: var(--text-muted); }

.bh-standings__team {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
}

.bh-standings__pts {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--ocean) !important;
}

/* ── Gruppen Tabs ──────────────────────────────────────────────────────────── */
.bh-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.bh-tab-btn {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bh-tab-btn:hover {
    border-color: var(--ocean);
    color: var(--ocean);
}

.bh-tab-btn.active {
    background: var(--ocean);
    color: var(--white);
    border-color: var(--ocean);
}

.bh-tab-panel {
    display: none;
}

.bh-tab-panel.active {
    display: block;
}

/* ── FAQ Accordion ─────────────────────────────────────────────────────────── */
.bh-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bh-faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.bh-faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    gap: 16px;
    transition: background 0.15s ease;
}

.bh-faq-item__trigger:hover {
    background: rgba(0,0,0,0.02);
}

.bh-faq-item__trigger[aria-expanded="true"] {
    border-bottom: 1px solid var(--border);
}

.bh-faq-item__question {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}

.bh-faq-item__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ocean-light);
    color: var(--ocean);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.bh-faq-item__trigger[aria-expanded="true"] .bh-faq-item__icon {
    transform: rotate(45deg);
    background: var(--ocean);
    color: var(--white);
}

.bh-faq-item__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.bh-faq-item__body.open {
    max-height: 600px;
}

.bh-faq-item__answer {
    padding: 20px 24px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.bh-faq-item__answer p + p {
    margin-top: 10px;
}

.bh-faq-item__answer ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.bh-faq-item__answer ul li + li {
    margin-top: 4px;
}

/* ── Wave Divider ──────────────────────────────────────────────────────────── */
.bh-wave-divider {
    display: block;
    line-height: 0;
    margin-top: 20px;
}

.bh-wave-divider svg {
    display: block;
    width: 100%;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.bh-footer {
    background: linear-gradient(135deg, #0c1445 0%, #1e3a5f 100%);
    color: rgba(255,255,255,0.75);
    padding: 40px 0 28px;
}

.bh-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.bh-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bh-footer__brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.bh-footer__nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bh-footer__link {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    font-weight: 500;
}

.bh-footer__link:hover {
    color: var(--white);
}

.bh-footer__actions {
    display: flex;
    gap: 8px;
}

.bh-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bh-footer__copy,
.bh-footer__powered {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.bh-footer__powered strong {
    color: rgba(255,255,255,0.65);
    font-weight: 600;
}

.bh-footer__legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bh-footer__legal-link {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.15s;
}

.bh-footer__legal-link:hover {
    color: rgba(255,255,255,0.75);
}

/* ── Utility: Empty States ─────────────────────────────────────────────────── */
.bh-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
}

.bh-empty__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--ocean-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--ocean);
}

.bh-empty__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 8px;
}

.bh-empty__text {
    font-size: 0.9375rem;
    max-width: 320px;
    margin: 0 auto;
}

/* ── Utility: Loading ──────────────────────────────────────────────────────── */
.bh-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 24px;
    color: var(--text-muted);
    font-weight: 500;
}

.bh-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--ocean);
    border-radius: 50%;
    animation: bh-spin 0.7s linear infinite;
}

@keyframes bh-spin {
    to { transform: rotate(360deg); }
}

/* ── Utility: Alert ─────────────────────────────────────────────────────────── */
.bh-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.bh-alert--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.bh-alert--info {
    background: var(--ocean-light);
    color: var(--ocean-dark);
    border: 1px solid rgba(2,132,199,0.2);
}

/* ── Page Padding ───────────────────────────────────────────────────────────── */
.bh-page {
    padding: 48px 0 80px;
}

.bh-page__header {
    margin-bottom: 40px;
}

.bh-page__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.875rem, 4vw, 3rem);
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.bh-page__subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
}

/* ── Refresh-Indikator ──────────────────────────────────────────────────────── */
.bh-refresh-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 12px;
    justify-content: flex-end;
}

.bh-refresh-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
    animation: bh-pulse 2s ease-in-out infinite;
}

/* ── Grid Helpers ────────────────────────────────────────────────────────────── */
.bh-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bh-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bh-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --section-gap: 90px;
    }

    .bh-nav__links,
    .bh-nav__actions {
        display: none;
    }

    .bh-nav__burger {
        display: flex;
    }

    .bh-nav.mobile-open {
        border-radius: 18px;
    }

    .bh-hero__meta {
        gap: 14px;
    }

    .bh-game-card {
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
    }

    .bh-game-card__right {
        grid-column: 2;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .bh-footer__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bh-footer__actions {
        display: none;
    }

    .bh-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .bh-grid-2,
    .bh-grid-3,
    .bh-grid-4 {
        grid-template-columns: 1fr;
    }

    .bh-standings thead th:nth-child(n+4):not(:last-child):not(:nth-last-child(-n+2)) {
        display: none;
    }

    .bh-standings td:nth-child(n+4):not(:last-child):not(:nth-last-child(-n+2)) {
        display: none;
    }

    .bh-live-banner__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bh-hero__title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .bh-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .bh-btn--lg {
        width: 100%;
    }

    .bh-page__title {
        font-size: 1.75rem;
    }
}


/* ── Countdown ─────────────────────────────────────────────────────────────── */
.bh-countdown {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.bh-countdown::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.bh-countdown__label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 20px;
}

.bh-countdown__units {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bh-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.bh-countdown__val {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}

.bh-countdown__name {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-top: 6px;
}

.bh-countdown__sep {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    opacity: 0.4;
    align-self: flex-start;
    padding-top: 4px;
}

/* ── Stats Bar ─────────────────────────────────────────────────────────────── */
.bh-stats-bar {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.bh-stats-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    border-right: 1px solid var(--border);
    gap: 4px;
}

.bh-stats-bar__item:last-child {
    border-right: none;
}

.bh-stats-bar__val {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--ocean);
    line-height: 1;
}

.bh-stats-bar__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Photo Gallery ─────────────────────────────────────────────────────────── */
.bh-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.bh-gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-card);
}

.bh-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bh-gallery__item:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .bh-countdown {
        padding: 24px 20px;
    }
    .bh-countdown__unit {
        min-width: 56px;
    }
    .bh-countdown__sep {
        display: none;
    }
    .bh-stats-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .bh-stats-bar__item {
        padding: 18px 12px;
    }
    .bh-stats-bar__val {
        font-size: 1.75rem;
    }
    .bh-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bh-stats-bar {
        grid-template-columns: 1fr;
    }
    .bh-stats-bar__item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        justify-content: space-between;
        padding: 14px 20px;
    }
    .bh-stats-bar__item:last-child {
        border-bottom: none;
    }
    .bh-gallery {
        grid-template-columns: 1fr;
    }
}

/* ── Sponsor Section ──────────────────────────────────────────────────────── */
.bh-sponsor-levels {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 8px;
}

.bh-sponsor-level__label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bh-sponsor-level__label::before,
.bh-sponsor-level__label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(2,132,199,0.15);
}

.bh-sponsor-level__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.bh-sponsor-level__grid--large .bh-sponsor-card {
    min-width: 160px;
    padding: 20px 32px;
}

.bh-sponsor-level__grid--large .bh-sponsor-card img {
    height: 72px;
}

.bh-sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 20px;
    padding: 16px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 0 0 1.5px rgba(0,0,0,0.05);
    min-width: 120px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.bh-sponsor-card:hover {
    box-shadow: 0 6px 28px rgba(2,132,199,0.18), 0 0 0 1.5px rgba(2,132,199,0.2);
    transform: translateY(-2px);
}

.bh-sponsor-card img {
    height: 52px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: filter 0.2s;
}

.bh-sponsor-card__name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .bh-sponsor-level__grid--large .bh-sponsor-card {
        min-width: 130px;
        padding: 14px 20px;
    }
    .bh-sponsor-level__grid--large .bh-sponsor-card img {
        height: 56px;
    }
    .bh-sponsor-card {
        min-width: 100px;
        padding: 12px 16px;
    }
    .bh-sponsor-card img {
        height: 40px;
    }
}

/* ── KO Bracket ────────────────────────────────────────────────────────────── */
.bh-bracket {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 12px;
}

.bh-bracket__round {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 220px;
}

.bh-bracket__round-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ocean);
    text-align: center;
    padding: 8px 12px 16px;
    border-bottom: 2px solid var(--ocean-light);
    margin-bottom: 16px;
}

.bh-bracket__games {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 1;
    gap: 12px;
    padding: 0 8px;
    position: relative;
}

.bh-bracket__game {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border-left: 3px solid var(--ocean-light);
    transition: border-color 0.2s;
}

.bh-bracket__game--live {
    border-left-color: var(--coral);
}

.bh-bracket__game--done {
    border-left-color: #16a34a;
}

.bh-bracket__game-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 600;
}

.bh-bracket__game-row:last-child {
    border-bottom: none;
}

.bh-bracket__game-row--winner {
    background: #f0fdf4;
    color: #16a34a;
}

.bh-bracket__game-team {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-display);
    font-size: 0.825rem;
}

.bh-bracket__game-score {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    color: var(--ocean);
    flex-shrink: 0;
}

.bh-bracket__game-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--sand-light);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 600px) {
    .bh-bracket__round {
        min-width: 160px;
    }
    .bh-bracket__game-team {
        font-size: 0.75rem;
    }
}
