/* ==========================================================
   00) THEME / DESIGN TOKENS
=========================================================== */
:root {
  --bg: #0b0b10;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  --max: 680px;
  --r: 22px;

  /* Desktop Tokens - Auf 1100px angepasst */
  --max-desktop: 1100px; 
  --panel: rgba(255, 255, 255, 0.065);
  --panel-border: rgba(255, 255, 255, 0.14);
}

/* ==========================================================
   01) RESET / BASE
=========================================================== */
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background-color: var(--bg);
  /* Hintergrund hier fixiert, damit bei Margins kein schwarzer Balken entsteht */
  background: radial-gradient(
      1000px 700px at 15% 10%,
      rgba(156, 55, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 85% 15%,
      rgba(0, 255, 204, 0.14),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 50% 110%,
      rgba(255, 0, 128, 0.12),
      transparent 55%
    ),
    var(--bg);
  background-attachment: fixed;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  color: var(--text);
}

/* ==========================================================
   02) WRAPPER / LAYOUT
=========================================================== */
.wrap {
  width: min(var(--max), calc(100% - 26px));
  margin: 0 auto;
  padding: 26px 0 44px;
  position: relative;
  z-index: 1; /* Content über bg-video */
}

/* ==========================================================
   03) PROFILE / HEADER
=========================================================== */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 18px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 204, 0.35),
    rgba(156, 55, 255, 0.35),
    rgba(255, 0, 128, 0.25)
  );
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(
    from 90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0)
  );
  animation: spin 3.6s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .avatar::after {
    animation: none;
  }
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.handle {
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.2px;
}

.bio {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

/* Desktop: Kurztext im Hero (mobile unsichtbar) */
.hero-short {
  display: none;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
  max-width: 720px;
}

/* Desktop CTA (auf Mobile hidden) */
.hero-cta {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.12s ease, background 0.12s ease,
    border-color 0.12s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  outline: none;
}

.hero-cta:active {
  transform: translateY(0px) scale(0.99);
}

/* ==========================================================
   04) SOCIAL BUTTONS
=========================================================== */
.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.sbtn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.12s ease, background 0.12s ease,
    border-color 0.12s ease, width 0.22s ease, justify-content 0.22s ease;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer; /* auch für <button> */
}

.sbtn:hover,
.sbtn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.sbtn:active {
  transform: translateY(0px) scale(0.98);
}

.sbtn svg {
  width: 20px;
  height: 20px;
  opacity: 0.92;
  flex: 0 0 auto;
}

/* Mail-Button: im Normalzustand nur Icon, bei Hover Text einblenden */
.sbtn.mail {
  width: 46px;
  padding: 0;
  justify-content: center;
  gap: 0;
}

.sbtn.mail:hover,
.sbtn.mail:focus-visible {
  width: 200px;
  padding: 0 12px;
  justify-content: flex-start;
  gap: 8px;
}

.sbtn .slabel {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width 0.22s ease, opacity 0.18s ease,
    transform 0.18s ease;
}

.sbtn.mail:hover .slabel,
.sbtn.mail:focus-visible .slabel {
  max-width: 160px;
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   05) INTRO + "MEHR/WENIGER"
=========================================================== */
.intro {
  margin: 6px 6px 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.intro-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  cursor: pointer;
  margin-left: 6px;
  padding: 0;
  text-decoration: underline;
}

.intro-toggle:hover {
  color: rgba(255, 255, 255, 0.96);
}

/* ==========================================================
   06) SECTION HEADERS + LIST LAYOUT
=========================================================== */
.section {
  margin-top: 14px;
}

.h3 {
  margin: 22px 6px 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.list {
  display: grid;
  gap: 10px;
}

/* ==========================================================
   07) LINK KACHELN
=========================================================== */
.link {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  column-gap: 12px;
  padding: 4px 16px 4px 10px;
  border-radius: var(--r);

  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.12s ease, background 0.12s ease,
    border-color 0.12s ease;
  min-height: 58px;
}

.link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.link:active {
  transform: translateY(0px) scale(0.995);
}

.lthumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  margin-left: -6px;
}

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

