/* ============================================================
   GS AUSTRIA FANCLUB – Stylesheet
   Modernes, kraftvolles Fanclub-Design · Galatasaray Rot & Gelb
   ============================================================ */

/* === Reset & Variables === */
:root {
  --color-red: #A90432;
  --color-red-dark: #7a0224;
  --color-red-hover: #8c032a;
  --color-yellow: #FBB300;
  --color-yellow-light: #ffc233;
  --color-black: #0f0f0f;
  --color-text: #1d1d1b;
  --color-text-light: #707070;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f5;
  --color-bg-dark: #0f0f0f;
  --color-border: #e5e5e5;

  --font-display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1600px;
  --container-w: 1400px;
  --gutter: 5%;

  --transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast: 0.18s ease-out;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol { list-style: none; }

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

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.script-text {
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-red);
  line-height: 1.1;
  font-weight: 700;
}

p { color: var(--color-text); font-size: 1.125rem; }

/* === Container === */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem var(--gutter);
  min-height: 96px;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.header-logo img,
.header-logo .logo-mark {
  width: 150px;
  height: 150px;
  background-color: #fff;
  background-image: url('../images/GalatasarayAustriaLogo.png'), url('../images/logo.svg');
  background-size: 78% auto;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(30px);
  transition: transform var(--transition);
}

.header-logo:hover img,
.header-logo:hover .logo-mark {
  transform: translateY(30px) scale(1.04);
}

.header-logo-text {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.75rem 1rem;
  position: relative;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-yellow);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--color-yellow);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.icon-btn {
  height: 56px;
  background: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  text-decoration: none;
  padding: 0 1rem;
  gap: 0;
  overflow: hidden;
  transition: background var(--transition), gap var(--transition);
  white-space: nowrap;
}

.icon-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-btn .icon-btn-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.3s ease,
              transform 0.4s ease;
}

.icon-btn:hover {
  background: var(--color-red-dark);
  gap: 0.65rem;
}

.icon-btn:hover .icon-btn-label {
  max-width: 220px;
  opacity: 1;
  transform: translateX(0);
}

/* Login-Variante: kleiner Quadrat-Button daneben */
.icon-btn.icon-btn-square {
  width: 56px;
  padding: 0;
  justify-content: center;
}

.icon-btn.icon-btn-square:hover { gap: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}

.btn-yellow {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn-yellow:hover {
  background: #fff;
  color: var(--color-red);
}

.btn-icon { font-size: 1.1rem; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--color-red);
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 4px auto;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem var(--gutter) 5rem;
  overflow: hidden;
  background: var(--color-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(15,15,15,0.35) 0%, rgba(15,15,15,0.55) 45%, rgba(15,15,15,0.85) 100%),
    linear-gradient(110deg, rgba(15,15,15,0.55) 0%, rgba(169,4,50,0.35) 50%, transparent 100%);
  z-index: 1;
}

.hero-stadium {
  position: absolute;
  inset: 0;
  background-image: url('../images/HeroGalatasarayAustria.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: saturate(1.05) contrast(1.05);
}

.hero-stadium::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 70%, rgba(251,179,0,0.10) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(169,4,50,0.12) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 .accent-yellow { color: var(--color-yellow); display: block; }
.hero h1 .accent-red { color: var(--color-red); }

.hero-sub {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 700px;
  line-height: 1.3;
}

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

.hero-actions .btn { padding: 1rem 2rem; }

/* ============================================================
   SECTION: Verein Intro
   ============================================================ */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-narrow { padding: 4rem 0; }

.intro-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.intro-block h2 { margin-bottom: 1.5rem; }
.intro-block p { font-size: 1.25rem; line-height: 1.55; }

.highlight { color: var(--color-red); font-weight: 700; }

/* ============================================================
   ACTIVITIES GRID – Was wir tun
   ============================================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-w);
  margin: 4rem auto 0;
  padding: 0 var(--gutter);
}

.activity-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
  overflow: hidden;
}

.activity-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-black);
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px 5px 7px;
  border-radius: 999px;
  z-index: 2;
  white-space: nowrap;
  transition: all var(--transition);
}

.activity-badge svg {
  width: 11px;
  height: 11px;
}

.activity-card:hover .activity-badge {
  background: var(--color-yellow);
  color: var(--color-black);
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red) 50%, var(--color-yellow) 50%, var(--color-yellow) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(169,4,50,0.06);
  border-color: rgba(169,4,50,0.18);
}

.activity-card:hover::before {
  transform: scaleX(1);
}

.activity-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.activity-icon svg {
  width: 26px;
  height: 26px;
}

.activity-card:hover .activity-icon {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #e6a200 100%);
  color: var(--color-black);
  transform: scale(1.08) rotate(-4deg);
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--color-black);
  margin: 0;
  text-transform: uppercase;
}

.activity-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 1200px) {
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .activity-card { padding: 1.75rem 1.5rem; }
}

/* ============================================================
   FOUNDED YEAR SECTION
   ============================================================ */
.founded-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem var(--gutter);
  max-width: var(--container-w);
  margin: 0 auto;
}

.founded-year {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.85;
  color: var(--color-red);
  letter-spacing: -0.01em;
}

.founded-year-label {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-top: 1rem;
  display: block;
}

.founded-text p {
  font-size: 1.1875rem;
  line-height: 1.65;
}

/* ============================================================
   STATS GRID mit Scroll-Parallax
   ============================================================ */
.stats-wrapper {
  --scroll: 0; /* 0 = Section noch nicht im Viewport, 1 = vollständig durchgescrollt */
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  padding: 7rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.stats-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  min-height: 560px;
}

/* Polaroids absolut positioniert, leicht gedreht */
.poly {
  position: absolute;
  background: #fff;
  padding: 0.75rem 0.75rem 2.25rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.22), 0 6px 12px rgba(0,0,0,0.08);
  width: 220px;
  z-index: 2;
  will-change: transform;
  transition: box-shadow var(--transition);
}

.poly::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px;
  height: 22px;
  background: rgba(251, 179, 0, 0.55);
  border-radius: 2px;
}

.poly-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.poly-1 .poly-img {
  background-image: url('../images/poly-rapid-tribuene.webp');
  background-color: var(--color-red);
}

.poly-2 .poly-img {
  background-image: url('../images/poly-kutlama-2006.webp');
  background-color: var(--color-yellow);
}

.poly-3 .poly-img {
  background-image: url('../images/poly-vereinslokal-pohlgasse.webp');
  background-color: #1a1a1a;
}

.poly-cap {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-text);
  margin-top: 0.4rem;
  line-height: 1;
}

/* Positionen der einzelnen Polaroids */
.poly-1 {
  top: 0;
  left: 5%;
  transform: rotate(-7deg) translateY(calc(var(--scroll) * -90px));
  z-index: 3;
}

.poly-2 {
  top: 14%;
  right: 0;
  transform: rotate(5deg) translateY(calc(var(--scroll) * -130px));
  z-index: 2;
}

.poly-3 {
  bottom: 12%;
  left: 18%;
  transform: rotate(-3deg) translateY(calc(var(--scroll) * -60px));
  z-index: 4;
}

/* Maskottchen – Galatasaray Löwe unten rechts */
.stats-mascot {
  position: absolute;
  bottom: -2%;
  right: -4%;
  width: 320px;
  height: 320px;
  background-image: url('../images/galatasaray-loewe.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.35));
  z-index: 5;
  transform:
    translateY(calc(var(--scroll) * -40px))
    rotate(calc(var(--scroll) * 4deg));
  will-change: transform;
  pointer-events: none;
}

@media (max-width: 989px) {
  .stats-mascot {
    width: 220px;
    height: 220px;
    right: -6%;
  }
}

/* Fußball rollt beim Scrollen nach links */
.stats-ball {
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: -2%;
  right: 22%;
  z-index: 6;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.35));
  /* Bewegung: rollt um bis zu 450px nach links + Rotation */
  transform:
    translateX(calc(var(--scroll) * -450px))
    rotate(calc(var(--scroll) * -1080deg));
  will-change: transform;
}

.stats-ball svg,
.stats-ball img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.stat-item {
  position: relative;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--color-red);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text);
  line-height: 1.3;
}

/* ============================================================
   POLAROIDS
   ============================================================ */
.polaroids-section {
  background: var(--color-bg-alt);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.polaroids {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 var(--gutter);
  max-width: var(--container-w);
  margin: 0 auto;
}

.polaroid {
  background: #fff;
  padding: 1rem 1rem 3rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18), 0 6px 12px rgba(0,0,0,0.08);
  position: relative;
  width: 280px;
  transition: transform var(--transition);
}

.polaroid:hover { transform: translateY(-8px) rotate(0deg) !important; }

.polaroid:nth-child(1) { transform: rotate(-6deg); }
.polaroid:nth-child(2) { transform: rotate(3deg); z-index: 2; }
.polaroid:nth-child(3) { transform: rotate(-3deg); }

.polaroid::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 100px;
  height: 24px;
  background: rgba(251, 179, 0, 0.55);
  border-radius: 2px;
}

.polaroid-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-alt);
}

.polaroid-1 .polaroid-img {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  position: relative;
}

.polaroid-2 .polaroid-img {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #d99500 100%);
  position: relative;
}

.polaroid-3 .polaroid-img {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.polaroid-img::after {
  content: 'GS';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}

.polaroid-caption {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  text-align: center;
  color: var(--color-text);
  margin-top: 0.5rem;
}

/* ============================================================
   FOUNDERS SECTION – Bülent Eken Brief
   ============================================================ */
.founders-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f7f4ee 0%, #efe9dc 100%);
  position: relative;
  overflow: hidden;
}

