:root {
      --green-0: #d7ff4f;
      --green-1: #a7df3e;
      --green-2: #75a834;
      --green-3: #385f1e;
      --green-4: #182b12;
      --ink: #050805;
      --ink-soft: #11170f;
      --paper: rgba(165, 222, 61, .92);
      --paper-2: rgba(126, 178, 52, .92);
      --line: rgba(5, 8, 5, .86);
      --white: #f6ffd8;
      --shadow: 0 26px 70px rgba(0,0,0,.35);
      --radius: 26px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      font-family: "Trebuchet MS", "Comic Sans MS", system-ui, sans-serif;
      background:
        radial-gradient(circle at 18% 8%, rgba(216,255,79,.20), transparent 30rem),
        radial-gradient(circle at 78% 18%, rgba(180,225,70,.13), transparent 34rem),
        linear-gradient(180deg,
          #98c93a 0%,
          #82ad35 24%,
          #5d822d 46%,
          #2c421f 68%,
          #0e160c 86%,
          #050805 100%
        );
      background-attachment: fixed;
      overflow-x: hidden;
    }

    body::before {
      content: none;
    }

    a { color: inherit; text-decoration: none; }
    img, iframe { max-width: 100%; }
    .page { position: relative; z-index: 1; }
    .container {
      width: min(var(--max), calc(100% - 34px));
      margin: 0 auto;
    }

    .sketch {
      font-weight: 950;
      letter-spacing: -.04em;
      text-shadow:
        2px 2px 0 rgba(215,255,79,.55),
        -1px -1px 0 rgba(0,0,0,.7),
        1px -1px 0 rgba(0,0,0,.7),
        -1px 1px 0 rgba(0,0,0,.7),
        1px 1px 0 rgba(0,0,0,.7);
      filter: drop-shadow(0 2px 0 rgba(0,0,0,.28));
    }

    .scribble {
      position: absolute;
      color: var(--ink);
      font-weight: 900;
      opacity: .88;
      user-select: none;
      pointer-events: none;
    }

    .nav {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 20;
      background: transparent;
      border-bottom: 0;
      box-shadow: none;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 24px 0 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 950;
      line-height: 1;
      font-size: clamp(1rem, 2vw, 1.25rem);
      padding: 6px 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      cursor: default;
    }

    .brand-label {
      white-space: nowrap;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      font-weight: 950;
      letter-spacing: 0;
      line-height: 1;
      color: var(--ink);
      text-shadow: none;
      filter: none;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    .brand-icon {
      width: 30px;
      height: 30px;
      display: inline-block;
      flex: 0 0 auto;
    }

    .brand-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links a {
      font-weight: 900;
      padding: 10px 16px;
      border-radius: 999px;
      border: 3px solid var(--ink);
      background: rgba(191, 242, 72, .92);
      box-shadow: 4px 4px 0 var(--ink);
    }

    .nav-links a:hover {
      background: #c9ff56;
      transform: translate(2px, 2px);
      box-shadow: 2px 2px 0 var(--ink);
    }

    .hero {
      position: relative;
      overflow: hidden;
      border-bottom: 0;
      background: transparent;
    }

    .hero::after {
      display: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: center;
      min-height: 650px;
      padding: 126px 0 88px;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(3.3rem, 8vw, 7.4rem);
      line-height: .84;
      color: var(--ink);
    }

    .subtitle {
      margin: 24px 0 26px;
      font-size: clamp(1.25rem, 3vw, 2.15rem);
      font-weight: 950;
      line-height: 1.05;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 4px solid var(--ink);
      background: linear-gradient(180deg, #bff248, #9aca3b);
      border-radius: 18px;
      padding: 15px 22px;
      font-weight: 950;
      min-width: 170px;
      justify-content: center;
      box-shadow: 6px 6px 0 var(--ink);
      transition: transform .16s ease, box-shadow .16s ease;
    }

    .btn:hover {
      transform: translate(3px, 3px) rotate(-1deg);
      box-shadow: 3px 3px 0 var(--ink);
    }

    .btn-icon {
      width: 22px;
      height: 22px;
      display: inline-block;
      flex: 0 0 22px;
    }

    .btn-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .btn.dark {
      background: var(--ink);
      color: var(--green-0);
      border-color: var(--ink);
      box-shadow: 6px 6px 0 rgba(215,255,79,.75);
    }

    .hero-art {
      position: relative;
      min-height: 500px;
      display: grid;
      place-items: center;
    }

    .cover-card {
      width: min(560px, 100%);
      aspect-ratio: 16 / 9;
      border: 5px solid var(--ink);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 8px 8px 0 rgba(5,8,5,.82);
      transform: none;
      background: var(--ink);
    }

    .cover-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sticker {
      position: absolute;
      padding: 12px 16px;
      border: 4px solid var(--ink);
      border-radius: 18px;
      background: #bdf04b;
      box-shadow: 4px 4px 0 var(--ink);
      font-weight: 950;
    }
    .sticker.one { top: 26px; right: 40px; transform: rotate(5deg); }
    .sticker.two { display: none; }

    .main {
      background: transparent;
      color: var(--white);
      padding: 54px 0 26px;
    }

    .section-title {
      margin: 0 0 18px;
      font-size: clamp(2rem, 4vw, 3.3rem);
      color: #c9ff56;
      line-height: .92;
    }

    .cards {
      display: grid;
      grid-template-columns: 1.35fr .9fr .8fr;
      gap: 22px;
      align-items: stretch;
    }

    .card {
      position: relative;
      border: 4px solid var(--ink);
      border-radius: var(--radius);
      background: linear-gradient(150deg, rgba(183,238,72,.96), rgba(102,152,48,.95));
      color: var(--ink);
      box-shadow: 8px 8px 0 rgba(215,255,79,.22);
      padding: 22px;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .08;
      background-image: radial-gradient(var(--ink) 1px, transparent 1px);
      background-size: 9px 9px;
      pointer-events: none;
    }

    .card > * { position: relative; z-index: 1; }
    .card h2, .card h3 {
      margin: 0 0 14px;
      font-size: clamp(1.55rem, 2.4vw, 2.15rem);
      line-height: .92;
      text-transform: uppercase;
      color: var(--ink);
    }


    .heading-inline {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .heading-inline .heading-icon {
      display: inline-flex;
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      color: var(--ink);
      transform: translateY(2px);
    }

    .heading-inline .heading-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .episode-title {
      align-items: center;
      white-space: nowrap;
    }

    .episode-title .heading-icon {
      width: 24px;
      height: 24px;
      flex-basis: 24px;
      transform: translateY(1px);
    }

    .about-title {
      font-size: clamp(1.6rem, 2.2vw, 2rem) !important;
      line-height: .92 !important;
      letter-spacing: -.01em;
      flex-wrap: nowrap;
    }

    .about-title span:first-child {
      display: inline-block;
      max-width: 8.2em;
      white-space: normal;
    }

    .platform-title {
      align-items: center;
      white-space: nowrap;
      font-size: clamp(1.5rem, 1.95vw, 1.9rem) !important;
      letter-spacing: -.01em;
    }

    .platform-title .heading-icon {
      width: 26px;
      height: 26px;
      flex-basis: 26px;
      transform: translateY(0);
    }

    .episode-video {
      border: 4px solid var(--ink);
      border-radius: 18px;
      overflow: hidden;
      background: var(--ink);
      box-shadow: 5px 5px 0 rgba(5,8,5,.45);
      margin-bottom: 14px;
      aspect-ratio: 16 / 9;
    }

    iframe {
      border: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    .youtube-thumb {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      color: #f4ffd6;
      background: #111;
      overflow: hidden;
    }

    .youtube-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
      transition: transform .18s ease, filter .18s ease;
    }

    .youtube-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.66));
      pointer-events: none;
    }

    .youtube-thumb .play {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 78px;
      height: 78px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(5,8,5,.86);
      border: 4px solid rgba(191,242,72,.95);
      box-shadow: 5px 5px 0 rgba(0,0,0,.55);
      z-index: 2;
      font-size: 2rem;
      line-height: 1;
      padding-left: 4px;
    }

    .youtube-thumb .label {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 14px;
      z-index: 2;
      font-weight: 950;
      text-shadow: 2px 2px 0 #000;
    }

    .youtube-thumb:hover img {
      transform: scale(1.06);
      filter: brightness(.9);
    }

    .episode h3 {
      text-transform: none;
      margin-top: 10px;
      font-size: clamp(1.7rem, 3vw, 2.35rem);
    }

    .episode p, .card p {
      font-size: 1.03rem;
      line-height: 1.45;
      font-weight: 700;
      margin: 0 0 14px;
    }

    .mini-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 3px solid var(--ink);
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 950;
      background: transparent;
      margin-top: 6px;
    }

    .platform-list {
      display: grid;
      gap: 11px;
      margin-top: 8px;
    }

    .platform {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      background: linear-gradient(90deg, #13200f, #253a19);
      color: #d7ff62;
      font-weight: 950;
      border: 3px solid rgba(5,8,5,.75);
      box-shadow: 0 7px 0 rgba(5,8,5,.5);
    }

    .platform span:first-child {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .platform-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .platform-icon {
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      display: inline-block;
    }

    .platform-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .platform-arrow {
      font-size: 1.15rem;
      line-height: 1;
    }

    .platform:hover {
      transform: translateY(2px);
      box-shadow: 0 5px 0 rgba(5,8,5,.5);
      background: linear-gradient(90deg, #1d3214, #385f1e);
    }

    .hosts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 22px;
    }

    .host-card {
      display: grid;
      grid-template-columns: 138px 1fr;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border: 4px solid var(--ink);
      border-radius: 24px;
      background: rgba(8, 14, 7, .86);
      color: #dafd82;
      box-shadow: 7px 7px 0 rgba(215,255,79,.28);
    }

    .avatar {
      width: 138px;
      height: 138px;
      border-radius: 50%;
      border: 4px solid #9ad33d;
      overflow: hidden;
      background: #203618;
      box-shadow: 5px 5px 0 var(--ink);
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: none;
    }
    .host-card h3 {
      margin: 0 0 6px;
      font-size: 2rem;
      color: #c9ff56;
    }

    .host-card p {
      margin: 0;
      color: #eefdc0;
      font-weight: 700;
      line-height: 1.35;
    }

    .episodes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 22px;
    }

    .video-card {
      border: 4px solid var(--ink);
      border-radius: 22px;
      overflow: hidden;
      background: #182711;
      box-shadow: 7px 7px 0 rgba(215,255,79,.2);
    }

    .video-card .video-frame { aspect-ratio: 16 / 9; }
    .video-card .video-copy {
      padding: 16px;
      color: #ecffc4;
    }
    .video-card h3 {
      margin: 0 0 8px;
      color: #c9ff56;
      line-height: 1.05;
      font-size: 1.35rem;
    }
    .video-card p {
      margin: 0;
      color: #e2f7b6;
      line-height: 1.35;
      font-weight: 700;
    }

    .full-section {
      margin-top: 56px;
    }

    .contact-band {
      margin-top: 56px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      border: 4px solid #9ed83f;
      border-radius: 26px;
      background:
        linear-gradient(110deg, rgba(12,20,9,.96), rgba(55,91,29,.92));
      color: #eaffb8;
      padding: 28px;
      box-shadow: 8px 8px 0 rgba(215,255,79,.18);
    }

    .contact-band h2 {
      margin: 0 0 8px;
      color: #c9ff56;
      font-size: clamp(2rem, 4vw, 3.7rem);
      line-height: .9;
    }

    .contact-band p {
      margin: 0;
      font-weight: 750;
      line-height: 1.45;
    }

    footer {
      padding: 36px 0 42px;
      text-align: center;
      color: #c9ff56;
      background: transparent;
    }

    footer .sketch {
      font-size: clamp(2.2rem, 5.5vw, 5rem);
      line-height: .9;
    }

    @media (max-width: 980px) {
      .hero-grid, .cards, .hosts, .contact-band {
        grid-template-columns: 1fr;
      }
      .hero-grid {
        min-height: 0;
        padding-top: 38px;
      }
      .hero-art {
        min-height: auto;
      }
      .cards { grid-template-columns: 1fr; }
      .episodes-grid { grid-template-columns: 1fr; }
      .nav {
        position: relative;
      }
      .nav-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 18px;
      }
      .nav-links {
        justify-content: flex-start;
      }
      .hero-grid {
        padding-top: 44px;
      }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 22px, var(--max)); }
      .hero h1 { font-size: clamp(2.75rem, 16vw, 4.6rem); }
      .btn { width: 100%; }
      .host-card {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .avatar { margin: 0 auto; }
      .card { padding: 18px; }
      .sticker { display: none; }
      .nav-links a { padding: 6px 8px; }
    }


    .episode-player {
      border: 4px solid var(--ink);
      border-radius: 18px;
      background: rgba(5, 8, 5, .94);
      box-shadow: 5px 5px 0 rgba(5,8,5,.45);
      padding: 14px;
      margin-bottom: 18px;
    }

    .episode-player audio {
      display: block;
      width: 100%;
      accent-color: #bff248;
    }

    .episode-date {
      margin: 0 0 8px;
      font-size: .88rem;
      font-weight: 900;
      letter-spacing: .05em;
      text-transform: uppercase;
      opacity: .82;
    }

    /* Animation für die „Folge öffnen“-Buttons */
    .mini-button {
      transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-color .18s ease,
        color .18s ease;
      will-change: transform;
    }

    .mini-button:hover,
    .mini-button:focus-visible {
      transform: translate(-2px, -3px) rotate(-1deg);
      box-shadow: 7px 7px 0 rgba(5, 8, 5, .45);
      animation: miniButtonWiggle .45s ease;
    }

    .mini-button:active {
      transform: translate(1px, 1px) rotate(0deg);
      box-shadow: 2px 2px 0 rgba(5, 8, 5, .55);
    }

    .mini-button::after {
      content: "";
      display: inline-block;
      width: 0;
      transition: width .18s ease;
    }

    .mini-button:hover::after,
    .mini-button:focus-visible::after {
      width: 4px;
    }

    @keyframes miniButtonWiggle {
      0% { transform: translate(-2px, -3px) rotate(-1deg); }
      45% { transform: translate(-2px, -3px) rotate(1deg); }
      100% { transform: translate(-2px, -3px) rotate(-1deg); }
    }

    @media (prefers-reduced-motion: reduce) {
      .mini-button,
      .mini-button:hover,
      .mini-button:focus-visible,
      .mini-button:active {
        animation: none;
        transition: none;
      }
    }

/* Rechtlicher Footer / Impressum & Datenschutz */
.legal-footer {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 20px 16px 28px;
  text-align: center;
  color: rgba(45, 37, 30, 0.68);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.legal-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.legal-footer span {
  color: rgba(45, 37, 30, 0.38);
}

.legal-footer a:hover,
.legal-footer a:focus-visible {
  text-decoration: underline;
}

/* Kontrast-Fix: rechtlicher Footer auf dunklem Podcast-Hintergrund */
.legal-footer {
  color: rgba(255, 255, 255, 0.78);
}

.legal-footer span {
  color: rgba(255, 255, 255, 0.45);
}

.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: #ffffff;
}
