    @font-face {
      font-family: 'VT323';
      src:
        url('font/VT323-Regular.woff2') format('woff2'),
        url('font/VT323-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --bg: #070707;
      --bg-soft: #101010;
      --cream: #f2eadc;
      --muted: rgba(242, 234, 220, 0.58);
      --faint: rgba(242, 234, 220, 0.16);
      --line: #aa4fad;
      --line-soft: rgba(170, 79, 173, 0.42);
      --line-dark: rgba(170, 79, 173, 0.18);
      --coral: #f36c67;
      --cyan: #9cc6bd;
      --radius: 28px;
      --max: 1280px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--cream);
      font-family: 'VT323', monospace;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -3;
      background:
        radial-gradient(circle at 50% 8%, rgba(170, 79, 173, 0.18), transparent 34rem),
        radial-gradient(circle at 18% 38%, rgba(243, 108, 103, 0.10), transparent 26rem),
        radial-gradient(circle at 86% 62%, rgba(156, 198, 189, 0.08), transparent 30rem),
        linear-gradient(180deg, #090909 0%, #050505 100%);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 50;
      opacity: 0.16;
      mix-blend-mode: screen;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    }

    a { color: inherit; }

    .prototype-note {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0.5rem 1rem;
      text-align: center;
      font-family: 'VT323', monospace;
      font-size: 0.82rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(242,234,220,0.72);
      background: rgba(7,7,7,0.72);
      border-bottom: 1px solid rgba(242,234,220,0.08);
      backdrop-filter: blur(14px);
    }

    .site-nav {
      position: fixed;
      top: 2rem;
      left: 0;
      right: 0;
      z-index: 40;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem min(3.5vw, 3rem);
      font-family: 'VT323', monospace;
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(242,234,220,0.68);
      pointer-events: none;
    }

    .hamburger {
      display: none;
      position: fixed;
      top: 1.4rem;
      right: min(3.5vw, 3rem);
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      pointer-events: auto;
      background: none;
      border: none;
      padding: 6px;
      z-index: 42;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(242,234,220,0.72);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 41;
      background: rgba(7,7,7,0.96);
      backdrop-filter: blur(18px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2.2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'VT323', monospace;
      font-size: clamp(2rem, 8vw, 3.2rem);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(242,234,220,0.82);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .mobile-menu a:hover { color: var(--line); }

    .site-nav a, .menu-word { pointer-events: auto; text-decoration: none; }
    .nav-links { display: flex; gap: 1.4rem; align-items: center; }
    .nav-links a { opacity: 0.72; transition: color 0.25s, opacity 0.25s; }
    .nav-links a:hover { color: var(--line); opacity: 1; }

    .page {
      position: relative;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 min(3.5vw, 3rem) 5rem;
    }

    .hero {
      min-height: 88vh;
      display: grid;
      place-items: center;
      padding: 8rem 0 5rem;
      text-align: center;
      position: relative;
    }


    .live-marquee {
      position: absolute;
      top: 5.7rem;
      left: 50%;
      width: 100vw;
      transform: translateX(-50%);
      z-index: 8;
      overflow: hidden;
      text-decoration: none;
      color: rgba(242, 234, 220, 0.74);
      font-family: 'VT323', monospace;
      font-size: clamp(1.65rem, 4vw, 3.4rem);
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: lowercase;
      background: rgba(7, 7, 7, 0.28);
      border-top: 1px solid rgba(242, 234, 220, 0.08);
      border-bottom: 1px solid rgba(242, 234, 220, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 0.72rem 0;
    }

    .marquee-inner {
      display: flex;
      width: max-content;
      gap: 4.4rem;
      animation: marqueeMove 26s linear infinite;
      will-change: transform;
    }

    .marquee-inner span {
      white-space: nowrap;
    }

    .live-marquee:hover .marquee-inner {
      animation-play-state: paused;
    }

    @keyframes marqueeMove {
      from { transform: translateX(0); }
      to { transform: translateX(-33.333%); }
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: calc(50% - 1px);
      width: 2px;
      height: 7rem;
      transform: none;
      background: linear-gradient(to bottom, transparent, var(--line));
      box-shadow: 0 0 24px rgba(170,79,173,0.65);
    }

    .hero-kicker {
      position: absolute;
      top: 7rem;
      left: 0;
      text-align: left;
      font-family: 'VT323', monospace;
      font-size: 0.92rem;
      line-height: 1.8;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .logo {
      width: min(520px, 82vw);
      height: auto;
      image-rendering: auto;
      filter: drop-shadow(0 0 28px rgba(170,79,173,0.24));
    }

    .hero h1 {
      margin: 2rem auto 0;
      max-width: 740px;
      font-size: clamp(2.5rem, 5.6vw, 6rem);
      line-height: 0.95;
      font-weight: 300;
      letter-spacing: 0.05em;
    }

    .hero p {
      margin: 1.5rem auto 0;
      max-width: 560px;
      font-family: 'VT323', monospace;
      font-size: clamp(0.95rem, 1.6vw, 1.15rem);
      line-height: 2;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .tree {
      position: relative;
      padding: 2rem 0 0;
    }

    .trunk {
      position: absolute;
      top: 0;
      bottom: -4.5rem;
      left: calc(50% - 1px);
      width: 2px;
      transform: none;
      background: linear-gradient(
        to bottom,
        var(--line) 0%,
        var(--line-soft) 72%,
        var(--line) 88%,
        transparent 100%
      );
      box-shadow: 0 0 22px rgba(170,79,173,0.45);
    }

    .root-glow {
      position: absolute;
      left: 50%;
      bottom: 6.5rem;
      width: 280px;
      height: 180px;
      transform: translateX(-50%);
      opacity: 0.55;
      pointer-events: none;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(170,79,173,0.26), transparent 55%),
        repeating-radial-gradient(ellipse at 50% 10%, rgba(170,79,173,0.26) 0 1px, transparent 1px 14px);
      filter: blur(0.4px);
      mask-image: linear-gradient(to bottom, black, transparent 82%);
    }

    .branch {
      position: relative;
      min-height: 520px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: min(7vw, 5rem);
    }

    .branch.compact { min-height: 420px; }
    .branch.left .content { grid-column: 1; justify-self: end; }
    .branch.left .text { grid-column: 2; justify-self: start; }
    .branch.right .content { grid-column: 2; justify-self: start; }
    .branch.right .text { grid-column: 1; grid-row: 1; justify-self: end; text-align: right; }

    .node {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 20px;
      height: 20px;
      transform: translate(-50%, -50%);
      border-radius: 999px;
      background: var(--bg);
      border: 4px solid var(--line);
      box-shadow: 0 0 0 7px rgba(170,79,173,0.14), 0 0 22px rgba(170,79,173,0.82);
      z-index: 4;
    }

    .twig {
      position: absolute;
      top: 50%;
      height: 2px;
      width: min(19vw, 245px);
      background: linear-gradient(to right, var(--line), var(--line-soft));
      box-shadow: 0 0 16px rgba(170,79,173,0.35);
    }

    .branch.left .twig { right: 50%; }
    .branch.right .twig { left: 50%; }
    .branch.right .twig { background: linear-gradient(to right, var(--line-soft), var(--line)); }

    .text {
      max-width: 310px;
      width: 100%;
      z-index: 3;
    }

    .num {
      display: block;
      margin-bottom: 1rem;
      font-family: 'VT323', monospace;
      font-size: 1.15rem;
      letter-spacing: 0.10em;
      color: var(--line);
    }

    .text h2 {
      margin: 0;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      font-weight: 300;
      line-height: 0.95;
      letter-spacing: 0.05em;
    }

    .rule {
      width: 46px;
      height: 1px;
      background: var(--cream);
      opacity: 0.7;
      margin: 1.1rem 0 1.4rem;
    }
    .branch.right .rule { margin-left: auto; }

    .text p {
      margin: 0 0 1.2rem;
      font-family: 'VT323', monospace;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 2.1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .text a {
      font-family: 'VT323', monospace;
      color: var(--line);
      font-size: 0.95rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.35rem;
    }

    .content {
      width: min(520px, 100%);
      z-index: 2;
    }

    .frame {
      position: relative;
      border: 1px solid rgba(170,79,173,0.42);
      background: rgba(255,255,255,0.02);
      padding: 0.6rem;
      box-shadow: 0 26px 70px rgba(0,0,0,0.42);
    }

    .frame::before {
      content: '';
      position: absolute;
      inset: -8px;
      border: 1px solid rgba(170,79,173,0.14);
      pointer-events: none;
    }

    .rough img, .cover img, .portrait img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.92) contrast(1.05);
    }

    .covers {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding-bottom: 2.2rem;
    }

    .cover {
      aspect-ratio: 1;
      overflow: hidden;
      background: #111;
    }

    .caption-line {
      position: absolute;
      left: 1.2rem;
      right: 1.2rem;
      bottom: 0.9rem;
      height: 46px;
      opacity: 0.7;
      background:
        linear-gradient(var(--line), var(--line)) left 50% / 100% 1px no-repeat,
        repeating-linear-gradient(90deg, transparent 0 10px, rgba(170,79,173,0.48) 10px 11px, transparent 11px 16px);
      mask-image: radial-gradient(ellipse at center, black 45%, transparent 72%);
    }

    .photo-wide { aspect-ratio: 1.46 / 1; overflow: hidden; }
    .photo-live { aspect-ratio: 1.62 / 1; overflow: hidden; }

    .heads-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .portrait {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      background: #111;
    }

    .portrait span {
      position: absolute;
      left: 0.65rem;
      bottom: 0.55rem;
      font-family: 'VT323', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(242,234,220,0.76);
      text-shadow: 0 2px 10px #000;
    }

    .portrait.bjoern img { object-position: 50% 48%; }
    .portrait.henner img { object-position: 92% 45%; transform: scale(1); transform-origin: 92% 45%; }
    .portrait.phil img { object-position: 41% 42%; transform: scale(1); transform-origin: 41% 42%; }
    .portrait.martin img { object-position: 64% 42%; transform: scale(1); transform-origin: 64% 42%; }

    .abstract-card {
      width: min(420px, 100%);
      margin: 1rem auto 0;
      aspect-ratio: 1.08 / 1;
      overflow: hidden;
      opacity: 0.76;
      filter: grayscale(0.1) contrast(1.08);
      mix-blend-mode: screen;
    }

    .links-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
      max-width: 460px;
    }

    .social-card {
      display: block;
      padding: 1rem 1.1rem;
      border: 1px solid rgba(170,79,173,0.34);
      background: rgba(255,255,255,0.025);
      border-radius: 18px;
      text-decoration: none;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .social-card:hover {
      transform: translateY(-4px);
      border-color: rgba(170,79,173,0.84);
      background: rgba(170,79,173,0.09);
    }

    .social-card b {
      display: block;
      font-family: 'VT323', monospace;
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      margin-bottom: 0.2rem;
    }

    .social-card span {
      display: block;
      font-family: 'VT323', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .footer {
      position: relative;
      padding: 9rem 0 2rem;
      text-align: center;
      font-family: 'VT323', monospace;
      color: rgba(242,234,220,0.46);
      font-size: 0.82rem;
      line-height: 2;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer a {
      color: rgba(242,234,220,0.62);
      text-decoration: none;
      transition: color 0.25s ease;
    }

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

    .reveal { opacity: 0; transform: translateY(26px); transition: 0.9s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 900px) {
      .site-nav { display: none; }
      .hamburger { display: flex; }
      .prototype-note { font-size: 0.54rem; letter-spacing: 0.08em; }
      .page { padding-inline: 1.15rem; }
      .hero { min-height: 76vh; padding-top: 8.5rem; }
      .hero::after { left: calc(1.2rem - 1px); transform: none; }
      .live-marquee { top: 4.4rem; font-size: clamp(1rem, 7vw, 1.7rem); padding: 0.55rem 0; }
      .hero-kicker { position: static; text-align: center; margin-bottom: 3rem; }
      .trunk { left: calc(1.2rem - 1px); bottom: -4.5rem; }
      .branch, .branch.compact {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        gap: 1.5rem;
        padding: 3rem 0 3rem 2.4rem;
      }
      .branch.left .content,
      .branch.left .text,
      .branch.right .content,
      .branch.right .text {
        grid-column: 1;
        grid-row: auto;
        justify-self: stretch;
        text-align: left;
      }
      .branch .text { order: 1; }
      .branch .content { order: 2; }
      .branch.right .rule { margin-left: 0; }
      .node { left: 1.2rem; top: 3.8rem; width: 16px; height: 16px; border-width: 3px; }
      .twig { left: 1.2rem !important; right: auto !important; top: 3.8rem; width: 2.1rem; }
      .content { width: 100%; }
      .covers { gap: 0.65rem; }
      .links-grid { grid-template-columns: 1fr; }
      .root-glow { left: 1.2rem; transform: translateX(-50%); }
    }

    @media (max-width: 520px) {
      .hero h1 { font-size: 2.7rem; }
      .hero p, .text p { letter-spacing: 0.08em; }
      .heads-grid { gap: 0.55rem; }
      .portrait span { font-size: 0.48rem; }
    }

    /* ── Show block ── */
    .show-block {
      display: inline-flex;
      align-items: center;
      gap: 1.2rem;
      margin-top: 2rem;
      padding: 0.9rem 1.4rem;
      border: 1px solid rgba(170,79,173,0.42);
      background: rgba(170,79,173,0.06);
      border-radius: 4px;
      text-decoration: none;
      transition: border-color 0.25s ease, background 0.25s ease;
    }
    .show-block:hover {
      border-color: rgba(170,79,173,0.82);
      background: rgba(170,79,173,0.12);
    }
    .show-block .show-date {
      font-family: 'VT323', monospace;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      letter-spacing: 0.12em;
      color: var(--line);
    }
    .show-block .show-info {
      font-family: 'VT323', monospace;
      font-size: clamp(0.78rem, 1.5vw, 0.92rem);
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1.6;
    }
    .show-block .show-arrow {
      font-size: 1rem;
      color: var(--line);
      opacity: 0.7;
    }

    /* ── Audio Player ── */
    .player {
      margin-top: 1.4rem;
      border: 1px solid rgba(170,79,173,0.28);
      background: rgba(255,255,255,0.02);
      border-radius: 4px;
      overflow: hidden;
    }
    .player-track {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      padding: 0.75rem 1rem;
      cursor: pointer;
      transition: background 0.2s ease;
      border-bottom: 1px solid rgba(170,79,173,0.12);
    }
    .player-track:last-of-type { border-bottom: none; }
    .player-track:hover { background: rgba(170,79,173,0.07); }
    .player-track.active { background: rgba(170,79,173,0.11); }
    .player-btn {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(170,79,173,0.5);
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .player-btn svg { display: block; }
    .player-track.active .player-btn {
      border-color: var(--line);
      background: rgba(170,79,173,0.18);
    }
    .player-title {
      flex: 1;
      font-family: 'VT323', monospace;
      font-size: 1.05rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.2s ease;
    }
    .player-track.active .player-title { color: var(--cream); }
    .player-track:hover .player-title { color: var(--cream); }
    .player-progress-wrap {
      display: none;
      padding: 0 1rem 0.75rem;
      gap: 0.6rem;
      align-items: center;
      background: rgba(170,79,173,0.06);
    }
    .player-progress-wrap.visible { display: flex; }
    .player-progress {
      flex: 1;
      height: 3px;
      background: rgba(242,234,220,0.12);
      border-radius: 2px;
      cursor: pointer;
      position: relative;
    }
    .player-progress-fill {
      height: 100%;
      background: var(--line);
      border-radius: 2px;
      width: 0%;
      pointer-events: none;
    }
    .player-time {
      font-family: 'VT323', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      color: rgba(242,234,220,0.4);
      min-width: 36px;
      text-align: right;
    }
    .error-hint {
      display: none;
      padding: 0.5rem 1rem 0.75rem;
      font-size: 0.72rem;
      color: rgba(255,80,80,0.7);
      letter-spacing: 0.06em;
      background: rgba(170,79,173,0.06);
    }
    .error-hint.visible { display: block; }

    /* ── Glitch Logo ── */
    .logo-wrap {
      width: min(480px, 78vw);
      position: relative;
      margin: 0 auto;
    }
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      column-gap: clamp(4px, 0.8vw, 12px);
      row-gap: clamp(14px, 1.9vw, 22px);
      position: relative;
    }
    .logo-tile {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: visible;
      padding-bottom: 6px;
      animation: tileFloat 4.8s ease-in-out infinite;
      will-change: transform;
    }
    .logo-tile.empty {
      animation: none;
      visibility: hidden;
    }
    .logo-tile img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }
    .logo-tile:nth-child(2)  { animation-delay: 0s; }
    .logo-tile:nth-child(3)  { animation-delay: 0.2s; }
    .logo-tile:nth-child(4)  { animation-delay: 0.4s; }
    .logo-tile:nth-child(5)  { animation-delay: 0.1s; }
    .logo-tile:nth-child(6)  { animation-delay: 0.35s; }
    .logo-tile:nth-child(7)  { animation-delay: 0.55s; }
    .logo-tile:nth-child(8)  { animation-delay: 0.15s; }
    .logo-tile:nth-child(9)  { animation-delay: 0.45s; }
    .logo-tile:nth-child(10) { animation-delay: 0.25s; }
    @keyframes tileFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50%       { transform: translateY(-3px) scale(1.008); }
    }
    .chr-wrap {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .chr-wrap .layer-main { position: relative; z-index: 1; }
    .chr-wrap .layer-r,
    .chr-wrap .layer-b {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
    }
    .chr-wrap .layer-r img { filter: url(#tint-r); mix-blend-mode: screen; }
    .chr-wrap .layer-b img { filter: url(#tint-b); mix-blend-mode: screen; }
    .logo-tile.glitching .chr-wrap .layer-r,
    .logo-tile.glitching .chr-wrap .layer-b { opacity: 1; }

    .logo-scanlines {
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(
        to bottom,
        transparent 0px, transparent 3px,
        rgba(0,0,0,0.12) 3px, rgba(0,0,0,0.12) 4px
      );
      pointer-events: none;
      z-index: 48;
      animation: scanMove 10s linear infinite;
      opacity: 0.35;
    }
    @keyframes scanMove {
      0%   { background-position: 0 0; }
      100% { background-position: 0 80px; }
    }
    #glitchNoise {
      position: fixed;
      inset: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 47;
      opacity: 0;
      transition: opacity 0.05s;
    }
    #glitchNoise.visible { opacity: 1; }

    @media (prefers-reduced-motion: reduce) {
      .logo-tile { animation: none !important; }
      .logo-scanlines, #glitchNoise { display: none; }
    }

/* ── Unterseiten (Impressum, Datenschutz) ── */
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.wrap h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--line);
  text-transform: lowercase;
}
.wrap h2 {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 400;
  color: var(--line);
  text-transform: lowercase;
}
.wrap p {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  color: rgba(242,234,220,.82);
  line-height: 1.7;
}
.wrap a {
  color: var(--line);
  text-decoration: none;
}
.wrap a:hover { opacity: .8; }
.back {
  display: inline-block;
  margin-top: 3rem;
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: lowercase;
}

/* ── Merch ── */
.merch-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.merch-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.merch-info {
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
}
.merch-order {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(170,79,173,0.42);
  background: rgba(170,79,173,0.06);
  border-radius: 4px;
  text-decoration: none;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.merch-order:hover {
  border-color: rgba(170,79,173,0.82);
  background: rgba(170,79,173,0.14);
}