.founders-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(169,4,50,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(251,179,0,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.founders-intro {
  max-width: 880px;
  margin: 0 auto 4rem;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}

.founders-intro h2 { margin-bottom: 1.5rem; }
.founders-intro p {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}
.founders-intro strong { color: var(--color-red); font-weight: 700; }

.founder-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 4rem;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* === Foto Bülent Eken === */
.founder-photo {
  position: sticky;
  top: 120px;
  text-align: center;
}

.founder-photo-frame {
  background: #fff;
  padding: 1rem 1rem 1.5rem;
  box-shadow:
    0 22px 50px rgba(0,0,0,0.18),
    0 4px 10px rgba(0,0,0,0.08);
  transform: rotate(-2deg);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: inline-block;
  position: relative;
}

.founder-photo-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 110px;
  height: 26px;
  background: rgba(251, 179, 0, 0.55);
  border-radius: 2px;
  z-index: 2;
}

.founder-photo-frame:hover { transform: rotate(0deg) scale(1.02); }

.founder-photo-frame img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  filter: sepia(0.18) contrast(1.05);
}

.founder-photo-caption {
  margin-top: 1.75rem;
  font-family: var(--font-body);
}
.founder-photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}
.founder-photo-caption span {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-light, #555);
  letter-spacing: 0.02em;
}
.founder-photo-note {
  margin-top: 0.5rem !important;
  font-style: italic;
  color: var(--color-red) !important;
}

/* === Brief-Karte === */
.letter-card {
  position: relative;
}

.letter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: -1px;
  position: relative;
  z-index: 3;
  padding-left: 1rem;
}

.letter-tab {
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(0,0,0,0.08);
  border-bottom: none;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--color-text-light, #666);
  transition: all var(--transition);
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.letter-tab:hover { color: var(--color-red); background: rgba(255,255,255,0.7); }

.letter-tab.active {
  background: #fdfaf2;
  color: var(--color-red);
  border-bottom: 1px solid #fdfaf2;
  top: 0;
}

.letter-tab.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red) 50%, var(--color-yellow) 50%);
}

.letter-paper {
  background: #fdfaf2;
  background-image:
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(0,0,0,0.04) 31px 32px),
    radial-gradient(ellipse at top left, rgba(120,80,30,0.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(120,80,30,0.08), transparent 60%);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  box-shadow:
    0 25px 50px rgba(0,0,0,0.10),
    0 6px 12px rgba(0,0,0,0.05),
    inset 0 0 60px rgba(180,140,60,0.08);
  min-height: 600px;
}

.letter-paper::before,
.letter-paper::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.letter-paper::before {
  top: 0; left: 0;
  background: linear-gradient(135deg, rgba(120,80,30,0.12) 0%, transparent 60%);
}
.letter-paper::after {
  bottom: 0; right: 0;
  background: linear-gradient(315deg, rgba(120,80,30,0.12) 0%, transparent 60%);
}

.letter-tape {
  position: absolute;
  top: -18px;
  right: 40px;
  width: 130px;
  height: 32px;
  background: rgba(251, 179, 0, 0.55);
  border-radius: 2px;
  transform: rotate(4deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}

.letter-content {
  display: none;
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #2b2418;
  animation: letterFade 0.5s ease both;
}

.letter-content.active { display: block; }

@keyframes letterFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.letter-date {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: right;
}

.letter-greeting {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem !important;
  color: var(--color-black);
}

.letter-content p {
  margin-bottom: 1rem;
}

.letter-content em {
  font-style: italic;
  color: var(--color-red);
}

.letter-signature {
  margin-top: 2rem !important;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-red);
  text-align: right;
  letter-spacing: 0.02em;
}

@media (max-width: 989px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-photo {
    position: static;
    text-align: center;
  }
  .founder-photo-frame img { max-width: 260px; }
  .letter-paper { padding: 2.5rem 1.75rem 2rem; min-height: 0; }
  .letter-content { font-size: 1.25rem; }
  .letter-greeting { font-size: 1.4rem; }
}

@media (max-width: 560px) {
  .letter-tabs { padding-left: 0; }
  .letter-tab { flex: 1; padding: 0.7rem 1rem; font-size: 0.85rem; }
  .letter-tape { right: 24px; width: 90px; }
}

/* ============================================================
   SOCIAL MEDIA SECTION
   ============================================================ */
.social-section {
  padding: 6rem 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Löwe Maskottchen – schaut von links unten in den Bereich */
.social-mascot {
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 340px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.35));
  transform: rotate(-6deg);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  animation: mascotFloat 6s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-10px); }
}

@media (max-width: 989px) {
  .social-mascot {
    width: 200px;
    left: -50px;
    bottom: -20px;
    opacity: 0.55;
  }
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.social-text h2 { margin-bottom: 1.5rem; }
.social-text p { font-size: 1.125rem; margin-bottom: 2rem; }

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a,
.social-icons .social-icon-static {
  width: 56px;
  height: 56px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all var(--transition);
}

.social-icons a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-3px);
}

.social-icons .social-icon-static {
  cursor: default;
  opacity: 0.85;
}

.social-icons svg { width: 24px; height: 24px; }

.insta-grid {
  position: relative;
  min-height: 200px;
}

/* Behold-Widget Styling – passt sich automatisch in das Grid ein */
.insta-grid behold-widget {
  display: block;
  width: 100%;

  /* Behold-eigene CSS-Variablen für die Custom-Element-Anpassung */
  --behold-row-gap: 8px;
  --behold-column-gap: 8px;
  --behold-border-radius: 0;
  --behold-aspect-ratio: 1 / 1;
}

/* Insta-Handle als klickbarer Link */
.insta-handle {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--transition);
}

.insta-handle:hover { color: var(--color-yellow); }

.hashtags {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--color-red);
  margin-top: 1.5rem;
  transform: rotate(-6deg);
  display: inline-block;
}

/* ============================================================
   NEWS / BLOG SLIDER
   ============================================================ */
.news-section {
  padding: 6rem 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.news-section h2,
.news-section .eyebrow,
.news-section .news-intro { color: #fff; }

.news-section .eyebrow { color: var(--color-yellow); }

.news-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 0 var(--gutter);
}

.news-intro {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.news-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.news-card:hover { transform: translateY(-6px); }

.news-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news-card-img.red { background: linear-gradient(135deg, var(--color-red), var(--color-red-dark)); }
.news-card-img.yellow { background: linear-gradient(135deg, var(--color-yellow), #d99500); }
.news-card-img.dark { background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }

.news-card-img-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.95);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
}

.news-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.875rem;
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.news-card-excerpt {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: 1rem;
}

.news-card .btn {
  align-self: flex-start;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.news-actions {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============================================================
   RSS Sprachumschalter (TR / EN)
   ============================================================ */
.rss-lang-switch {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 2.5rem;
  padding: 0 var(--gutter);
}

.rss-lang {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: all var(--transition);
}

.rss-lang + .rss-lang { margin-left: -1px; }

.rss-lang:hover { color: #fff; background: rgba(255,255,255,0.05); }

.rss-lang.active {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}

/* === RSS Loader === */
.rss-loader {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(255,255,255,0.7);
}

.rss-loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--color-yellow);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  animation: spin 0.9s linear infinite;
}

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

.rss-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: rgba(255,255,255,0.85);
  background: rgba(169,4,50,0.15);
  border: 1px solid rgba(169,4,50,0.4);
}

/* === RSS News Cards (Bildhintergrund aus dem Feed) === */
.rss-news-grid .news-card {
  position: relative;
}

.rss-news-grid .news-card-img {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.rss-news-grid .news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.rss-source-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  z-index: 2;
  border-radius: 2px;
}

/* ============================================================
   RSS-News auf Mobile = Akkordeon
   ============================================================ */
@media (max-width: 768px) {
  .rss-news-grid {
    grid-template-columns: 1fr !important;
    gap: 0.6rem;
  }

  .rss-news-grid .news-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-areas:
      "img header"
      "body body";
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .rss-news-grid .news-card:hover { transform: none; }

  .rss-news-grid .news-card-img {
    grid-area: img;
    aspect-ratio: 1 / 1;
    min-height: 100%;
  }

  .rss-news-grid .news-card-img-text { font-size: 1.3rem; }

  .rss-news-grid .rss-source-badge {
    top: 6px; left: 6px;
    font-size: 0.55rem;
    padding: 3px 6px;
  }

  .rss-news-grid .news-card-body {
    grid-area: header;
    padding: 0.85rem 2.5rem 0.85rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
  }

  .rss-news-grid .news-date {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .rss-news-grid .news-card h3 {
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Chevron rechts */
  .rss-news-grid .news-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.35s ease;
  }

  /* Excerpt + Button initial versteckt, beim Klick eingeblendet */
  .rss-news-grid .news-card-excerpt,
  .rss-news-grid .news-card .btn {
    grid-area: body;
    display: none;
  }

  .rss-news-grid .news-card.expanded {
    box-shadow: 0 6px 18px rgba(169,4,50,0.25);
  }

  .rss-news-grid .news-card.expanded::after {
    transform: translateY(-30%) rotate(225deg);
  }

  .rss-news-grid .news-card.expanded .news-card-excerpt {
    display: block;
    padding: 0 1rem 0.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
    animation: cardSlideDown 0.35s ease;
  }

  .rss-news-grid .news-card.expanded .btn {
    display: inline-flex;
    margin: 0 1rem 1rem;
    align-self: start;
    animation: cardSlideDown 0.45s ease;
  }

  @keyframes cardSlideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 7rem 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: start; /* Karten dehnen sich nicht aneinander aus */
}

.review-card {
  background: var(--color-bg-alt);
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.review-header {
  margin-bottom: 0;
}

.review-stars {
  color: var(--color-yellow);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.review-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin-bottom: 0.2rem;
  text-transform: none;
}

.review-date {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Chevron rechts */
.review-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s ease;
}

.review-text {
  display: none;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
}

.review-card.expanded {
  box-shadow: 0 6px 18px rgba(169,4,50,0.18);
}

.review-card.expanded::after {
  transform: translateY(-30%) rotate(225deg);
}

.review-card.expanded .review-text {
  display: block;
  animation: reviewSlideDown 0.35s ease;
}

@keyframes reviewSlideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .review-cards {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .review-card { padding: 1rem 2.75rem 1rem 1.25rem; }
  .review-card .review-stars { font-size: 0.9rem; }
  .review-card .review-name { font-size: 1rem; }
  .review-card .review-date { font-size: 0.75rem; }
  .review-text { font-size: 0.92rem; line-height: 1.5; }
}

/* ============================================================
   ZAUNFAHNEN / GALLERY SLIDER
   ============================================================ */
.gallery-section {
  padding: 6rem 0 8rem;
  background: var(--color-bg);
  position: relative;
}

.gallery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding: 0 var(--gutter);
}

/* === Filter Chips === */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--container-w);
  margin: 0 auto 2.5rem;
  padding: 0 var(--gutter);
}

.gallery-chip {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  border-radius: 999px;
  transition: all var(--transition);
}

.gallery-chip:hover {
  background: rgba(169,4,50,0.06);
  border-color: var(--color-red);
  color: var(--color-red);
}

.gallery-chip.active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(169,4,50,0.3);
}

