  /* ============================================================
     HAMFEST 29 — Design-Tokens
     ============================================================ */
  :root{
    --hf-primary: #2D4272;
    --hf-primary-dark: #1F2F52;
    --hf-primary-light: #3D5494;
    --hf-accent: #0FA0FF;
    --hf-accent-dark: #0084D4;
    --hf-accent-light: #4FBDFF;
    --hf-uska-yellow: #F5C842;
    --hf-ink: #1A1D24;
    --hf-body: #444851;
    --hf-muted: #6B7280;
    --hf-rule: #E3E5EB;
    --hf-paper: #FBFBFD;
    --hf-card: #FFFFFF;

    --bs-primary: var(--hf-primary);
    --bs-primary-rgb: 45,66,114;

    --hf-font-display: 'Barlow Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --hf-font-body: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    --hf-font-mono: 'JetBrains Mono', ui-monospace, monospace;
  }

  body{
    font-family: var(--hf-font-body);
    color: var(--hf-body);
    background: var(--hf-paper);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.55;
  }

  body::before{
    content: '';
    position: fixed; inset: 0; z-index: -1;
    pointer-events: none;
    background-image:
      radial-gradient(circle at 85% 8%, rgba(15,160,255,0.06) 0%, transparent 38%),
      radial-gradient(circle at 8% 92%, rgba(45,66,114,0.06) 0%, transparent 45%);
  }

  /* Subtle dot-grid pattern — for inverted sections */
  .pattern-dots{
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .pattern-waves{
    background-image: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 28px,
      rgba(15,160,255,0.04) 28px,
      rgba(15,160,255,0.04) 29px);
  }

  /* Headings */
  h1,h2,h3,h4,h5{
    font-family: var(--hf-font-display);
    color: var(--hf-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.05;
  }
  h1{ font-size: clamp(44px, 7vw, 96px); }
  h2{ font-size: clamp(36px, 5vw, 64px); }
  h3{ font-size: clamp(22px, 2vw, 32px); }
  h4{ font-size: 22px; }
  h5{ font-size: 17px; }
  .mono{ font-family: var(--hf-font-mono); }

  .brand-cap{ text-transform: uppercase; letter-spacing: 0.01em; }
  .claim-cap{ text-transform: uppercase; letter-spacing: 0.04em; }
  .accent-29{ color: var(--hf-accent); }

  /* Links — Hover überall */
  a{ color: var(--hf-primary); text-decoration: none; transition: color .18s ease; }
  a:hover{ color: var(--hf-accent); }
  p a, footer a, .lead a, .content-link{
    background-image: linear-gradient(var(--hf-accent), var(--hf-accent));
    background-size: 0% 1.5px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .25s ease, color .18s ease;
    padding-bottom: 2px;
  }
  p a:hover, footer a:hover, .lead a:hover, .content-link:hover{ background-size: 100% 1.5px; }

  /* ============================================================
     NAV — mit Dropdowns + Mega-Menu
     ============================================================ */
  .navbar-hf{
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-bottom: 1px solid var(--hf-rule);
    padding: 12px 0;
  }
  .navbar-brand{
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--hf-font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--hf-primary);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition: opacity .18s ease;
  }
  .navbar-brand:hover{ color: var(--hf-primary); opacity: 0.85; }
  .navbar-brand .b29{ color: var(--hf-accent); }

  .nav-link, .dropdown-toggle.nav-link{
    font-weight: 500;
    font-size: 15px;
    color: var(--hf-ink) !important;
    position: relative;
    padding: 6px 14px !important;
  }
  .nav-link::after{
    content: '';
    position: absolute;
    bottom: -2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--hf-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  .nav-link:hover::after, .nav-link.active::after{ transform: scaleX(1); }
  .dropdown-toggle::after{ display: none; } /* eigene Chevron rechts */
  .has-dropdown > .nav-link::before{
    content: '\F282';
    font-family: bootstrap-icons;
    font-size: 9px;
    margin-left: 4px;
    margin-right: 4px;
    opacity: 0.6;
    vertical-align: middle;
  }

  /* Dropdown-Menu */
  .dropdown-menu{
    border: 1px solid var(--hf-rule);
    border-radius: 12px;
    padding: 8px;
    margin-top: 0 !important;
    box-shadow: 0 12px 32px rgba(45,66,114,0.12);
    min-width: 220px;
  }
  /* Bridge zwischen Nav-Link und Dropdown, damit der Hover nicht abreißt */
  @media (min-width: 992px){
    .navbar-nav .nav-item.dropdown > .nav-link{
      padding-bottom: 20px !important;
      margin-bottom: -14px;
    }
  }
  .dropdown-item{
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14.5px;
    color: var(--hf-ink);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .15s ease;
  }
  .dropdown-item i{ color: var(--hf-accent); font-size: 16px; width: 18px; text-align: center; }
  .dropdown-item:hover, .dropdown-item:focus{
    background: rgba(15,160,255,0.08);
    color: var(--hf-primary);
  }
  .dropdown-divider{ border-color: var(--hf-rule); margin: 6px 4px; }
  .dropdown-header{
    font-family: var(--hf-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--hf-muted);
    padding: 8px 14px 4px;
  }

  /* Hover-Open (desktop) */
  @media (min-width: 992px){
    .navbar-nav .dropdown:hover > .dropdown-menu{
      display: block;
      animation: ddIn .2s ease;
    }
    @keyframes ddIn{ from{ opacity: 0; transform: translateY(-6px);} to{ opacity:1; transform: translateY(0);} }
  }

  /* Mega-Menu (für „Besucher" — 2-spaltig mit Icons) */
  .mega-menu{
    min-width: 540px;
    padding: 20px;
  }
  .mega-menu .row > div{ padding: 10px; }
  .mega-item{
    display: flex; gap: 14px;
    padding: 12px;
    border-radius: 10px;
    transition: all .15s ease;
    text-decoration: none;
    color: var(--hf-ink) !important;
  }
  .mega-item:hover{ background: rgba(15,160,255,0.06); }
  .mega-item .mi-icon{
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--hf-primary), var(--hf-accent));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .mega-item .mi-title{ font-family: var(--hf-font-display); font-weight: 400; font-size: 17px; }
  .mega-item .mi-desc{ font-size: 12.5px; color: var(--hf-muted); margin-top: 2px; line-height: 1.4; }

  /* Badge-mono */
  .badge-mono{
    font-family: var(--hf-font-mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 5px 11px;
    border-radius: 4px;
    background: rgba(15,160,255,0.12);
    color: var(--hf-accent-dark);
    display: inline-block;
  }
  .badge-mono.dark{ background: rgba(45,66,114,0.1); color: var(--hf-primary); }
  .badge-mono.light{ background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.95); }
  .badge-mono.uska{ background: var(--hf-uska-yellow); color: var(--hf-primary); }

  /* ============================================================
     HERO
     ============================================================ */
  .hero{ position: relative; padding: 100px 0 80px; overflow: hidden; }
  .hero-grid{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 992px){ .hero-grid{ grid-template-columns: 1fr; } }

  .hero h1{ margin-bottom: 24px; }
  .hero .tag{
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--hf-muted);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .hero .tag b{ color: var(--hf-ink); font-weight: 600; }

  /* Hero-Deco mit rotierenden Ringen */
  .hero-deco{ position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto; }
  .hero-deco::before, .hero-deco::after{
    content: '';
    position: absolute; inset: -8%;
    border-radius: 50%;
    border: 1px dashed rgba(15,160,255,0.4);
    pointer-events: none;
  }
  .hero-deco::after{
    inset: 8%;
    border: 1px solid rgba(45,66,114,0.15);
    animation: hf-spin 40s linear infinite;
  }
  @keyframes hf-spin{ to{ transform: rotate(360deg); } }
  .hero-deco img{
    position: relative; z-index: 2;
    width: 100%; height: auto;
    filter: drop-shadow(0 30px 50px rgba(45,66,114,0.15));
  }

  /* Countdown */
  .countdown{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 36px 0 28px;
    max-width: 560px;
  }
  .cd-box{
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(45,66,114,0.05);
  }
  /* cd-box ist kein Link → kein Hover-Effekt */
  .cd-num{ font-family: var(--hf-font-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; color: var(--hf-primary); line-height: 1; }
  .cd-label{ font-family: var(--hf-font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--hf-muted); margin-top: 6px; }

  /* Buttons — Basis-Farben bleiben, Hover ist überall CDCI (Logo-Style) */
  .btn-hf-primary, .btn-hf-accent, .btn-hf-ghost{
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--hf-font-body);
    border: 1px solid transparent;
    transition: transform .22s cubic-bezier(0.34, 1.4, 0.64, 1),
                border-color .22s ease,
                box-shadow .22s ease,
                background .15s ease,
                color .15s ease;
  }
  .btn-hf-primary{ background: var(--hf-primary); color: #fff; border-color: var(--hf-primary); }
  .btn-hf-accent{  background: var(--hf-accent);  color: #fff; border-color: var(--hf-accent); }
  .btn-hf-ghost{   background: transparent;       color: var(--hf-primary); border-color: var(--hf-rule); }
  /* Einheitliche CDCI-Hover-Animation für ALLE Hamfest-Buttons.
     !important auf transform notwendig, weil AOS nach Section-Animation
     einen inline-transform setzt der sonst gewinnt. */
  .btn-hf-primary:hover,
  .btn-hf-accent:hover,
  .btn-hf-ghost:hover{
    border-color: #929292 !important;
    box-shadow: 5px 5px 0 0 #808080 !important;
    transform: translate(-2px, -2px) !important;
  }
  .btn-hf-primary:hover{ background: var(--hf-primary); color: #fff; }
  .btn-hf-accent:hover{  background: var(--hf-accent);  color: #fff; }
  .btn-hf-ghost:hover{   background: var(--hf-card);    color: var(--hf-primary); }

  /* ============================================================
     STATS (Werbebanner)
     ============================================================ */
  .stats{
    background: var(--hf-primary);
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
  }
  .stats::after{
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(15,160,255,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .stats-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 40px 72px;
    position: relative; z-index: 1;
    text-align: center;
  }
  .stats-grid > div{ flex: 0 0 auto; min-width: 140px; }
  .stat-num{ font-family: var(--hf-font-display); font-size: clamp(48px, 7vw, 80px); font-weight: 800; color: var(--hf-accent); line-height: 1; }
  .stat-label{ font-size: 13.5px; color: rgba(255,255,255,0.78); margin-top: 8px; letter-spacing: 0.02em; }

  /* ============================================================
     SECTIONS
     ============================================================ */
  section{ padding: 88px 0; }
  .section-kicker{
    font-family: var(--hf-font-mono);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    color: var(--hf-accent);
    margin-bottom: 12px;
    display: inline-block;
  }
  .section-lead{
    font-size: clamp(17px, 1.4vw, 19.5px);
    color: var(--hf-muted);
    max-width: 720px;
    margin-bottom: 40px;
    line-height: 1.55;
  }

  /* Inverted Dark Section — neue Variante */
  .section-dark{
    background: var(--hf-primary-dark);
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
  }
  .section-dark h2{ color: #fff; }
  .section-dark .section-kicker{ color: var(--hf-accent-light); }
  .section-dark .section-lead{ color: rgba(255,255,255,0.7); }

  /* ============================================================
     MOTTO
     ============================================================ */
  /* Motto-Section: scharfes Hero-Bild als Parallax-Layer hinter dem Motto-Block.
     Bild ist in einer ::before-Pseudo, leicht überdimensioniert (top: -8%, height: 116%)
     damit Translation in beide Richtungen Spielraum hat ohne weiße Ränder zu zeigen. */
  .section-motto{
    position: relative;
    overflow: hidden;
  }
  .section-motto::before{
    content: '';
    position: absolute;
    top: -8%; left: 0;
    width: 100%; height: 116%;
    background: url('../img/herobgr.webp') center / cover no-repeat;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
    z-index: 0;
  }
  .section-motto > .container{ position: relative; z-index: 1; }
  @media (prefers-reduced-motion: reduce){
    .section-motto::before{ transform: none; }
  }
  .motto-block{
    /* Halbtransparenter Navy-Verlauf über dem Glaseffekt, damit Text lesbar bleibt */
    background: linear-gradient(135deg, rgba(45,66,114,0.86) 0%, rgba(31,47,82,0.94) 100%);
    color: #fff;
    border-radius: 24px;
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    /* Blur-Effekt: das durchscheinende Section-Bild wird im Motto-Block weichgezeichnet */
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    box-shadow: 0 24px 60px rgba(20,29,36,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .motto-block::before{
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(15,160,255,0.28) 0%, transparent 65%);
    pointer-events: none;
  }
  .motto-tag{
    font-family: var(--hf-font-display);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .motto-tag .dot{ color: var(--hf-accent); }
  .motto-three{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  @media (max-width: 768px){ .motto-three{ grid-template-columns: 1fr; } }
  .motto-three .item h4{ color: var(--hf-accent); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
  .motto-three .item p{ font-size: 15.5px; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.55; }

  /* ============================================================
     PROGRAMM — Parallele Timeline
     ============================================================ */
  .prog-slot{
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--hf-rule);
  }
  .prog-slot:first-child{ border-top: none; }
  .prog-time{
    font-family: var(--hf-font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--hf-primary);
    line-height: 1;
    padding-top: 4px;
    position: relative;
  }
  .prog-time .dot{
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--hf-accent);
    border-radius: 50%;
    margin-left: 4px;
    transform: translateY(-4px);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse{
    0%, 100%{ opacity: 1; box-shadow: 0 0 0 0 rgba(15,160,255,0.5); }
    50%{ opacity: 0.8; box-shadow: 0 0 0 6px rgba(15,160,255,0); }
  }
  .prog-time.allday{ font-size: 15px; color: var(--hf-accent); font-family: var(--hf-font-mono); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; padding-top: 8px; }

  /* Parallele Event-Karten in einem Slot */
  .prog-events{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
  }
  .prog-card{
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-left: 3px solid var(--hf-primary);
    border-radius: 10px;
    padding: 16px 18px;
    transition: all .2s ease;
    position: relative;
  }
  .prog-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(45,66,114,0.1);
    border-color: var(--hf-rule);
    border-left-color: var(--hf-accent);
  }
  .prog-card.cat-aaa{ border-left-color: var(--hf-primary); }
  .prog-card.cat-workshop{ border-left-color: var(--hf-accent); }
  .prog-card.cat-attraktion{ border-left-color: var(--hf-muted); }
  .prog-card.cat-rahmen{ border-left-color: var(--hf-accent-light); }
  .prog-card{ display: block; color: inherit; text-decoration: none; cursor: pointer; }
  .prog-card .pc-zone{ position: relative; z-index: 2; }
  .prog-card .pc-cat{
    font-family: var(--hf-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--hf-muted);
    margin-bottom: 6px;
  }
  .prog-card.cat-aaa .pc-cat{ color: var(--hf-primary); }
  .prog-card.cat-workshop .pc-cat{ color: var(--hf-accent-dark); }
  .prog-card .pc-title{ font-family: var(--hf-font-display); font-weight: 700; font-size: 20px; color: var(--hf-ink); margin-bottom: 4px; line-height: 1.15; }
  .prog-card .pc-desc{ font-size: 13.5px; color: var(--hf-muted); margin-bottom: 10px; }
  .prog-card .pc-zone{
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--hf-font-mono);
    font-size: 11px;
    color: var(--hf-primary);
    background: rgba(45,66,114,0.07);
    padding: 4px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
  }
  .prog-card .pc-zone:hover{ background: var(--hf-accent); color: #fff; }
  .prog-card .pc-zone i{ font-size: 12px; }

  /* ============================================================
     CARDS (generisch)
     ============================================================ */
  .card-hf{
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all .25s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .card-hf::before{
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--hf-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .card-hf:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(45,66,114,0.12);
    border-color: transparent;
  }
  .card-hf:hover::before{ transform: scaleX(1); }
  .card-hf .icon-circle{
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hf-primary), var(--hf-accent));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .card-hf h3{ font-size: 22px; margin-bottom: 12px; }
  .card-hf p{ color: var(--hf-muted); font-size: 14.5px; margin: 0; }
  /* Alle Elemente mit Modal-Trigger bekommen Cursor-Pointer */
  [data-modal-target]{ cursor: pointer; }

  /* Image-Header für Card mit SVG-Pattern */
  .card-image-header{
    height: 160px;
    margin: -32px -28px 24px;
    background: linear-gradient(135deg, var(--hf-primary), var(--hf-accent));
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
  }
  .card-image-header svg{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.35; }
  .card-image-header .placeholder-text{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-family: var(--hf-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* OK Team — inverted dunkle Variante */
  .ok-person-dark{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .25s ease;
  }
  .ok-person-dark:hover{
    transform: translateY(-3px);
    background: rgba(15,160,255,0.08);
    border-color: var(--hf-accent);
    box-shadow: 0 14px 28px rgba(0,0,0,0.2);
  }
  .ok-person-dark .ok-avatar{
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hf-accent), var(--hf-accent-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hf-font-display);
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(15,160,255,0.3);
  }
  .ok-person-dark .name{ font-family: var(--hf-font-display); font-weight: 800; font-size: 21px; color: #fff; margin-bottom: 2px; line-height: 1.15; }
  .ok-person-dark .role{ font-family: var(--hf-font-mono); font-size: 11px; color: var(--hf-accent-light); letter-spacing: 0.08em; }
  .ok-person-dark .call{ font-family: var(--hf-font-mono); font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }

  /* ============================================================
     SPONSOREN / PARTNER
     ============================================================ */
  .support-card{
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
  }
  .support-card.featured{
    background: linear-gradient(135deg, var(--hf-primary) 0%, var(--hf-primary-dark) 100%);
    color: #fff;
    border-color: var(--hf-primary);
  }
  .support-card.featured h3{ color: #fff; }
  .support-card.featured p, .support-card.featured li{ color: rgba(255,255,255,0.88); }
  .support-card.featured::before{
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(15,160,255,0.3) 0%, transparent 65%);
    pointer-events: none;
  }
  /* support-card ist kein Link (hat eigenen CTA-Button drin) → kein Hover-Effekt */
  .support-card h3{ font-size: 32px; margin-bottom: 8px; }
  .support-card .price-hint{ font-family: var(--hf-font-mono); font-size: 12px; letter-spacing: 0.08em; margin-bottom: 24px; opacity: 0.7; }
  .support-card ul{ list-style: none; padding: 0; margin: 0 0 28px; }
  .support-card li{
    font-size: 15px;
    padding: 10px 0;
    display: flex; align-items: flex-start; gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .support-card.featured li{ border-bottom-color: rgba(255,255,255,0.12); }
  .support-card li:last-child{ border-bottom: none; }
  .support-card li::before{
    content: '\F26F';
    font-family: bootstrap-icons;
    color: var(--hf-accent);
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 3px;
  }

  /* ============================================================
     ACCORDION
     ============================================================ */
  .accordion-item{
    background: var(--hf-card) !important;
    border: 1px solid var(--hf-rule) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
    transition: transform .25s cubic-bezier(0.34, 1.4, 0.64, 1),
                border-color .22s ease,
                box-shadow .22s ease;
  }
  .accordion-item:hover{
    border-color: #929292 !important;
    box-shadow: 7px 7px 0 0 #808080 !important;
    transform: translate(-3px, -3px) !important;
  }
  .accordion-button{
    background: var(--hf-card) !important;
    color: var(--hf-ink) !important;
    font-family: var(--hf-font-display);
    font-weight: 700;
    font-size: 19px;
    padding: 18px 24px;
    box-shadow: none !important;
  }
  .accordion-button:not(.collapsed){ color: var(--hf-primary) !important; background: rgba(15,160,255,0.04) !important; }
  .accordion-button:focus{ box-shadow: none !important; }
  .accordion-button::after{ filter: hue-rotate(180deg); }
  .accordion-body{ color: var(--hf-body); font-size: 15px; line-height: 1.55; padding-top: 4px; }

  /* ============================================================
     LOCATION
     ============================================================ */
  .pill-tabs{
    display: inline-flex;
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    flex-wrap: wrap;
  }
  .pill-tabs .pill{
    border: 1px solid transparent;
    background: transparent;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 999px;
    color: var(--hf-muted);
    cursor: pointer;
    font-size: 14px;
    transition: transform .25s cubic-bezier(0.34, 1.4, 0.64, 1),
                border-color .22s ease,
                box-shadow .22s ease,
                background .15s ease,
                color .15s ease;
  }
  .pill-tabs .pill:hover{
    color: var(--hf-primary);
    border-color: #929292 !important;
    box-shadow: 4px 4px 0 0 #808080 !important;
    transform: translate(-2px, -2px) !important;
  }
  .pill-tabs .pill.active{ background: var(--hf-primary); color: #fff; }
  .pill-tabs .pill.active:hover{ color: #fff; }

  /* Location-Image-Placeholder */
  .img-placeholder{
    aspect-ratio: 4/3;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hf-primary), var(--hf-accent));
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 20px 40px rgba(45,66,114,0.18);
  }
  .img-placeholder svg{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.25; }
  .img-placeholder .ph-icon{ font-size: 48px; margin-bottom: 12px; opacity: 0.7; position: relative; z-index: 1; }
  .img-placeholder .ph-label{ font-family: var(--hf-font-mono); font-size: 11px; letter-spacing: 0.12em; position: relative; z-index: 1; }

  /* ============================================================
     100 JAHRE USKA — Yellow + Logo
     ============================================================ */
  .uska-highlight{
    background: linear-gradient(135deg, var(--hf-accent) 0%, var(--hf-accent-dark) 100%);
    color: #fff;
    border-radius: 24px;
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
  }
  .uska-highlight::before{
    content: '100';
    position: absolute;
    right: -30px; top: -90px;
    font-family: var(--hf-font-display);
    font-size: 420px;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .uska-highlight h2{ color: #fff; }
  /* „Zur USKA-Geschichte" — BS5 btn-light auf Cyan-Hintergrund, CDCI-Hover */
  .btn-uska-history{
    border: 1px solid #fff;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .25s cubic-bezier(0.34, 1.4, 0.64, 1),
                border-color .22s ease,
                box-shadow .22s ease;
  }
  .btn-uska-history:hover{
    background-color: #fff !important;
    color: var(--hf-primary) !important;
    border-color: #929292 !important;
    box-shadow: 5px 5px 0 0 rgba(0,0,0,0.35) !important;
    transform: translate(-2px, -2px) !important;
  }
  .uska-logo-frame{ text-align: center; }
  /* uska-logo-frame ist kein Link → kein Hover-Effekt */
  .uska-logo-frame img{ max-width: 100%; height: auto; max-height: 280px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15)); }

  /* ============================================================
     MEDIEN
     ============================================================ */
  .media-card{
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px;
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-radius: 12px;
    transition: all .2s ease;
  }
  .media-card:hover{ border-color: var(--hf-accent); transform: translateY(-2px); }
  .media-card .mc-icon{
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(15,160,255,0.12);
    color: var(--hf-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .media-card .mc-cat{ font-family: var(--hf-font-mono); font-size: 10px; color: var(--hf-muted); letter-spacing: 0.1em; }
  .media-card .mc-title{ font-weight: 600; font-size: 15px; color: var(--hf-ink); }
  .media-card .mc-meta{ font-size: 12.5px; color: var(--hf-muted); }

  /* ============================================================
     DOWNLOADS
     ============================================================ */
  .download-item{
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-radius: 12px;
    transition: all .2s ease;
    color: inherit;
  }
  .download-item:hover{ border-color: var(--hf-accent); transform: translateY(-2px); color: var(--hf-primary); }
  .download-item .icon{
    width: 48px; height: 48px;
    border-radius: 10px;
    background: rgba(15,160,255,0.12);
    color: var(--hf-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .download-item .meta{ font-family: var(--hf-font-mono); font-size: 11px; color: var(--hf-muted); letter-spacing: 0.06em; }

  /* ============================================================
     NEWSLETTER
     ============================================================ */
  .newsletter-box{
    background: var(--hf-card);
    border: 1px solid var(--hf-rule);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
  }
  .newsletter-form{ max-width: 480px; margin: 0 auto; display: flex; }
  .newsletter-form .form-control{
    border-radius: 999px 0 0 999px;
    border-right: none;
    padding: 14px 22px;
    font-size: 15px;
    border-color: var(--hf-rule);
  }
  .newsletter-form .form-control:focus{ border-color: var(--hf-accent); box-shadow: none; }
  .newsletter-form button{ border-radius: 0 999px 999px 0; }

  /* ============================================================
     STIMMUNGS-Band mit Quote
     ============================================================ */
  .vibe-band{
    background: var(--hf-primary-dark);
    color: rgba(255,255,255,0.9);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .vibe-band::before{
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(15,160,255,0.18) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
  }
  .vibe-quote{
    font-family: var(--hf-font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    position: relative;
    padding-left: 32px;
  }
  .vibe-quote::before{
    content: '"';
    position: absolute;
    left: -10px; top: -20px;
    font-size: 120px;
    color: var(--hf-accent);
    line-height: 1;
    font-family: var(--hf-font-display);
  }
  .vibe-attr{ font-family: var(--hf-font-mono); font-size: 13px; color: var(--hf-accent-light); letter-spacing: 0.1em; margin-top: 18px; }

  /* ============================================================
     HALLENPLAN MODAL
     ============================================================ */
  .modal-content{ border-radius: 20px; overflow: hidden; border: none; }
  .modal-header{ border-bottom: 1px solid var(--hf-rule); padding: 18px 24px; }
  .modal-title{ font-family: var(--hf-font-display); font-weight: 700; }
  /* Person-Modal: Titel mit Avatar + Name + Rolle */
  .ok-modal-title{ display: flex !important; align-items: center; gap: 14px; }
  .ok-avatar-sm{
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hf-accent), var(--hf-accent-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hf-font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15,160,255,0.25);
  }
  .ok-modal-name{ display: block; font-family: var(--hf-font-display); font-weight: 700; font-size: 22px; color: var(--hf-ink); line-height: 1.1; }
  .ok-modal-role{ display: block; font-family: var(--hf-font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--hf-accent); margin-top: 4px; text-transform: uppercase; }
  /* Kontakt-Sektion (Tel + Mail) in Personen-Modals */
  .modal-contact{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid var(--hf-rule);
  }
  .modal-contact a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hf-primary);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: color .18s ease;
  }
  .modal-contact a:hover{ color: var(--hf-accent); }
  .modal-contact a i{ color: var(--hf-accent); font-size: 18px; }
  .floorplan-svg{
    width: 100%;
    height: auto;
    max-height: 70vh;
    background: linear-gradient(135deg, #F4F6FA 0%, #E8ECF3 100%);
    display: block;
  }
  .floorplan-svg .zone{
    fill: #fff;
    stroke: var(--hf-rule);
    stroke-width: 1.5;
    cursor: pointer;
    transition: all .2s ease;
  }
  .floorplan-svg .zone:hover{ fill: rgba(15,160,255,0.1); }
  .floorplan-svg .zone.active{
    fill: rgba(15,160,255,0.25);
    stroke: var(--hf-accent);
    stroke-width: 2.5;
  }
  .floorplan-svg .zone-label{
    font-family: var(--hf-font-display);
    font-weight: 800;
    font-size: 16px;
    fill: var(--hf-primary);
    pointer-events: none;
    text-anchor: middle;
  }
  .floorplan-svg .zone-sublabel{
    font-family: var(--hf-font-mono);
    font-size: 9px;
    fill: var(--hf-muted);
    pointer-events: none;
    text-anchor: middle;
    letter-spacing: 0.04em;
  }
  /* User-Position + Pin */
  .user-dot{
    fill: var(--hf-accent);
    stroke: #fff;
    stroke-width: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  }
  .user-dot-pulse{ fill: var(--hf-accent); }
  /* Pulse-Animation via SMIL direkt auf das SVG-Element gehängt (siehe Markup),
     statt CSS-Transform mit transform-origin (das verursachte den diagonalen
     Lauf-Bug in manchen Browsern, weil transform-origin relativ zum SVG-Viewport
     statt zum Circle-Center berechnet wurde). */
  .event-pin{ fill: #DC2626; stroke: #fff; stroke-width: 2; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25)); }
  .route-path{
    stroke: var(--hf-accent);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 6,6;
    animation: dash 1s linear infinite;
  }
  @keyframes dash{ to{ stroke-dashoffset: -24; } }

  .modal-footer{ padding: 16px 24px; border-top: 1px solid var(--hf-rule); justify-content: space-between; }
  .geo-status{ font-family: var(--hf-font-mono); font-size: 12px; color: var(--hf-muted); }
  .geo-status.active{ color: var(--hf-accent-dark); }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer{
    background: var(--hf-ink);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 28px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
  }
  footer::before{
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
  }
  footer .container{ position: relative; z-index: 1; }
  footer h5{ color: #fff; font-size: 13px; font-family: var(--hf-font-mono); font-weight: 500; letter-spacing: 0.1em; margin-bottom: 20px; }
  footer a{ color: rgba(255,255,255,0.7); font-size: 14.5px; }
  footer a:hover{ color: var(--hf-accent); }
  footer ul{ list-style: none; padding: 0; margin: 0; }
  footer ul li{ padding: 4px 0; }
  .footer-brand{
    font-family: var(--hf-font-display);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }
  .footer-brand .b29{ color: var(--hf-accent); }
  .footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 48px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--hf-font-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.04em;
  }

  /* Diamond accent */
  .diamond{
    display: inline-block;
    width: 7px; height: 7px;
    background: currentColor;
    transform: rotate(45deg);
    margin-right: 6px;
    vertical-align: middle;
  }

  .section-bg-alt{ background: var(--hf-card); border-top: 1px solid var(--hf-rule); border-bottom: 1px solid var(--hf-rule); }

  /* ============================================================
     CDCI-HOVER — Logo-Stil (graue Border + Offset-Shadow)
     Die HF29-Karte hat: weißer Hintergrund, #929292 Outline,
     #808080 Schattenkasten dahinter (offset rechts unten).
     Auf Hover schieben wir das Element nach oben/links,
     der Schatten bleibt stehen — das ergibt den Logo-Look.
     ============================================================ */
  .cdci-hover{
    transition: transform .25s cubic-bezier(0.34, 1.4, 0.64, 1),
                border-color .22s ease,
                box-shadow .22s ease,
                background .22s ease !important;
  }
  .cdci-hover:hover{
    border-color: #929292 !important;
    box-shadow: 7px 7px 0 0 #808080 !important;
    transform: translate(-3px, -3px) !important;
  }
  /* Override .card-hf::before (top-bar-animation) — kompatibel halten */
  .card-hf.cdci-hover::before{ display: none; }

  /* Variante für die dunkle Sektion (OK-Team) — heller Akzent statt Grau */
  .cdci-hover-dark{
    transition: transform .25s cubic-bezier(0.34, 1.4, 0.64, 1),
                border-color .22s ease,
                box-shadow .22s ease;
  }
  .cdci-hover-dark:hover{
    border-color: rgba(255,255,255,0.4) !important;
    box-shadow: 7px 7px 0 0 rgba(0,0,0,0.35) !important;
    transform: translate(-3px, -3px);
  }

  /* Wave-Trenner */
  .wave-divider{
    height: 60px;
    background:
      linear-gradient(to right, transparent 0%, var(--hf-accent) 50%, transparent 100%);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'><path d='M0,30 Q150,0 300,30 T600,30 T900,30 T1200,30' stroke='black' stroke-width='1' fill='none'/></svg>") repeat-x;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'><path d='M0,30 Q150,0 300,30 T600,30 T900,30 T1200,30' stroke='black' stroke-width='1' fill='none'/></svg>") repeat-x;
    opacity: 0.4;
  }