.lt {
  min-width: 0;
  text-align: center;
  justify-self: center;
}

.lt strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.lt span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.rside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 56px;
}

.badge {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

.arr {
  opacity: 0.72;
  font-size: 18px;
}

.lthumb.video {
  position: relative;
}

.lthumb.video .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 16px;
}

/* ==========================================================
   08) FEATURED (MERCH CARD)
=========================================================== */
.featured {
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  display: flex;
  gap: 14px;
  padding: 6px;
  transition: transform 0.12s ease, background 0.12s ease,
    border-color 0.12s ease;
}

.featured:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.thumb {
  width: 104px;
  height: 104px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

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

.ftext {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding-right: 4px;
}

.ftext strong {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ftext span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fmeta {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0.9;
}

/* ==========================================================
   09) FOOTER
=========================================================== */
footer {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ==========================================================
   10) RESPONSIVE (Mobile)
=========================================================== */
@media (max-width: 420px) {
  .badge {
    display: none;
  }
  .link {
    grid-template-columns: 56px 1fr auto;
    padding: 5px 16px 5px 10px;
  }

  .lthumb {
    width: 68px;
    height: 68px;
    margin-left: -5px;
  }

  .featured {
    padding: 8px;
  }

  .thumb {
    width: 96px;
    height: 96px;
  }
}

/* ==========================================================
   13) LEGAL (Impressum/Datenschutz) Modal
=========================================================== */
.legal-open {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  cursor: pointer;
}

.legal-open:hover {
  text-decoration: underline;
}

.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
}

.legal-overlay.is-open {
  display: block;
}

.legal-modal {
  width: min(960px, calc(100% - 22px));
  max-height: 86vh;
  margin: 7vh auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(16, 16, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.65);
}

.legal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-head h2 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-tab,
.legal-close {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 13px;
}

.legal-close {
  width: 38px;
  height: 38px;
  font-size: 18px;
  line-height: 1;
}

.legal-body {
  padding: 18px;
  overflow-y: auto;
  max-height: calc(86vh - 64px);
  line-height: 1.6;
}

.legal-body .hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 16px 0;
}

.legal-body ul {
  margin-left: 18px;
}

/* ==========================================================
   14) BACKGROUND VIDEO
=========================================================== */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.12;
  filter: blur(1.5px) saturate(0.7) contrast(0.9) brightness(0.75);
  transform: scale(1.03);
  pointer-events: none;
}

/* ==========================================================
   15) EVENT CALENDAR PANEL + BUTTON (ohne drehen)
=========================================================== */
.sbtn.sbtn-cal {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 204, 0.18),
    rgba(156, 55, 255, 0.16),
    rgba(255, 0, 128, 0.12)
  );
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

.sbtn.sbtn-cal::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0.55;
  pointer-events: none;
}

.sbtn.sbtn-cal:hover,
.sbtn.sbtn-cal:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.sbtn.sbtn-cal .cal-emoji {
  position: relative;
  z-index: 1;
  font-size: 18px;
  transform: translateY(-1px);
}