/* === Modern Snap-Slider === */
.gallery-stage {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem var(--gutter) 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  position: relative;
  scroll-snap-align: center;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: zoom-in;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.45s ease,
              opacity 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.gallery-slide.hidden {
  display: none;
}

.gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

.gallery-slide-cap {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gs-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 4px 9px;
  margin-bottom: 0.5rem;
  border-radius: 2px;
}

.gallery-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.25);
}

.gallery-slide:hover img {
  transform: scale(1.06);
}

.gallery-slide:hover::before {
  opacity: 1;
}

/* === Navigation Pfeile === */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--color-red);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.gallery-nav svg {
  width: 22px;
  height: 22px;
}

.gallery-nav-prev { left: 1.5rem; }
.gallery-nav-next { right: 1.5rem; }

.gallery-nav:hover {
  background: var(--color-red);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

/* === Progress-Leiste === */
.gallery-progress {
  max-width: 700px;
  height: 3px;
  margin: 0.5rem auto 0;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.gallery-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
  transition: width 0.3s ease;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .gallery-track {
    grid-auto-columns: 78vw;
    padding: 0.5rem 1rem 1.5rem;
  }
  .gallery-nav {
    width: 44px; height: 44px;
  }
  .gallery-nav-prev { left: 0.5rem; }
  .gallery-nav-next { right: 0.5rem; }
  .gallery-slide-cap { font-size: 1rem; }
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-stage {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  background: #111;
}

.lightbox-caption {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0;
  line-height: 1.4;
}

.lightbox-counter {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  width: 52px;
  height: 52px;
  cursor: pointer;
  font-size: 2rem;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.lightbox-close { top: 24px; right: 24px; font-size: 1.6rem; }
.lightbox-prev  { top: 50%; left: 24px;  transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 24px; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

@media (max-width: 768px) {
  .lightbox { padding: 1rem; }
  .lightbox-close, .lightbox-prev, .lightbox-next {
    width: 44px; height: 44px; font-size: 1.5rem;
  }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-prev  { left: 8px; }
  .lightbox-next  { right: 8px; }
  .lightbox-caption { font-size: 0.95rem; }
}

/* ============================================================
   PARTNER CAROUSELS
   ============================================================ */
.partners-section {
  padding: 5rem 0;
  background: var(--color-bg);
  overflow: hidden;
}

.partners-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}

.partners-header p { font-size: 1.125rem; }

.partner-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  margin-bottom: 1.5rem;
  animation: scroll-left 60s linear infinite;
}

.partner-track.reverse {
  animation: scroll-right 60s linear infinite;
}

.partner-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.partner-logo {
  flex-shrink: 0;
  height: 90px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  transition: all var(--transition);
}

.partner-logo img {
  max-height: 70px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .partner-logo { height: 70px; padding: 0 0.5rem; }
  .partner-logo img { max-height: 54px; max-width: 130px; }
  .partner-track { gap: 2rem; }
}

/* ============================================================
   PAGE HEADER (Unterseiten)
   ============================================================ */
.page-header {
  background: var(--color-black);
  color: #fff;
  padding: 8rem var(--gutter) 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,15,15,0.7) 0%, rgba(169,4,50,0.5) 100%),
    radial-gradient(circle at 70% 30%, rgba(251,179,0,0.15) 0%, transparent 50%);
}

.page-header > * { position: relative; z-index: 1; }

.page-header h1 { color: #fff; }
.page-header .eyebrow { color: var(--color-yellow); }
.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 720px;
  margin: 1.5rem auto 0;
}

/* ============================================================
   TIMELINE / CHRONIK (Über uns)
   ============================================================ */
.timeline {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-red);
  line-height: 1;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

.timeline-content p { color: var(--color-text-light); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.team-member { text-align: left; }

.team-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  position: relative;
}

.team-photo.red { background: linear-gradient(135deg, var(--color-red), var(--color-red-dark)); }
.team-photo.yellow { background: linear-gradient(135deg, var(--color-yellow), #d99500); color: rgba(0,0,0,0.15); }

.team-member h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.team-member .role {
  color: var(--color-red);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   COOKIE-BANNER (Rot-Gelb-Design)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 10000;
  max-width: 580px;
  width: calc(100% - 2rem);
  background: linear-gradient(135deg, #0f0a0a 0%, #1a1a1a 60%, #2a0008 100%);
  color: #fff;
  padding: 1.4rem 1.5rem 1.25rem;
  border-radius: 10px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(251, 179, 0, 0.25);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red) 50%, var(--color-yellow) 50%, var(--color-yellow) 100%);
  border-radius: 10px 10px 0 0;
}

.cookie-banner-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cookie-banner-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow), #d99500);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-banner-icon svg { width: 18px; height: 18px; }

.cookie-banner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner p a {
  color: var(--color-yellow);
  text-decoration: underline;
  text-decoration-color: rgba(251, 179, 0, 0.4);
  text-underline-offset: 3px;
}

.cookie-banner p a:hover { text-decoration-color: var(--color-yellow); }

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.cookie-btn {
  padding: 0.7rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #d99500 100%);
  color: var(--color-black);
  flex: 1;
  min-width: 160px;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(251, 179, 0, 0.35);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(251, 179, 0, 0.5);
}

.cookie-btn-essential {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.cookie-btn-essential:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 560px) {
  .cookie-banner {
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 1.2rem 1.25rem 1rem;
  }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }
}

/* ============================================================
   LEGAL-SEITEN (Impressum & Datenschutz)
   ============================================================ */
.legal-section {
  padding: 5rem var(--gutter) 6rem;
  background: var(--color-bg);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 3rem 2.75rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  line-height: 1.65;
  color: var(--color-text);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-red);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(169,4,50,0.1);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 1.5rem 0 0.6rem;
  color: var(--color-black);
}

.legal-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.legal-content ul li {
  padding: 0.25rem 0;
  font-size: 0.98rem;
}

.legal-content a {
  color: var(--color-red);
  text-decoration: underline;
  text-decoration-color: rgba(169,4,50,0.3);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.legal-content a:hover { color: var(--color-red-dark); text-decoration-color: var(--color-red); }

.legal-content strong { color: var(--color-black); font-weight: 700; }

.legal-block {
  background: var(--color-bg-alt);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--color-red);
  margin: 1rem 0;
  font-size: 0.98rem;
}

.legal-dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.6rem 1.5rem;
  margin: 1rem 0 1.5rem;
}

.legal-dl dt {
  font-weight: 700;
  color: var(--color-black);
  font-size: 0.95rem;
}

.legal-dl dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text);
}

.legal-dl dd small { color: var(--color-text-light); font-size: 0.85rem; }

.legal-meta {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.88rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .legal-content { padding: 2rem 1.5rem; }
  .legal-dl { grid-template-columns: 1fr; gap: 0.25rem 0; }
  .legal-dl dt { margin-top: 0.75rem; }
  .legal-dl dt:first-child { margin-top: 0; }
}

/* Erweiterung des Footers für 4-Spalten-Layout */
.site-footer .footer-grid {
  grid-template-columns: 1.4fr 1.6fr 1fr 1fr 1fr;
}

@media (max-width: 989px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MITGLIEDSCHAFT-SEITE
   ============================================================ */
.membership-header {
  background:
    radial-gradient(ellipse at top, rgba(169,4,50,0.25) 0%, transparent 60%),
    linear-gradient(135deg, #0f0a0a 0%, #1a1a1a 50%, #2a0008 100%);
}

.membership-benefits-section { padding-bottom: 5rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-w);
  margin: 4rem auto 0;
  padding: 0 var(--gutter);
}

.benefit-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.25rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.10);
  border-color: rgba(169,4,50,0.18);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), #8a0028);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--color-yellow), #d99500);
  color: var(--color-black);
  transform: scale(1.08) rotate(-6deg);
}

.benefit-icon svg { width: 26px; height: 26px; }

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.benefit-card p {
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

/* === STEPS === */
.how-it-works-section {
  background: var(--color-bg-alt);
  padding: 5rem var(--gutter);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.step-card {
  background: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.step-card p {
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}

/* === FORMULAR === */
.membership-form-section {
  padding: 5rem var(--gutter) 6rem;
  background: var(--color-bg);
}

.membership-form {
  max-width: 760px;
  margin: 4rem auto 0;
  background: #fff;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.form-group { margin-bottom: 2.5rem; }
.form-group:last-of-type { margin-bottom: 1.5rem; }

.form-group-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.form-group-section:nth-of-type(2) {
  border-bottom: none;
  padding-bottom: 0;
}

.form-group-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-red);
  background: rgba(169,4,50,0.08);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.form-group-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.form-group-header p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-row:last-child { margin-bottom: 0; }

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
}

.form-field label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 0.45rem;
}

.required {
  color: var(--color-red);
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  background: var(--color-bg-alt);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: all var(--transition);
  border-radius: 2px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(169,4,50,0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg-alt);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.checkbox-label:hover {
  background: rgba(169,4,50,0.04);
  border-color: rgba(169,4,50,0.18);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--color-red);
  cursor: pointer;
}

.checkbox-text { flex: 1; }

/* Submit */
.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.form-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .membership-form { padding: 2rem 1.5rem; }
}

