:root {
  --bg: #060710;
  --surface: rgba(17, 22, 35, 0.92);
  --surface-soft: rgba(22, 28, 43, 0.9);
  --text: #f7f8fb;
  --text-muted: #9aa3b1;
  --primary: #6f74ff;
  --primary-soft: rgba(111, 116, 255, 0.16);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(111, 116, 255, 0.16), transparent 32%),
              linear-gradient(180deg, #07080f 0%, #05060d 100%);
  color: var(--text);
}

button, a {
  font: inherit;
}

img, video {
  display: block;
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.48), rgba(4, 6, 11, 0.88));
  z-index: 2;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px clamp(24px, 4vw, 48px);
  z-index: 10;
  transition: backdrop-filter 0.35s ease, background-color 0.35s ease;
}

.navbar.scrolled {
  backdrop-filter: blur(16px);
  background-color: rgba(5, 7, 14, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__brand {
  position: absolute;
  left: clamp(24px, 4vw, 48px);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar__nav {
  list-style: none;
  display: flex;
  gap: 46px;
  margin: 0;
  padding: 0;
}

.navbar__nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 0.95rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.navbar__nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  text-align: center;
  padding: 180px 24px 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
}

.hero__text {
  margin: 22px auto 32px;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #6f74ff, #7ad6ff);
  color: #05060d;
  box-shadow: 0 18px 40px rgba(111, 116, 255, 0.22);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.button--white {
  background: #fff;
  color: #05060d;
  border-color: #fff;
  font-weight: 600;
}

.button--white:hover {
  background: #e8e8e8;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.12);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.section {
  padding: clamp(80px, 10vw, 120px) 24px;
  position: relative;
  z-index: 1;
}

.about {
  background-image: url('hg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  padding: 80px 40px;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 24px; /* Match the container radius */
}

.about .section__grid {
  position: relative;
  z-index: 2;
}

.image-hero {
  padding: 60px 24px 0;
  margin-bottom: 40px;
}

.image-hero__container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.image-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1394 / 779; /* Maintain original aspect ratio */
  transform: scale(1.05); /* Slight zoom for modern look */
  transition: transform 0.6s ease;
}

.image-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.2), rgba(4, 6, 11, 0.4));
  pointer-events: none;
}