.cal-panel {
  margin: 10px 6px 18px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.cal-panel[hidden] {
  display: none;
}

.cal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cal-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.cal-sub {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.35;
}

.cal-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.cal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cal-body {
  padding: 12px 12px 14px;
}

.cal-list {
  display: grid;
  gap: 10px;
}

.cal-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.cal-date {
  display: grid;
  place-items: center;
  width: 86px;
  border-radius: 14px;
  padding: 10px 8px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  line-height: 1.15;
}

.cal-date .d {
  font-size: 18px;
  font-weight: 750;
}

.cal-date .m {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.cal-main {
  min-width: 0;
}

.cal-mainlink {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 14px;
  padding: 6px 8px;
  margin: -6px -8px;
  transition: background 0.12s ease;
}

.cal-mainlink:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cal-titleline {
  display: block;
  font-size: 14.5px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-city {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cal-ticket {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 12.5px;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.12s ease, background 0.12s ease,
    border-color 0.12s ease;
  white-space: nowrap;
}

.cal-ticket:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.cal-ticket.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cal-arrow {
  opacity: 0.65;
  font-size: 18px;
}

.cal-empty,
.cal-error {
  opacity: 0.75;
  text-align: center;
  padding: 10px 8px;
  font-size: 13px;
}

/* ==========================================================
   20) DESKTOP LAYOUT (ab 1024px)
=========================================================== */
@media (min-width: 1024px) {
  :root {
    /* Fenster auf 1100px gesetzt */
    --max-desktop: 1100px; 
    --max: var(--max-desktop);
  }

  /* ✅ MITTLERER BEREICH: Begrenzt & oben mit 60px Abstand zum Rand.
     Hintergrund liegt auf html und füllt alles aus. */
  .wrap {
    width: min(var(--max), calc(100% - 56px));
    padding: 44px 0 54px;
    margin: 60px auto 44px; /* 60px Luft oben zum Browserrand */
  }

  /* Fenster/Panel Look */
  .wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(156, 55, 255, 0.08),
        rgba(0, 255, 204, 0.06),
        rgba(255, 0, 128, 0.05)
      ),
      rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(14px);
    pointer-events: none;
  }

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

  /* Hero */
  .profile {
    position: relative;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 18px;
    margin: 10px 26px 10px;
    padding: 18px 18px;
    border-radius: 26px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  }

  .avatar {
    width: 138px;
    height: 138px;
  }

  .handle {
    font-size: 42px;
    letter-spacing: 0.3px;
  }

  .bio {
    font-size: 15px;
  }

  .hero-short {
    display: block;
    max-width: 760px;
  }

  .hero-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 10px;
  }

  .socials {
    margin: 0;
    position: absolute;
    top: 14px;
    right: 14px;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
    transform: translate(-2px, -2px);
  }

  .intro {
    margin: 10px 26px 18px;
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .intro .intro-short {
    display: none;
  }

  .intro .intro-more:not([hidden]) {
    padding: 18px 18px;
    border-radius: 26px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  }

  .intro-toggle {
    display: none;
  }

  .cal-panel {
    margin: 10px 26px 18px;
  }

  .h3 {
    margin: 26px 26px 12px;
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  /* 3 Spalten */
  .list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0 26px;
  }

  /* Featured über volle Breite */
  .list > .featured {
    grid-column: 1 / -1;
  }

  /* ✅ QUADRATISCHE KACHELN MIT TEXT-OVERLAY (Chrome & Safari Fix) */
  .link {
    display: block;
    padding: 0;
    border-radius: 20px;
    overflow: hidden; 
    position: relative;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    
    /* Safari Clipping Fixes */
    isolation: isolate;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }

  .lthumb {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .lthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lthumb.video .play {
    border-radius: 0;
    z-index: 1;
  }

  /* ✅ Die graue Bar als Overlay am Boden fixiert */
  .lt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    text-align: left;
    padding: 12px 42px 14px 16px; 
    
    background: rgba(16, 16, 22, 0.85); 
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .lt strong {
    font-size: 15.5px;
    margin-bottom: 2px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .lt span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  /* Badge oben links */
  .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    transform: none;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* ✅ Pfeil UNTEN RECHTS */
  .rside {
    position: absolute;
    right: 14px;
    bottom: 14px; /* Exakt unten rechts in der Bar */
    top: auto;
    transform: none;
    width: auto;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
  }

  .arr {
    font-size: 14px;
    opacity: 0.7;
    color: #fff;
  }

  /* Featured groß */
  .featured {
    display: flex;
    flex-direction: row;
    padding: 12px;
    gap: 14px;
  }

  .thumb {
    width: 220px;
    height: 160px;
    border-radius: 18px;
  }

  .ftext {
    padding-right: 0;
  }

  .ftext strong {
    font-size: 18px;
  }

  footer {
    margin-top: 28px;
  }
}