/* ============================================================
   EVENTS: CHAMPIONSHIP HERO
   ============================================================ */
.championship-header {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(251,179,0,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(169,4,50,0.25) 0%, transparent 50%),
    linear-gradient(135deg, #1a0710 0%, #0a0a0a 60%, #1a0a02 100%);
  padding: 6rem var(--gutter) 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.championship-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.championship-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }

.championship-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 2rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(251,179,0,0.4);
  border-radius: 999px;
  background: rgba(251,179,0,0.08);
  backdrop-filter: blur(8px);
}

.champ-star { color: var(--color-yellow); font-size: 1rem; }

.championship-title {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.champ-num {
  font-family: var(--font-display);
  font-size: clamp(7rem, 17vw, 13rem);
  line-height: 0.8;
  background: linear-gradient(180deg, #fff3c4 0%, var(--color-yellow) 35%, #d99500 70%, #8a5e00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(251,179,0,0.4);
  letter-spacing: -0.03em;
}

.champ-suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.champ-line-1 {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.champ-line-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.championship-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto 3rem;
}

.championship-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.champ-meta-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.champ-meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), #6e0020);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.champ-meta-icon svg { width: 18px; height: 18px; }

.champ-meta-item strong {
  display: block;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.champ-meta-item span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  margin-top: 2px;
}

.championship-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-yellow) 0%, #d99500 100%);
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(251,179,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-ticket svg { width: 20px; height: 20px; }

.btn-ticket:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(251,179,0,0.55);
}

/* Variante: „Tickets bald online" mit Schloss-Icon */
.btn-ticket-soon {
  background: rgba(255,255,255,0.06);
  color: var(--color-yellow);
  border: 1px solid rgba(251,179,0,0.4);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  cursor: default;
}

.btn-ticket-soon:hover {
  transform: none;
  background: rgba(251,179,0,0.12);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

.btn-ticket-soon svg { width: 18px; height: 18px; }

/* Tickets-Coming-Soon-Sektion (heller Hintergrund-Variante) */
.tickets-soon-section {
  background: linear-gradient(180deg, #fdfaf2 0%, #f7f2e6 100%);
  padding: 5rem var(--gutter);
  position: relative;
}

.tickets-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-yellow) 50%, transparent 100%);
}

.tickets-soon-section .btn-ticket-soon {
  background: var(--color-black);
  color: var(--color-yellow);
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.tickets-soon-section .btn-ticket-soon:hover {
  background: #1a1a1a;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.tickets-soon-section .intro-block p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 1rem auto 0;
}

.tickets-soon-section .intro-block strong { color: var(--color-red); }

/* Gast-Foto als echtes Bild */
.guest-photo-image { padding: 0; overflow: hidden; }

.guest-photo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.guest-card-revealed:hover .guest-photo-image img {
  transform: scale(1.04);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* === COUNTDOWN === */
.countdown-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 1rem;
}

.countdown-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.countdown-cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(251,179,0,0.25);
  padding: 1.25rem 0.5rem;
  border-radius: 6px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.countdown-cell:hover {
  background: rgba(251,179,0,0.08);
  border-color: rgba(251,179,0,0.5);
}

.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--color-yellow);
  letter-spacing: 0.02em;
  text-shadow: 0 0 25px rgba(251,179,0,0.45);
}

.countdown-cell-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--color-red);
  color: #fff;
  padding: 0.85rem var(--gutter);
}

.announcement-bar-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  text-align: center;
  flex-wrap: wrap;
}

.announcement-bar strong { color: var(--color-yellow); }

.announcement-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 0 rgba(251,179,0,0.7);
  animation: announce-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes announce-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(251,179,0,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(251,179,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(251,179,0,0); }
}

/* === PROGRAMM CARDS === */
.championship-section { padding: 6rem var(--gutter) 5rem; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--container-w);
  margin: 4rem auto 0;
}

.program-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.25rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
  border-color: rgba(251,179,0,0.3);
}

.program-card-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, #1a0710 0%, #1a1a1a 100%);
  color: #fff;
  border-color: rgba(251,179,0,0.25);
  position: relative;
}

.program-card-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
}

.program-card-feature h3 { color: #fff; }
.program-card-feature p { color: rgba(255,255,255,0.75); }
.program-card-feature strong { color: var(--color-yellow); }
.program-card-feature .program-icon { background: linear-gradient(135deg, var(--color-yellow), #d99500); color: var(--color-black); }

.program-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), #8a0028);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.program-card:hover .program-icon { transform: scale(1.1) rotate(-6deg); }

.program-icon svg { width: 26px; height: 26px; }

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.program-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.program-card em { color: var(--color-red); font-style: italic; }

/* === GÄSTE === */
.guests-section { background: var(--color-bg-alt); padding: 6rem var(--gutter); }

.guests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-w);
  margin: 4rem auto 0;
}

.guest-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.35s ease;
}

.guest-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }

.guest-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guest-photo-emre {
  background: linear-gradient(135deg, var(--color-red) 0%, #6e0020 100%);
}

.guest-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.guest-revealed-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.guest-card-mystery .guest-photo {
  background:
    repeating-linear-gradient(45deg, #1a1a1a 0 10px, #0e0e0e 10px 20px);
  position: relative;
}

.guest-card-mystery .guest-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(251,179,0,0.12) 0%, transparent 70%);
}

.guest-question {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(251,179,0,0.85);
  text-shadow: 0 0 40px rgba(251,179,0,0.5);
  animation: mystery-pulse 2.5s ease-in-out infinite;
}

@keyframes mystery-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

.guest-info {
  padding: 1.5rem 1.5rem 1.75rem;
}

.guest-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.3rem;
  text-transform: none;
}

.guest-card-mystery .guest-info h3 { color: var(--color-text-light); font-style: italic; }

.guest-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.85rem;
}

.guest-card-mystery .guest-role { color: rgba(0,0,0,0.4); }

.guest-info p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-light);
  margin: 0;
}

.guests-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
  color: var(--color-text-light);
}

.guests-note a { color: var(--color-red); font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }

/* === TICKETS === */
.tickets-section { padding: 6rem var(--gutter); background: var(--color-bg); }

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-w);
  margin: 4rem auto 0;
  align-items: stretch;
}

.ticket-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.ticket-card-featured {
  background: linear-gradient(180deg, #fffdf5 0%, #fff7e0 100%);
  border-color: var(--color-yellow);
  box-shadow: 0 14px 35px rgba(251,179,0,0.18);
  transform: scale(1.03);
}

.ticket-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.ticket-tag, .ticket-tag-featured {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 1rem;
  align-self: flex-start;
  border-radius: 2px;
}

.ticket-tag { background: rgba(169,4,50,0.1); color: var(--color-red); }
.ticket-tag-featured { background: var(--color-yellow); color: var(--color-black); }

.ticket-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ticket-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.ticket-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}

.ticket-features li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ticket-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

.ticket-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.ticket-card .btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.tickets-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* === Highlight in der Event-Liste === */
.event-item-highlight {
  background: linear-gradient(135deg, #fffaf0 0%, #fff7e0 100%) !important;
  border-left: 4px solid var(--color-yellow);
  box-shadow: 0 6px 18px rgba(251,179,0,0.18);
}

.event-date-highlight {
  background: linear-gradient(135deg, var(--color-yellow), #d99500) !important;
  color: var(--color-black) !important;
}

.event-date-highlight .day, .event-date-highlight .month { color: var(--color-black) !important; }

.other-events-section { padding-top: 5rem; }

/* === Responsive === */
@media (max-width: 989px) {
  .championship-meta { grid-template-columns: 1fr; gap: 0.75rem; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card-feature { grid-column: span 2; }
  .guests-grid { grid-template-columns: repeat(2, 1fr); }
  .tickets-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ticket-card-featured { transform: none; }
  .ticket-card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .championship-title { flex-direction: column; align-items: center; gap: 0.75rem; }
  .champ-suffix { align-items: center; text-align: center; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card-feature { grid-column: span 1; }
  .guests-grid { grid-template-columns: 1fr; }
  .countdown-grid { gap: 0.5rem; }
  .countdown-cell { padding: 1rem 0.25rem; }
}

/* ============================================================
   ÜBER-UNS: GRÜNDUNG 2003 HERO
   ============================================================ */
.founding-hero {
  background: linear-gradient(180deg, #fff 0%, #f7f4ee 100%);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.founding-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
}

.founding-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.founding-hero-visual {
  position: relative;
}

.founding-hero-image {
  position: relative;
  background: #fff;
  padding: 1rem 1rem 2rem;
  box-shadow:
    0 22px 50px rgba(0,0,0,0.18),
    0 4px 10px rgba(0,0,0,0.08);
  transform: rotate(-2deg);
}

.founding-hero-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 130px;
  height: 26px;
  background: rgba(251, 179, 0, 0.55);
  border-radius: 2px;
  z-index: 2;
}

.founding-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: sepia(0.1) contrast(1.02);
}

.founding-hero-image-cap {
  display: block;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-top: 0.75rem;
}

.founding-hero-year {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: var(--color-red);
  color: #fff;
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(169, 4, 50, 0.35);
  transform: rotate(3deg);
}

.founding-hero-year-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.founding-hero-year-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  color: var(--color-yellow);
}

.founding-hero-text .eyebrow { color: var(--color-red); }

.founding-hero-text h2 {
  margin-bottom: 1.5rem;
}

.founding-hero-text p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.founding-hero-text strong {
  color: var(--color-red);
  font-weight: 700;
}

.founding-hero-text .btn {
  margin-top: 1rem;
}

/* ============================================================
   ÜBER-UNS: WERTE GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--container-w);
  margin: 4rem auto 0;
  padding: 0 var(--gutter);
}

.value-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-red);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: rgba(169, 4, 50, 0.18);
}

.value-card:hover::before { width: 100%; }

.value-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-red);
  opacity: 0.18;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.value-card p {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 1rem;
}

/* ============================================================
   ÜBER-UNS: VORSTAND mit minimalen Avataren
   ============================================================ */
.vorstand-section { padding-top: 6rem; padding-bottom: 6rem; }

.vorstand-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin: 3rem 0 1.75rem;
  position: relative;
}

.vorstand-subtitle::before,
.vorstand-subtitle::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(169, 4, 50, 0.3);
  vertical-align: middle;
  margin: 0 1rem;
}