.background-section {
  padding: 0;
  height: 0;
  padding-bottom: 55.8%; /* 779/1394 ≈ 0.558 */
  background-image: url('hg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.background-image {
  display: none; /* Remove the separate div since background is now on section */
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.section__media,
.section__text {
  min-height: 320px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.card--media {
  background: rgba(17, 22, 35, 0.85); /* Slightly more transparent than default */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.card--text {
  background: rgba(17, 22, 35, 0.7); /* More transparent for text area */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.card__label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.card p,
.section__text p {
  color: var(--text-muted);
  line-height: 1.9;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}

.highlight-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-list span {
  color: var(--primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   FOLLOWER FLIP DISPLAY
   ═══════════════════════════════════════ */
.follower-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.follower-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.follower-item:hover {
  border-color: rgba(111, 116, 255, 0.2);
  box-shadow: 0 4px 20px rgba(111, 116, 255, 0.08);
}

.follower-platform {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.follower-platform--tiktok { color: #e1457b; }
.follower-platform--instagram { color: #e1306c; }
.follower-platform--twitch { color: #9146ff; }
.follower-platform--youtube { color: #ff0000; }

.follower-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Roller Display ─── */
.flip-display {
  display: flex;
  gap: 0;
  align-items: center;
  height: 28px;
}

.flip-char {
  position: relative;
  width: 14px;
  height: 28px;
  overflow: hidden;
  background: none;
  border: none;
}

.flip-char.is-dot {
  width: 6px;
}

.flip-char-track {
  position: absolute;
  left: 0;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.flip-char-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 28px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}

.flip-char.glow .flip-char-digit {
  color: var(--primary);
  transition: color 0.8s ease-out;
}

@media (max-width: 760px) {
  .follower-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .follower-item {
    padding: 8px 6px;
  }
  .flip-char {
    width: 11px;
    height: 22px;
  }
  .flip-char.is-dot {
    width: 5px;
  }
  .flip-char-digit {
    height: 22px;
    font-size: 0.92rem;
  }
  .follower-platform {
    font-size: 0.6rem;
  }
}

.section__intro--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Merch Section Styles */
.merch {
  padding-top: clamp(80px, 10vw, 120px);
}

.merch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -15px;
  padding: 0 24px;
}

.merch-shop-link {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.merch-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1 / 1;
}

.merch-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.merch-image-wrapper:hover .merch-image {
  transform: scale(1.03);
}

/* Hotspot Positioning */
.merch-hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeInHotspot 0.9s ease 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInHotspot {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hoodie Hotspot (über dem Bild oben - Schulterbereich ~22%) */
.merch-hotspot--hoodie-overlay {
  top: 35%;
  right: 10px;
  flex-direction: row-reverse;
  padding-right: 20px;
}

.merch-hotspot--hoodie-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #7c5cff, #9d7cff);
  box-shadow: 0 0 4px rgba(124, 92, 255, 0.5);
  transform: translateY(-50%);
}

/* Jogginghose Hotspot (über dem Bild unten - Oberschenkelbereich ~72%) */
.merch-hotspot--pants-overlay {
  top: 65%;
  left: 30px;
  flex-direction: row-reverse;
  padding-left: 20px;
}

.merch-hotspot--pants-overlay::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, #7c5cff, #9d7cff);
  box-shadow: 0 0 4px rgba(124, 92, 255, 0.5);
  transform: translateY(-50%);
}

/* Merch Buttons */
.merch-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 15px 24px;
  border-radius: 32px;
  background: rgba(111, 116, 255, 0.12);
  border: 1.5px solid #6f74ff;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  min-width: 150px;
  animation: fadeInButton 0.8s ease 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.merch-button:hover {
  background: rgba(111, 116, 255, 0.25);
  border-color: #8d9cff;
  box-shadow: 0 0 24px rgba(111, 116, 255, 0.35), inset 0 0 12px rgba(111, 116, 255, 0.1);
  transform: translateY(-3px) scale(1.08);
}

.merch-button--pants {
  margin-top: 15px;
  margin-left: -10px;
}

.merch-button__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.merch-button__action {
  display: block;
  font-size: 0.7rem;
  color: #8d9cff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

/* Responsive Merch Design */
@media (max-width: 1200px) {
  .merch-hotspot--hoodie-overlay {
    right: -20px;
  }
  .merch-hotspot--pants-overlay {
    left: -20px;
  }
}

@media (max-width: 768px) {
  .merch-container {
    padding: 0 16px;
    margin-top: 10px;
  }

  .merch-image-wrapper {
    max-width: 100%;
    aspect-ratio: auto;
  }

  /* Linien auf Mobile ausblenden */
  .merch-hotspot--hoodie-overlay::before,
  .merch-hotspot--pants-overlay::after {
    display: none;
  }

  /* Buttons bleiben absolute auf dem Bild */
  .merch-hotspot--hoodie-overlay {
    top: 30%;
    right: 25px;
    left: auto;
    padding: 0;
  }

  .merch-hotspot--pants-overlay {
    top: auto;
    bottom: 8%;
    left: 5px;
    right: auto;
    padding: 0;
  }

  .merch-button {
    padding: 8px 14px;
    min-width: auto;
    font-size: 0.75rem;
    border-radius: 20px;
  }

  .merch-button--pants {
    margin-top: 0;
    margin-left: 0;
  }

  .merch-button__label {
    font-size: 0.75rem;
  }

  .merch-button__action {
    font-size: 0.55rem;
  }
}

/* ── Merch Product Grid ── */
.merch-products {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.merch-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.merch-product {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.merch-product:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 116, 255, 0.25);
  box-shadow: 0 12px 36px rgba(111, 116, 255, 0.12);
}

.merch-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f5f5f5;
  padding: 12px;
}

.merch-product__info {
  padding: 12px 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.merch-product__name {
  font-size: 0.85rem;
  font-weight: 700;
}

.merch-product__price {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.merch-product__btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  margin: 8px 12px 12px;
  background: linear-gradient(135deg, #6f74ff, #7ad6ff);
  color: #05060d;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.merch-product:hover .merch-product__btn {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(111, 116, 255, 0.25);
}

@media (max-width: 900px) {
  .merch-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .merch-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .merch-product__info {
    padding: 8px 10px 2px;
  }
  .merch-product__name {
    font-size: 0.75rem;
  }
  .merch-product__btn {
    font-size: 0.7rem;
    padding: 8px 12px;
    margin: 6px 8px 8px;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: center;
  gap: 28px;
  margin: 40px auto 0;
  max-width: 1180px;
}

.card--content {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(17, 22, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-align: center;
  text-decoration: none;
}

.card--content:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(111, 116, 255, 0.35);
  box-shadow: 0 34px 70px rgba(111, 116, 255, 0.14);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto;
}

.card__icon--image img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.card--content h3 {
  margin: 0;
  font-size: 1.18rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.episode-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.episode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(111, 116, 255, 0.15);
}

.episode-card__thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.episode-card__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(111, 116, 255, 0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.28s ease, background 0.28s ease;
  text-decoration: none;
  z-index: 2;
}

.episode-card:hover .episode-card__play {
  opacity: 1;
}

.episode-card__play:hover {
  background: rgba(111, 116, 255, 1);
}

.episode-card__content {
  padding: 26px;
}

.episode-card__content h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  line-height: 1.4;
}

.episode-card__content p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.episode-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.episode-card__link:hover {
  gap: 12px;
}

.episode-card__link::after {
  content: '→';
}

.links-group {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.links-group + .links-group {
  margin-top: 28px;
}

.links-grid,
.socials-grid {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.links-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 800px;
  width: 100%;
}

/* ═══════════════════════════════════════
   PEDO MAP SECTION
   ═══════════════════════════════════════ */
.pedomap-section {
  padding-bottom: clamp(60px, 8vw, 100px);
}

.pedomap-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.pedomap-wrapper > div {
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── Family Link Video Embed ── */
.familylink-section {
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* ── Media Players Grid (Hörbücher) ── */
.media-players {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.media-player-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-player-item h3 {
  font-size: 1rem;
  font-weight: 700;
}

.media-player-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .media-players {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
}

/* ── Flyer Preview Grid ── */
.flyer-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.flyer-preview-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.flyer-preview-item:hover {
  border-color: rgba(111, 116, 255, 0.25);
  box-shadow: 0 8px 30px rgba(111, 116, 255, 0.1);
  transform: translateY(-3px);
}

.flyer-preview-thumb {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.flyer-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flyer-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}

.flyer-preview-item:hover .flyer-preview-overlay {
  opacity: 1;
}

.flyer-preview-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.flyer-preview-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 760px) {
  .flyer-preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }

  .flyer-preview-thumb {
    width: 90px;
    height: 120px;
  }
}

.video-embed-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Override Datawrapper embed text colors */
.pedomap-wrapper .dw-chart-header,
.pedomap-wrapper .dw-chart-notes,
.pedomap-wrapper .dw-chart-footer,
.pedomap-wrapper .dw-below-chart,
.pedomap-wrapper h1,
.pedomap-wrapper h2,
.pedomap-wrapper h3,
.pedomap-wrapper p,
.pedomap-wrapper span,
.pedomap-wrapper a,
.pedomap-wrapper .description,
.pedomap-wrapper .notes-block,
.pedomap-wrapper .source-block {
  color: #fff !important;
}

.pedomap-wrapper iframe {
  border-radius: 16px;
  filter: brightness(1.05);
}

/* ═══════════════════════════════════════
   LINK SECTION – Content Cards
   ═══════════════════════════════════════ */
.link-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.link-card-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 36px;
  background: rgba(17, 22, 35, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(111, 116, 255, 0.12);
  border-radius: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  align-self: flex-start;
  margin-right: 140px;
  max-width: 940px;
}

.link-card-item.reverse {
  flex-direction: row-reverse;
  align-self: flex-end;
  margin-right: 0;
  margin-left: 140px;
}

.link-card-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(111, 116, 255, 0.35);
  box-shadow: 0 20px 56px rgba(111, 116, 255, 0.14), 0 0 28px rgba(111, 116, 255, 0.08);
}

.link-card-image {
  flex-shrink: 0;
  width: 240px;
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.link-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.link-card-content {
  flex: 1;
  min-width: 0;
}

.link-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}

.link-card-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.link-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 12px;
  background: rgba(111, 116, 255, 0.12);
  border: 1px solid rgba(111, 116, 255, 0.25);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}

.link-card-btn:hover {
  background: rgba(111, 116, 255, 0.25);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(111, 116, 255, 0.2);
}

/* Slide-in animations */
.slide-in-left,
.slide-in-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left {
  transform: translateX(-80px);
}

.slide-in-right {
  transform: translateX(80px);
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   HÖRBUCH PLAYERS (3-column row)
   ═══════════════════════════════════════ */
.hoerbuch-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.hoerbuch-row__item {
  min-width: 0;
}

.hoerbuch-row__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hoerbuch-row__label i {
  font-size: 1rem;
  color: var(--primary);
}

.video-embed--small {
  border-radius: 12px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════
   FLYER GRID
   ═══════════════════════════════════════ */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 80px;
}

.flyer-card {
  display: flex;
  flex-direction: column;
  background: rgba(17, 22, 35, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(111, 116, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.flyer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 116, 255, 0.35);
  box-shadow: 0 20px 56px rgba(111, 116, 255, 0.14);
}

.flyer-card__preview {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.flyer-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.flyer-card:hover .flyer-card__preview img {
  transform: scale(1.05);
}

.flyer-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(111, 116, 255, 0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.flyer-card__body {
  padding: 24px 28px 28px;
}

.flyer-card__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.flyer-card__body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.flyer-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 12px;
  background: rgba(111, 116, 255, 0.12);
  border: 1px solid rgba(111, 116, 255, 0.25);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}

.flyer-card:hover .flyer-card__btn {
  background: rgba(111, 116, 255, 0.25);
  border-color: var(--primary);
}

/* ═══════════════════════════════════════
   PEDO MAP EMBED
   ═══════════════════════════════════════ */
.pedomap-section {
  padding-bottom: 40px;
}

.pedomap-embed {
  max-width: 1100px;
  margin: 40px auto 0;
  border-radius: 20px;
  overflow: hidden;
}

.pedomap-embed iframe {
  display: block;
  width: 100%;
  min-height: 620px;
}

/* ═══════════════════════════════════════
   FAMILY LINK VIDEO EMBED
   ═══════════════════════════════════════ */
.familylink-video {
  max-width: 700px;
  margin: 40px auto 0;
}

.video-embed--large {
  border-radius: 20px;
  border: 1px solid rgba(111, 116, 255, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.socials-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  justify-content: center;
  max-width: 750px;
  margin: 50px auto 0;
  gap: 28px;
}

.link-card,
.social-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.3;
}

.social-card {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
}

.link-card:hover,
.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 116, 255, 0.28);
  box-shadow: 0 16px 40px rgba(111, 116, 255, 0.1);
}

.social-card {
  gap: 12px;
  font-weight: 600;
}

.social-card__logo {
  height: 1.4rem;
  width: auto;
  object-fit: contain;
}

.social-card i {
  font-size: 1.1rem;
}

.support-card {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 40px 40px 40px;
  background: linear-gradient(180deg, rgba(111, 116, 255, 0.16), rgba(7, 9, 16, 0.95));
  border: 1px solid rgba(111, 116, 255, 0.18);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  max-width: 600px;
  margin: 0 auto;
}

.support-card h2 {
  margin: 0.4rem 0 0.8rem;
}

.footer {
  padding: 32px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 18px;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--text);
}

.animate-fade,
.animate-slide-left,
.animate-slide-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-slide-left {
  transform: translateX(-45px);
}

.animate-slide-right {
  transform: translateX(45px);
}

.animate-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 1024px) {
  .section__grid,
  .support-card {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .socials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .link-card-item,
  .link-card-item.reverse {
    margin-left: 20px;
    margin-right: 20px;
    padding: 24px;
    gap: 24px;
  }

  .link-card-image {
    width: 180px;
    height: 130px;
  }

  .link-card-content h3 {
    font-size: 1.15rem;
  }

  .link-card-content p {
    font-size: 0.92rem;
  }

  .hoerbuch-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hoerbuch-row__item:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .navbar__nav {
    display: none;
  }

  .hero__content {
    padding-top: 150px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cards-grid,
  .socials-grid {
    grid-template-columns: 1fr;
  }

  .link-card-item,
  .link-card-item.reverse {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    align-self: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .link-cards {
    gap: 28px;
  }

  .link-card-image {
    width: 100%;
    height: 140px;
    border-radius: 12px;
  }

  .link-card-content h3 {
    font-size: 1.02rem;
  }

  .link-card-content p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .hoerbuch-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flyer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flyer-card__preview {
    height: 200px;
  }

  .pedomap-embed iframe {
    min-height: 400px;
  }

  .button {
    width: fit-content;
  }
}

/* Counter Section */
.counter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}

.counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 80px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(111, 116, 255, 0.15) 0%, rgba(124, 92, 255, 0.08) 100%);
  border: 1px solid rgba(111, 116, 255, 0.25);
  box-shadow: 0 16px 64px rgba(111, 116, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(111, 116, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.counter-value {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6f74ff 0%, #9d7cff 50%, #6f74ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.counter-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .counter-card {
    padding: 32px 48px;
  }
  .counter-value {
    font-size: 3.5rem;
  }
  .counter-label {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════
   STREAM STATUS
   ═══════════════════════════════════════ */
.stream-status {
  padding-top: 40px;
  padding-bottom: 20px;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.stream-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stream-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.stream-card.is-live {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.stream-card.is-live:hover {
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.25), 0 12px 32px rgba(0, 0, 0, 0.3);
}

.stream-card__icon {
  font-size: 2rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.stream-card.is-live .stream-card__icon {
  color: var(--text);
}

.stream-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.stream-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stream-card__status--offline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.stream-card__status--offline .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.stream-card__status--live {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.stream-card__status--live .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.stream-card__watch {
  display: none;
  margin-top: 4px;
  padding: 8px 20px;
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.stream-card.is-live .stream-card__watch {
  display: inline-block;
}

@media (max-width: 600px) {
  .stream-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

