    :root {
      --bg-dark: #050102;
      --bg-red: #5B0F1A;
      --accent: #A2202A;
      --accent-soft: #F8E7D5;
      --text-main: #F9F9F9;
      --text-muted: #B9B9B9;
      --card-bg: rgba(0,0,0,0.45);
      --border-subtle: rgba(255,255,255,0.08);
      --radius-lg: 18px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-main);
      background: radial-gradient(circle at top, var(--bg-red) 0%, var(--bg-dark) 70%);
      line-height: 1.6;
    }

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

    a { color: var(--accent-soft); text-decoration: none; }
    a:hover { text-decoration: underline; }

    h1, h2, h3, h4 {
      font-family: 'Montserrat', system-ui, sans-serif;
      margin-top: 0;
    }

    .container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    header.hero {
      text-align: center;
      padding: 5rem 1.5rem 4rem;
      position: relative;
    }

    .hero-logo {
      display: block;
      width: 60vw;
      max-width: 260px;
      height: auto;
      margin: 0 auto 0rem;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      margin-bottom: .5rem;
    }

    .hero h2 {
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 500;
      color: var(--accent-soft);
      margin-bottom: 1rem;
    }

    .hero p {
      max-width: 620px;
      margin: 0 auto 1.8rem;
      color: var(--text-muted);
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .75rem;
      margin-bottom: 1rem;
    }
    
  .hero-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
    margin: 1.8rem auto 0;
    max-width: 520px;
    text-align: left;
  }

  .hero-links-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 .5rem;
  }

  .hero-links-col a {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .9rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(0,0,0,0.35);
    color: var(--text-main);
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: .45rem;
    transition: background .15s;
  }

  .hero-links-col a:hover {
    background: rgba(255,255,255,0.08);
    text-decoration: none;
  }

  .hero-links-col a svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: #ffffff;
  }
  .icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem auto 0;
  max-width: 480px;
}

.icon-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,0.75);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .15s, transform .15s;
}

.icon-grid a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.icon-grid a svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

    .btn {
      display: inline-block;
      padding: 0.9rem 1.8rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      background: var(--accent);
      color: var(--accent-soft);
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--accent-soft);
      color: var(--accent-soft);
    }

    .btn:hover { filter: brightness(1.08); text-decoration: none; }

    section {
      border-top: 1px solid var(--border-subtle);
      backdrop-filter: blur(6px);
    }

    .section-header {
      margin-bottom: 1.5rem;
    }

    .section-header p {
      color: var(--text-muted);
      max-width: 620px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.03);
    }

    .tag {
      display: inline-block;
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .09em;
      padding: .2rem .6rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.3);
      margin-bottom: .5rem;
      color: var(--text-muted);
    }

    .muted { color: var(--text-muted); }

    .avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      background: rgba(255,255,255,0.08);
      margin-bottom: .75rem;
    }

    .episode-title { margin: .4rem 0 .3rem; font-size: 1.05rem; }
    .episode-meta { font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem; }

    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      margin-top: .7rem;
    }

    .pill-link {
      font-size: .85rem;
      padding: .3rem .8rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
    }

    /* Fixiertes Menü rechts oben */
    .menu-wrap {
      position: fixed;
      top: 1.5rem;
      right: 1.5rem;
      z-index: 3000;
    }

    .dropdown-menu {
      position: relative;
    }

    .dropdown-menu summary {
      list-style: none;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(0,0,0,0.45);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; /* für horizontale Balken */
      gap: 6px;
      cursor: pointer;
      padding: 0;
      backdrop-filter: blur(8px);
    }

    .dropdown-menu summary::-webkit-details-marker {
      display: none;
    }

    .dropdown-menu summary span {
      display: block;
      width: 22px;          /* breite Balken */
      height: 3px;          /* dünne Balken */
      border-radius: 999px;
      background: var(--accent-soft);
    }

    .dropdown-panel {
      position: absolute;
      top: calc(100% + 0.75rem);
      right: 0;
      min-width: 220px;
      background: rgba(10, 4, 5, 0.96);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 0.5rem;
      box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    }

    .dropdown-panel a {
      display: block;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      color: var(--text-main);
      text-decoration: none;
    }

    .dropdown-panel a:hover {
      background: rgba(255,255,255,0.06);
      text-decoration: none;
    }

    footer {
      text-align: center;
      padding: 2rem 1rem 3rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border-subtle);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.2rem;
      margin-bottom: 0.7rem;
    }

    @media (max-width: 640px) {
      header.hero { padding-top: 3.5rem; }
      .container { padding-inline: 1.25rem; }

      .menu-wrap {
        top: 1rem;
        right: 1rem;
      }

      .dropdown-menu summary {
        width: 48px;
        height: 48px;
      }

      .dropdown-panel {
        min-width: 200px;
      }
      
      /* Kontaktformular */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: .25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.55);
  color: var(--text-main);
  font: inherit;
  box-sizing: border-box;
  transition: border-color .15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-hint {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

      
    }