.vorstand-subtitle-second { margin-top: 4.5rem; }

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.vorstand-grid-members {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
}

/* Unified Grid – alle 10 Vorstandsmitglieder in einem Grid */
.vorstand-grid-unified {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  gap: 1rem;
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .vorstand-grid-unified { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 989px) {
  .vorstand-grid-unified { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .vorstand-grid-unified { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .vorstand-grid-unified { grid-template-columns: 1fr; }
}

/* Längere Texte sauber umbrechen */
.vorstand-grid-unified .vorstand-role {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 0 0.2rem;
}

.vorstand-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.vorstand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  border-color: rgba(169, 4, 50, 0.18);
}

.vorstand-card-lead {
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  border-color: rgba(251, 179, 0, 0.3);
}

.vorstand-card-lead::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
}

.vorstand-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vorstand-card:hover .vorstand-avatar { transform: scale(1.06) rotate(-4deg); }

.avatar-red       { background: linear-gradient(135deg, #c50538 0%, #8a0028 100%); }
.avatar-yellow    { background: linear-gradient(135deg, #fbb300 0%, #d99500 100%); color: var(--color-black); }
.avatar-dark      { background: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%); }
.avatar-red-soft  { background: linear-gradient(135deg, #c50538 0%, #6e0020 100%); opacity: 0.92; }
.avatar-yellow-soft { background: linear-gradient(135deg, #fbb300 0%, #b87a00 100%); color: var(--color-black); opacity: 0.92; }

.vorstand-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 0.3rem;
  color: var(--color-text);
}

.vorstand-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
}

.vorstand-card:not(.vorstand-card-lead) .vorstand-role {
  color: var(--color-text-light);
}

.vorstand-note {
  text-align: center;
  margin: 4rem auto 0;
  max-width: 620px;
  padding: 0 var(--gutter);
  font-size: 1rem;
  color: var(--color-text-light);
  font-style: italic;
}

.vorstand-note strong { color: var(--color-red); font-style: normal; }

@media (max-width: 989px) {
  .founding-hero-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .founding-hero-year { right: 20px; bottom: -25px; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .vorstand-grid { grid-template-columns: repeat(2, 1fr); }
  .vorstand-grid-members { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .vorstand-grid { grid-template-columns: 1fr; }
  .vorstand-grid-members { grid-template-columns: 1fr; }
  .vorstand-card { padding: 1.5rem 1rem 1.25rem; }
  .founding-hero { padding: 4rem 0 5rem; }
  .founding-hero-year { right: 10px; padding: 1rem 1.25rem; }
}

/* ============================================================
   NEWS PAGE – Galatasaray.org Live Feed
   ============================================================ */
.news-page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a0009 100%);
  position: relative;
  overflow: hidden;
}

.news-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(169,4,50,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(251,179,0,0.10) 0%, transparent 45%);
  pointer-events: none;
}

.news-page-hero > * { position: relative; z-index: 1; }

.news-page-livebar {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}

.news-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5eff8e;
  box-shadow: 0 0 0 0 rgba(94, 255, 142, 0.7);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(94, 255, 142, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(94, 255, 142, 0); }
  100% { box-shadow: 0 0 0 0   rgba(94, 255, 142, 0); }
}

.news-page-section {
  padding: 5rem 0 7rem;
  background: var(--color-bg);
}

.news-page-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--container-w);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}

.news-page-langswitch { margin: 0; }

.news-page-meta {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.news-page-meta strong { color: var(--color-red); }

/* ===== Featured Karte (großer Hero-Artikel) ===== */
.news-featured {
  max-width: var(--container-w);
  margin: 0 auto 3.5rem;
  padding: 0 var(--gutter);
  min-height: 100px;
}

.news-featured .news-featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: #fff;
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-featured .news-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(169,4,50,0.18);
}

.news-featured-img {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  position: relative;
  min-height: 380px;
}

.news-featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.4) 100%);
}

.news-featured-img .news-featured-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.4);
  font-size: 3rem;
  letter-spacing: 0.1em;
}

.news-featured-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}

.news-featured-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.news-featured-body .news-date {
  margin: 0;
  color: var(--color-red);
}

.news-featured-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.news-featured-body p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-text-light);
  margin: 0;
}

.news-featured-body .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ===== Grid mit weiteren Artikeln ===== */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.news-page-grid .news-card {
  position: relative;
}

.news-page-grid .news-card-img {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  aspect-ratio: 16/10;
  position: relative;
}

.news-page-grid .news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.news-page-grid .rss-source-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}

.news-page-actions {
  text-align: center;
  margin-top: 4rem;
}

/* ===== Akkordeon auf Mobile (wie bei der Startseite) ===== */
@media (max-width: 768px) {
  .news-featured {
    margin-bottom: 2rem;
    min-height: 0;
  }
  .news-featured .news-featured-card {
    grid-template-columns: 1fr;
  }
  .news-featured-img { min-height: 220px; aspect-ratio: 16/10; }
  .news-featured-body {
    padding: 1.75rem 1.5rem;
    gap: 0.75rem;
  }
  .news-featured-body h2 { font-size: 1.4rem; }
  .news-page-controls {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .news-page-meta { text-align: center; }

  /* Grid → Akkordeon */
  .news-page-grid {
    grid-template-columns: 1fr !important;
    gap: 0.6rem;
  }
  .news-page-grid .news-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-areas:
      "img header"
      "body body";
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .news-page-grid .news-card:hover { transform: none; }
  .news-page-grid .news-card-img {
    grid-area: img;
    aspect-ratio: 1 / 1;
    min-height: 100%;
  }
  .news-page-grid .rss-source-badge {
    top: 6px; left: 6px;
    font-size: 0.55rem;
    padding: 3px 6px;
  }
  .news-page-grid .news-card-body {
    grid-area: header;
    padding: 0.85rem 2.5rem 0.85rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
  }
  .news-page-grid .news-date { margin: 0; font-size: 0.7rem; letter-spacing: 0.04em; }
  .news-page-grid .news-card h3 {
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-page-grid .news-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.35s ease;
  }
  .news-page-grid .news-card-excerpt,
  .news-page-grid .news-card .btn { display: none; }
  .news-page-grid .news-card.expanded { box-shadow: 0 6px 18px rgba(169,4,50,0.25); }
  .news-page-grid .news-card.expanded::after {
    transform: translateY(-30%) rotate(225deg);
  }
  .news-page-grid .news-card.expanded .news-card-excerpt {
    display: block;
    grid-area: body;
    padding: 0 1rem 0.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .news-page-grid .news-card.expanded .btn {
    display: inline-flex;
    grid-area: body;
    margin: 0 1rem 1rem;
    align-self: start;
  }
}

.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 var(--gutter);
  margin-bottom: 3rem;
}

.filter-chip {
  padding: 0.65rem 1.5rem;
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.filter-chip:hover { background: var(--color-text); color: #fff; }

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

/* ============================================================
   EVENTS LIST
   ============================================================ */
.events-list {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--color-bg-alt);
  align-items: center;
  border-left: 4px solid var(--color-red);
  transition: all var(--transition);
}

.event-item:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.event-date {
  text-align: center;
  background: var(--color-red);
  color: #fff;
  padding: 0.75rem 0.5rem;
}

.event-date .day {
  font-family: var(--font-display);
  font-size: 2rem;
  display: block;
  line-height: 1;
}

.event-date .month {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  display: block;
}

.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}

.event-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex-wrap: wrap;
}

/* ============================================================
   MEMBERSHIP PLANS
   ============================================================ */
.membership {
  background: var(--color-bg-alt);
  padding: 6rem 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.plan {
  background: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid var(--color-red);
}

.plan.featured {
  background: var(--color-black);
  color: #fff;
  border-top-color: var(--color-yellow);
  transform: translateY(-12px);
}

.plan.featured::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: -16px;
  right: 1.5rem;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 0.4rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.plan h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan.featured h3 { color: var(--color-yellow); }

.plan-desc {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.plan.featured .plan-desc { color: rgba(255,255,255,0.7); }

.plan-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan.featured .plan-price { color: var(--color-yellow); }

.plan-price small {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text-light);
}

.plan.featured .plan-price small { color: rgba(255,255,255,0.6); }

.plan-features {
  margin: 2rem 0;
  padding: 0;
  flex: 1;
}

.plan-features li {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: 1.5rem;
}

.plan.featured .plan-features li { border-color: rgba(255,255,255,0.15); }

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

.plan.featured .plan-features li::before { color: var(--color-yellow); }

.plan .btn { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #ffffff;
  color: var(--color-text);
  padding: 5rem 0 2rem;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--color-red) 0%, var(--color-red) 50%, var(--color-yellow) 50%, var(--color-yellow) 100%) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.2fr;
  gap: 3rem;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 3rem;
  align-items: start;
}

.footer-logo {
  width: 200px;
  height: 200px;
  background-image: url('../images/GalatasarayAustriaLogo.png'), url('../images/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-contact h4 {
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer-contact p {
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.footer-contact a:hover { color: var(--color-red); }

.footer-col h4 {
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul a {
  color: var(--color-text);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--color-red); }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1.75rem var(--gutter) 0;
  max-width: var(--container-w);
  margin: 0 auto;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-credit {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  opacity: 1;
}

.footer-credit a {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  transition: opacity var(--transition);
}

.footer-credit a:hover { opacity: 0.75; }

@media (max-width: 989px) {
  .site-footer .footer-bottom {
    flex-direction: column !important;
    text-align: center;
    gap: 0.85rem !important;
    padding: 1.5rem var(--gutter) 1.5rem !important;
  }
  .footer-credit {
    display: block;
    width: 100%;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .stats-wrapper { grid-template-columns: 1fr; }
  .stats-visual { max-width: 400px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid, .reviews-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founded-section { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 989px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-actions { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .news-page-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan.featured { transform: none; }
  .event-item { grid-template-columns: 1fr; text-align: left; }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 105;
    gap: 1.5rem;
  }
  .main-nav.open a { font-size: 1.5rem; padding: 1rem; }
}

@media (max-width: 576px) {
  :root { --gutter: 1.25rem; }
  body { font-size: 16px; }
  .hero { min-height: 75vh; padding: 4rem 1.25rem 3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .polaroid { width: 240px; }
  .polaroid:nth-child(n) { transform: rotate(0deg); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ============================================================
   MOBILE FIXES (Stand 27.05.2026)
   ============================================================ */

/* 1) Horizontalen Scroll überall sicher verhindern */
@media (max-width: 989px) {
  .stats-wrapper,
  .social-section,
  .partners-section,
  .championship-header,
  .news-section,
  .gallery-section { overflow-x: hidden; }

  /* Polaroids/Maskottchen-Visual nicht aus dem Viewport ragen lassen */
  .stats-visual { max-width: 100%; overflow: hidden; }
}

/* 2) Löwen-Maskottchen in der Social-Section auf Mobile verstecken */
@media (max-width: 989px) {
  .social-mascot { display: none !important; }
}

/* 3) Partner-Logos Mobile: bessere Größe + sanftere Animation */
@media (max-width: 768px) {
  .partner-track {
    gap: 2rem;
    animation-duration: 80s !important;  /* langsamer, kein Geruckel */
  }
  .partner-logo {
    height: 60px;
    padding: 0 0.4rem;
  }
  .partner-logo img {
    max-height: 50px;
    max-width: 120px;
    /* Mobile: volle Farbe, kein Graustufen-Filter mehr */
    filter: grayscale(0%);
    opacity: 1;
  }
  .partners-section { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .partner-track { animation-duration: 100s !important; }
  .partner-logo { height: 54px; }
  .partner-logo img { max-height: 44px; max-width: 100px; }
}

/* 4) Footer auf Mobile zentrieren */
@media (max-width: 989px) {
  .site-footer { text-align: center; }
  .site-footer .footer-logo {
    margin: 0 auto 1.5rem;
  }
  .site-footer .footer-contact,
  .site-footer .footer-col {
    text-align: center;
  }
  .site-footer .footer-col ul {
    padding: 0;
    list-style: none;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* 5) „Mitglied werden"-Button in der mobilen Navigation */
@media (max-width: 989px) {
  .main-nav.open {
    padding: 4rem 1.5rem 2rem;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
  }
  .main-nav.open a {
    font-size: 1.3rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  /* CTA-Button im Mobile-Menü */
  .main-nav .nav-cta-mobile {
    display: inline-block !important;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-yellow) 0%, #d99500 100%);
    color: var(--color-black) !important;
    font-family: var(--font-display);
    font-size: 1rem !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    border-bottom: none !important;
    box-shadow: 0 8px 22px rgba(251,179,0,0.35);
  }
}

/* Im Desktop-Modus verstecken */
.nav-cta-mobile { display: none; }

/* =============================================================
   QUIZ - Bist du ein echter Galatasaray-Fan?
   ============================================================= */
.quiz-page-header {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.quiz-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(251,179,0,0.22) 0%, transparent 55%),
    radial-gradient(circle at 82% 22%, rgba(255,255,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.quiz-page-header > * { position: relative; z-index: 1; }
.quiz-page-header .eyebrow { color: var(--color-yellow); }
.quiz-page-header h1 { color: #fff; margin: 0.5rem 0 1rem; }
.quiz-page-header p { color: rgba(255,255,255,0.92); font-size: 1.25rem; max-width: 660px; margin: 0 auto; }

.quiz-section { padding-top: 3rem; padding-bottom: 5rem; background: var(--color-bg-alt); }

.quiz-app {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* ----- SCREENS (Tab-Logik) ----- */
.quiz-screen { display: none; animation: quizFadeIn 0.4s ease both; }
.quiz-screen.active { display: block; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== START SCREEN ===== */
.quiz-start-card {
  background: #fff;
  border-radius: 18px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}
.quiz-start-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(169,4,50,0.32);
}
.quiz-start-icon svg { width: 38px; height: 38px; }
.quiz-start-card h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 1rem;
}
.quiz-start-card p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin: 0 auto 1.8rem;
  max-width: 520px;
}
.quiz-rules {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-wrap: wrap;
}
.quiz-rules li {
  background: var(--color-bg-alt);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 95px;
}
.quiz-rule-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 0.2rem;
}

/* ===== PROGRESS ===== */
.quiz-progress-wrap { margin-bottom: 1.5rem; }
.quiz-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.quiz-progress-meta strong { color: var(--color-red); font-size: 1.05rem; }
.quiz-score-live strong { color: var(--color-yellow); background: var(--color-black); padding: 1px 8px; border-radius: 6px; }
.quiz-progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
  border-radius: 99px;
  transition: width 0.45s ease;
}

/* ===== QUESTION CARD ===== */
.quiz-question-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.4rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}
.quiz-question-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 1.8rem;
  color: var(--color-text);
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.quiz-answer {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: var(--color-bg-alt);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
}
.quiz-answer:hover:not(:disabled) {
  background: #fff;
  border-color: var(--color-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(169,4,50,0.1);
}
.quiz-answer-letter {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  transition: all 0.2s ease;
}
.quiz-answer:hover:not(:disabled) .quiz-answer-letter {
  background: var(--color-red);
  color: var(--color-yellow);
  border-color: var(--color-red);
}
.quiz-answer-text { flex: 1; }

.quiz-answer.is-correct {
  background: #e8f7ed;
  border-color: #2e7d32;
  color: #1b5e20;
}
.quiz-answer.is-correct .quiz-answer-letter {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}
.quiz-answer.is-wrong {
  background: #fce8ec;
  border-color: var(--color-red);
  color: var(--color-red-dark);
}
.quiz-answer.is-wrong .quiz-answer-letter {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}
.quiz-answer:disabled { cursor: default; }
.quiz-answer:disabled:not(.is-correct):not(.is-wrong) { opacity: 0.55; }

/* ===== FEEDBACK ===== */
.quiz-feedback {
  min-height: 0;
  border-radius: 12px;
  margin-top: 0;
  transition: all 0.3s ease;
}
.quiz-feedback strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; letter-spacing: 0.02em; text-transform: uppercase; }
.quiz-feedback span { display: block; font-size: 0.98rem; line-height: 1.5; color: var(--color-text-light); }
.quiz-feedback.feedback-correct {
  background: #e8f7ed;
  border-left: 4px solid #2e7d32;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}
.quiz-feedback.feedback-correct strong { color: #2e7d32; }
.quiz-feedback.feedback-wrong {
  background: #fce8ec;
  border-left: 4px solid var(--color-red);
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}
.quiz-feedback.feedback-wrong strong { color: var(--color-red); }

/* ===== PRIMARY BUTTON ===== */
.quiz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(169,4,50,0.32);
}
.quiz-btn-primary svg { width: 20px; height: 20px; }
.quiz-btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(169,4,50,0.42);
}
.quiz-btn-primary:active { transform: translateY(0); }
.quiz-btn-next { margin-top: 1.2rem; }

/* ===== RESULT SCREEN ===== */
.quiz-result-card {
  background: #fff;
  border-radius: 18px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}
.quiz-result-medal {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.quiz-result-card .eyebrow { color: var(--color-red); }
.quiz-result-score {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 1rem 0 0.6rem;
  color: var(--color-red);
}
.quiz-result-of { color: var(--color-text-light); font-size: 0.5em; }
.quiz-result-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.8rem;
  color: var(--color-text);
}
.quiz-result-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin: 0 auto 2rem;
  max-width: 540px;
  line-height: 1.55;
}

/* ===== LEAD FORM ===== */
.quiz-lead-card {
  background: var(--color-bg-alt);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  margin: 2rem 0;
  border: 1px solid var(--color-border);
  text-align: left;
}
.quiz-lead-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 0.4rem;
}
.quiz-lead-card > p {
  color: var(--color-text-light);
  font-size: 0.98rem;
  margin: 0 0 1.4rem;
}
.quiz-lead-form { display: flex; flex-direction: column; gap: 1rem; }
.quiz-lead-field { display: flex; flex-direction: column; gap: 0.4rem; }
.quiz-lead-field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}
.quiz-lead-field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quiz-lead-field input:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(169,4,50,0.12);
}
.quiz-lead-field small {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 0.15rem;
}
.quiz-lead-check {
  display: flex;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.quiz-lead-check:has(input:checked) {
  border-color: var(--color-red);
  background: #fff5f7;
}
.quiz-lead-check input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--color-red);
  cursor: pointer;
}

/* ===== RESULT ACTIONS ===== */
.quiz-result-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.quiz-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 0.85rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.quiz-share-btn svg { width: 20px; height: 20px; }
.quiz-share-btn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-1px);
}
.quiz-share-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.quiz-share-wa:hover {
  background: #1ebe57;
  color: #fff;
  border-color: #1ebe57;
}

/* ===== RESULT CTA (Mitgliedschaft) ===== */
.quiz-result-cta {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px dashed var(--color-border);
}
.quiz-result-cta p {
  color: var(--color-text-light);
  font-size: 1rem;
  margin: 0 0 1rem;
}
.quiz-result-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-red);
  border: 2px solid var(--color-red);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.quiz-result-cta .btn-outline:hover {
  background: var(--color-red);
  color: #fff;
}

/* ===== SUBMITTED ===== */
.quiz-submitted-card h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: 0.6rem 0 1rem;
}
.quiz-submitted-card p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 480px;
  line-height: 1.55;
}

/* =============================================================
   MOBILE OPTIMIERUNGEN
   ============================================================= */
@media (max-width: 768px) {
  .quiz-page-header { padding: 5.5rem 1.2rem 3rem; }
  .quiz-page-header p { font-size: 1.05rem; }

  .quiz-section { padding-top: 1.5rem; padding-bottom: 3rem; padding-left: 1rem; padding-right: 1rem; }

  .quiz-start-card,
  .quiz-question-card,
  .quiz-result-card {
    padding: 2rem 1.4rem;
    border-radius: 14px;
  }
  .quiz-start-card h2 { font-size: 1.8rem; }
  .quiz-start-card p { font-size: 1rem; }
  .quiz-rules { gap: 0.6rem; }
  .quiz-rules li { padding: 0.7rem 1rem; min-width: 80px; }
  .quiz-rule-num { font-size: 1.4rem; }

  .quiz-question-text { font-size: 1.45rem; margin-bottom: 1.4rem; }

  .quiz-answer { padding: 0.85rem 1rem; font-size: 1rem; gap: 0.8rem; }
  .quiz-answer-letter { width: 32px; height: 32px; font-size: 1rem; }

  .quiz-progress-meta { font-size: 0.85rem; }

  .quiz-result-medal { font-size: 3.5rem; }
  .quiz-result-score { font-size: 4rem; }
  .quiz-result-title { font-size: 1.6rem; }
  .quiz-result-desc { font-size: 1rem; }

  .quiz-lead-card { padding: 1.4rem 1.1rem; }
  .quiz-lead-card h4 { font-size: 1.2rem; }
  .quiz-lead-check { padding: 0.7rem 0.9rem; font-size: 0.9rem; }

  .quiz-share-btn { padding: 0.75rem 1.1rem; font-size: 0.9rem; }

  .quiz-btn-primary { font-size: 1rem; padding: 0.9rem 1.4rem; width: 100%; }
}

@media (max-width: 480px) {
  .quiz-question-text { font-size: 1.3rem; }
  .quiz-result-score { font-size: 3.4rem; }
  .quiz-result-title { font-size: 1.4rem; }
}

/* =============================================================
   HALL OF FAME (Quiz-Bestenliste)
   ============================================================= */
.hall-of-fame {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.hall-of-fame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
}

.hof-header { text-align: center; margin-bottom: 1.6rem; }
.hof-header .eyebrow { color: var(--color-red); }
.hof-header h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0.4rem 0 0.8rem;
}

.hof-locked-hint, .hof-unlocked-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 1.1rem;
  border-radius: 99px;
  margin: 0;
}
.hof-locked-hint {
  background: rgba(169,4,50,0.08);
  color: var(--color-red);
  border: 1px solid rgba(169,4,50,0.15);
}
.hof-locked-hint svg { width: 18px; height: 18px; }
.hof-unlocked-hint {
  background: #e8f7ed;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
  display: none;
}
.hof-unlocked-hint svg { width: 18px; height: 18px; }

/* Unlock-State umschalten */
.hall-of-fame.hof-unlocked .hof-locked-hint   { display: none; }
.hall-of-fame.hof-unlocked .hof-unlocked-hint { display: inline-flex; }

/* Tabelle */
.hof-table-wrap { overflow-x: auto; }
.hof-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.hof-table thead th {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 2px solid var(--color-border);
}
.hof-table thead th.hof-col-rank  { width: 60px; text-align: center; }
.hof-table thead th.hof-col-score { width: 90px; text-align: center; }
.hof-table thead th.hof-col-date  { width: 110px; text-align: right; }

.hof-table tbody tr {
  border-bottom: 1px solid var(--color-bg-alt);
  transition: background 0.2s ease;
}
.hof-table tbody tr:hover { background: var(--color-bg-alt); }
.hof-table tbody tr:last-child { border-bottom: none; }

.hof-table td {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  color: var(--color-text);
}
.hof-table td.hof-col-rank  {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text-light);
}
.hof-table td.hof-col-name { font-weight: 600; }
.hof-table td.hof-col-score {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-red);
}
.hof-table td.hof-col-score small {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-weight: 500;
}
.hof-table td.hof-col-date {
  text-align: right;
  font-size: 0.88rem;
  color: var(--color-text-light);
}

/* Top 3 Highlights */
.hof-table tr.hof-rank-gold {
  background: linear-gradient(90deg, rgba(251,179,0,0.12) 0%, transparent 100%);
}
.hof-table tr.hof-rank-gold td.hof-col-name { color: var(--color-red); }
.hof-table tr.hof-rank-silver {
  background: linear-gradient(90deg, rgba(192,192,192,0.18) 0%, transparent 100%);
}
.hof-table tr.hof-rank-bronze {
  background: linear-gradient(90deg, rgba(205,127,50,0.16) 0%, transparent 100%);
}

/* Placeholder-Reihen (wenn weniger als 10 Einträge da sind) */
.hof-table tr.hof-row-placeholder td {
  color: var(--color-text-light);
  font-style: italic;
  opacity: 0.55;
}
.hof-table tr.hof-row-placeholder td.hof-col-name { color: var(--color-text-light); }

/* Empty / Loading State */
.hof-empty {
  text-align: center;
  padding: 1.8rem !important;
  color: var(--color-text-light);
  font-style: italic;
}

/* ===== BLUR-LOCK (gesperrt = Namen verschwommen) ===== */
.hall-of-fame .hof-table td.hof-col-name {
  filter: blur(6px);
  transition: filter 0.5s ease;
  user-select: none;
}
.hall-of-fame.hof-unlocked .hof-table td.hof-col-name {
  filter: blur(0);
  user-select: text;
}
/* Placeholders bleiben immer blurfrei – aber wirken wie "?" */
.hall-of-fame .hof-table tr.hof-row-placeholder td.hof-col-name {
  filter: none !important;
}

/* =============================================================
   MOBILE
   ============================================================= */
@media (max-width: 768px) {
  .hall-of-fame { padding: 1.4rem 1.1rem; margin-top: 2rem; }
  .hof-header h3 { font-size: 1.45rem; }
  .hof-locked-hint, .hof-unlocked-hint { font-size: 0.85rem; padding: 0.55rem 0.9rem; }

  .hof-table thead th { padding: 0.6rem 0.6rem; font-size: 0.78rem; }
  .hof-table thead th.hof-col-date { display: none; }
  .hof-table td { padding: 0.75rem 0.6rem; font-size: 0.92rem; }
  .hof-table td.hof-col-date { display: none; }
  .hof-table td.hof-col-score { font-size: 1.1rem; }
  .hof-table td.hof-col-rank  { font-size: 1rem; width: 44px; }
  .hof-table thead th.hof-col-rank  { width: 44px; }
  .hof-table thead th.hof-col-score { width: 64px; }
}

/* =============================================================
   QUIZ TIMER (Speed-Bonus Anzeige)
   ============================================================= */
.quiz-timer-wrap {
  margin-bottom: 1.2rem;
}
.quiz-timer-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.quiz-timer-label svg { width: 18px; height: 18px; color: var(--color-red); }
.quiz-timer-label span:last-child {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-red);
  min-width: 36px;
  text-align: right;
}
.quiz-timer-bar {
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,0.08);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.quiz-timer-fill {
  height: 100%;
  background: linear-gradient(90deg, #2e7d32 0%, #4caf50 100%);
  border-radius: 99px;
  width: 100%;
  transition: width 1s linear, background 0.4s ease;
}
.quiz-timer-fill.timer-warn {
  background: linear-gradient(90deg, var(--color-yellow) 0%, #ff9800 100%);
}
.quiz-timer-fill.timer-danger {
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  animation: timerPulse 0.8s ease-in-out infinite;
}
@keyframes timerPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.65; }
}

/* Result-Score (Punkte statt /10) – größer/anders bei Punkten */
.quiz-result-score .quiz-result-of {
  font-size: 0.35em;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Mobile */
@media (max-width: 768px) {
  .quiz-timer-label { font-size: 0.85rem; }
  .quiz-timer-label svg { width: 16px; height: 16px; }
  .quiz-timer-label span:last-child { font-size: 1rem; min-width: 32px; }
  .quiz-timer-bar { height: 8px; }
}

/* =============================================================
   QUIZ TIMER v2 (mit Live-Punkte-Wert + Stufen)
   ============================================================= */
/* Override: vorhandene .quiz-timer-label Regel anpassen */
.quiz-timer-wrap { margin-bottom: 1.2rem; }
.quiz-timer-wrap .quiz-timer-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  margin-left: 0;
}
.quiz-timer-time {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.quiz-timer-time svg { width: 18px; height: 18px; color: var(--color-red); }
.quiz-timer-time strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-red);
  min-width: 36px;
}
.quiz-timer-value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-bg-alt);
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.quiz-timer-value strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-yellow);
  background: var(--color-black);
  padding: 1px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease;
}
.quiz-timer-value strong.value-flash {
  animation: valueFlash 0.45s ease;
}
@keyframes valueFlash {
  0%   { transform: scale(1.0); background: var(--color-black); }
  40%  { transform: scale(1.15); background: var(--color-red); color: var(--color-yellow); }
  100% { transform: scale(1.0); background: var(--color-black); color: var(--color-yellow); }
}

/* Timer-Bar mit 3s-Stufen (stepped) */
.quiz-timer-fill {
  transition: width 0.3s ease-out, background 0.4s ease !important;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .quiz-timer-wrap .quiz-timer-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .quiz-timer-value {
    align-self: stretch;
    justify-content: space-between;
  }
}

/* Hall-of-Fame Hint unter Result-Tabelle */
.hof-cta-hint {
  text-align: center;
  margin: 1rem 0 0;
  color: var(--color-text-light);
  font-style: italic;
}

/* =============================================================
   EVENT-COUNTDOWN STICKY-BAR (Homepage Top)
   ============================================================= */
.event-top-bar {
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red-dark) 50%, var(--color-red) 100%);
  background-size: 200% 100%;
  animation: barShimmer 6s linear infinite;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
@keyframes barShimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.event-top-bar.is-hidden { display: none; }
.event-top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
}
.event-bar-pulse {
  display: inline-block;
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.event-top-bar strong {
  color: var(--color-yellow);
  letter-spacing: 0.02em;
}
.event-top-bar #eventDaysLeft {
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 1px 8px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.event-bar-cta {
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 5px 14px;
  border-radius: 99px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.event-bar-cta:hover {
  background: var(--color-yellow-light);
  transform: translateX(3px);
}
.event-bar-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s ease;
  margin-left: 6px;
}
.event-bar-close:hover { color: #fff; }

@media (max-width: 600px) {
  .event-top-bar-inner { padding: 7px 0.6rem; font-size: 0.82rem; gap: 0.5rem; }
  .event-top-bar #eventDaysLeft { font-size: 0.9rem; }
  .event-bar-cta { padding: 4px 10px; font-size: 0.75rem; }
}

/* =============================================================
   EVENT-BANNER SECTION (Homepage, nach Hero)
   ============================================================= */
.event-banner-section {
  padding: 0;
  background: var(--color-bg-alt);
}
.event-banner {
  position: relative;
  background:
    radial-gradient(circle at 15% 80%, rgba(251, 179, 0, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: #fff;
  padding: 5rem 2rem;
  overflow: hidden;
  text-align: center;
}
.event-banner::before {
  content: "★";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-yellow);
  font-size: 2rem;
  opacity: 0.6;
}
.event-banner-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--color-yellow);
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 18px;
  border-radius: 99px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(251, 179, 0, 0.35);
}
.event-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.event-banner h2 .yellow { color: var(--color-yellow); display: block; }
.event-banner-desc {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.4rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}
.event-banner-desc strong { color: var(--color-yellow); }

.event-banner-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  max-width: 540px;
  margin: 0 auto 2.4rem;
}
.cd-cell {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  backdrop-filter: blur(6px);
}
.cd-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-yellow);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.cd-cell span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.btn-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 10px 28px rgba(251, 179, 0, 0.32);
}
.btn-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(251, 179, 0, 0.45);
  background: var(--color-yellow-light);
}

.event-banner-guests {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}
.event-banner-guests strong { color: var(--color-yellow); }

@media (max-width: 768px) {
  .event-banner { padding: 3.5rem 1.2rem; }
  .event-banner-eyebrow { font-size: 0.85rem; padding: 6px 14px; }
  .event-banner-countdown { gap: 0.5rem; }
  .cd-cell { padding: 0.7rem 0.3rem; border-radius: 8px; }
  .cd-cell strong { font-size: 1.8rem; }
  .cd-cell span { font-size: 0.7rem; }
  .btn-banner { font-size: 1rem; padding: 0.9rem 1.6rem; width: 100%; justify-content: center; }
}

/* =============================================================
   TICKET-INFO-GRID (Events-Seite)
   ============================================================= */
.ticket-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin: 2.5rem 0 0;
}
.ticket-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all 0.25s ease;
  border-top: 4px solid var(--color-red);
}
.ticket-info-card:nth-child(2) { border-top-color: var(--color-yellow); }
.ticket-info-card:nth-child(3) { border-top-color: var(--color-red); }
.ticket-info-card:nth-child(4) { border-top-color: var(--color-yellow); }
.ticket-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.ticket-info-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
}
.ticket-info-icon svg { width: 26px; height: 26px; }
.ticket-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text);
  margin: 0 0 0.7rem;
  letter-spacing: 0.02em;
}
.ticket-info-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}
.ticket-info-card p strong { color: var(--color-text); }

@media (max-width: 989px) {
  .ticket-info-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 540px) {
  .ticket-info-grid { grid-template-columns: 1fr; }
  .ticket-info-card { padding: 1.4rem 1.2rem; }
}

/* =============================================================
   SPECIAL GUEST (Blur-Foto + Sonder-Badge)
   ============================================================= */
.guest-card-special {
  border: 2px dashed var(--color-yellow) !important;
  background: linear-gradient(135deg, rgba(251, 179, 0, 0.04) 0%, rgba(169, 4, 50, 0.03) 100%);
  position: relative;
}
.guest-card-special::before {
  content: "🎁";
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--color-yellow);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(251, 179, 0, 0.4);
  z-index: 3;
}

.guest-photo-blur {
  position: relative;
  overflow: hidden;
}
.guest-photo-blur img {
  filter: blur(18px) brightness(0.9);
  transform: scale(1.15);  /* leichter Zoom, damit Blur-Edges nicht sichtbar sind */
  transition: filter 0.4s ease;
}
.guest-photo-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(169, 4, 50, 0.25) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.guest-special-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 10px 18px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  border: 1.5px solid var(--color-yellow);
  white-space: nowrap;
}

.guest-card-special .guest-info h3 {
  color: var(--color-red);
}

@media (max-width: 600px) {
  .guest-special-badge { font-size: 0.85rem; padding: 7px 14px; }
}

/* =============================================================
   MEDIENPARTNER GS TV (Events-Seite)
   ============================================================= */
.media-partner-section {
  padding: 3rem 1.5rem;
}
.media-partner-card {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-black) 0%, #1f1f1f 100%);
  color: #fff;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.media-partner-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 160%;
  background: radial-gradient(circle, rgba(169,4,50,0.4) 0%, transparent 65%);
  pointer-events: none;
}
.media-partner-card::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(251,179,0,0.22) 0%, transparent 60%);
  pointer-events: none;
}

.media-partner-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--color-red);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-red);
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(169,4,50,0.7); }
  50% { box-shadow: 0 0 0 7px rgba(169,4,50,0); }
}
.pulse-label { color: var(--color-yellow); }

.media-partner-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.media-partner-logo {
  flex-shrink: 0;
  width: 240px;
  background: #fff;
  padding: 1.4rem 1.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.media-partner-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.media-partner-text h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #fff;
  margin: 0 0 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.media-partner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}
.media-partner-text p strong { color: var(--color-yellow); }

@media (max-width: 768px) {
  .media-partner-section { padding: 2rem 1rem; }
  .media-partner-card { padding: 1.8rem 1.4rem; }
  .media-partner-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .media-partner-logo { width: 200px; padding: 1rem 1.4rem; }
  .media-partner-text h3 { font-size: 1.4rem; }
  .media-partner-text p { font-size: 0.95rem; }
}

/* =============================================================
   GS TV Logo inline (Home Event-Banner)
   ============================================================= */
.gstv-inline-logo {
  display: inline-block;
  height: 28px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
  background: #fff;
  padding: 3px 8px;
  border-radius: 5px;
}

/* =============================================================
   EVENT-POSTER MINI (events.html)
   – Sehr kompakt, max. 420px breit, dezenter Text-Link
   ============================================================= */
.event-poster-mini {
  text-align: center;
  padding: 2.5rem 1.5rem 0;
}
.event-poster-mini-link {
  display: inline-block;
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-poster-mini-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(169,4,50,0.18);
}
.event-poster-mini-image {
  display: block;
  width: 100%;
  height: auto;
}
.event-poster-mini-download {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-red);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.event-poster-mini-download:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .event-poster-mini { padding: 2rem 1rem 0; }
  .event-poster-mini-link { max-width: 320px; }
}

/* =============================================================
   EVENTIM-LIGHT TICKET-SHOP (events.html)
   ============================================================= */
.ticket-shop-wrap {
  max-width: 980px;
  margin: 2rem auto 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
#eventim-shop {
  width: 100%;
  background: #fff;
  min-height: 700px;
}
#eventim-shop iframe {
  width: 100% !important;
  border: 0;
  display: block;
  min-height: 700px;
}
.ticket-shop-fallback {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}
.ticket-shop-fallback a {
  color: var(--color-red);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}
.ticket-shop-fallback a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .ticket-shop-wrap { margin: 1.5rem 0 0; border-radius: 0; border-left: none; border-right: none; }
  #eventim-shop, #eventim-shop iframe { min-height: 850px; }
}

/* =============================================================
   EURA MEDIA FOOTER-CREDIT (schlicht, nur Text)
   ============================================================= */
.site-footer .footer-bottom {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer .footer-credit {
  display: inline !important;
  font-size: 0.9rem !important;
  color: var(--color-text-light) !important;
  font-weight: 500;
  visibility: visible !important;
  opacity: 1 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.site-footer .footer-credit a {
  color: var(--color-red) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.site-footer .footer-credit a:hover { text-decoration: underline !important; }

@media (max-width: 989px) {
  .site-footer .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }
  .site-footer .footer-credit { font-size: 0.88rem !important; }
}
