    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #07090a;
      --bg-soft:   #0c1110;
      --panel:     rgba(0, 255, 65, 0.025);
      --panel-2:   rgba(0, 255, 65, 0.05);
      --fg:        #00ff66;
      --fg-glow:   #00ff8855;
      --fg-dim:    #4ade80;
      --fg-mid:    #1f8a3b;
      --fg-muted:  #0e4d22;
      --text:      #d9f5dd;
      --text-dim:  #8aa394;
      --text-mute: #4f6359;
      --amber:     #fbbf24;
      --red:       #ff5d5d;
      --border:    #11341c;
      --border-strong: #1d5a35;
      --font:      'JetBrains Mono', 'Courier New', Courier, monospace;
      --radius:    4px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font);
      font-size: 14.5px;
      line-height: 1.7;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── Subtle CRT scanlines (lighter than original) ── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.035) 2px,
        rgba(0, 0, 0, 0.035) 3px
      );
      pointer-events: none;
      z-index: 9000;
    }

    /* ── Soft green vignette ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 100, 0.06), transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 255, 100, 0.04), transparent 50%);
      pointer-events: none;
      z-index: -1;
    }

    /* ═════════════════ HEADER ═════════════════ */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(7, 9, 10, 0.78);
      backdrop-filter: blur(10px) saturate(140%);
      -webkit-backdrop-filter: blur(10px) saturate(140%);
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .brand {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--fg);
      text-decoration: none;
      text-shadow: 0 0 12px var(--fg-glow);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    @keyframes blink { 50% { opacity: 0; } }

    nav { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
    nav a {
      color: var(--fg-dim);
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      transition: color 0.2s, text-shadow 0.2s;
    }
    nav a:hover { color: var(--fg); text-shadow: 0 0 10px var(--fg-glow); }
    nav a::before { content: '> '; color: var(--fg-muted); }

    .lang-switcher {
      display: flex;
      gap: 0.25rem;
      margin-left: 0.5rem;
      border: 1px solid var(--border);
      padding: 0.18rem;
    }
    .lang-btn {
      background: none;
      border: none;
      color: var(--fg-muted);
      padding: 0.18rem 0.55rem;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      transition: all 0.18s;
      text-decoration: none;
      display: inline-block;
    }
    .lang-btn:hover { color: var(--fg-dim); }
    .lang-btn.active { background: var(--fg); color: var(--bg); }

    /* ═════════════════ HERO ═════════════════ */
    #hero {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3.5rem 2rem 3rem;
      position: relative;
    }

    .prompt {
      color: var(--fg-mid);
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
    }
    .prompt .user { color: var(--fg-dim); }
    .prompt .path { color: var(--amber); }

    .ascii-logo {
      font-size: clamp(0.5rem, 1.45vw, 0.95rem);
      line-height: 1.18;
      color: var(--fg);
      text-shadow: 0 0 14px var(--fg-glow);
      white-space: pre;
      overflow-x: auto;
      margin-bottom: 1.8rem;
      animation: flicker 4s infinite;
    }
    @keyframes flicker {
      0%, 100%      { opacity: 1; }
      40%, 41.5%    { opacity: 0.85; }
      72%, 72.6%    { opacity: 0.65; }
      88%, 88.4%    { opacity: 0.9; }
    }

    .hero-line {
      font-size: clamp(1.2rem, 2.6vw, 1.9rem);
      color: var(--text);
      letter-spacing: 0.02em;
      margin-bottom: 0.6rem;
      font-weight: 500;
    }
    .hero-sub {
      color: var(--text-dim);
      font-size: 0.95rem;
      max-width: 620px;
    }
    .cursor {
      display: inline-block;
      width: 0.55em;
      height: 1.05em;
      background: var(--fg);
      vertical-align: text-bottom;
      animation: blink 1s step-end infinite;
      margin-left: 2px;
      box-shadow: 0 0 8px var(--fg-glow);
    }

    .hero-banner {
      margin-top: 2.2rem;
      border: 1px solid var(--border-strong);
      background: var(--panel);
      padding: 1rem 1.2rem;
      max-width: 720px;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .hero-banner:hover {
      border-color: var(--fg-dim);
      box-shadow: 0 0 28px -8px var(--fg-glow);
    }
    .hero-banner .tag {
      color: var(--fg);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      border: 1px solid var(--fg-dim);
      padding: 0.18rem 0.45rem;
      flex-shrink: 0;
      animation: tagPulse 2.6s ease-in-out infinite;
    }
    @keyframes tagPulse {
      0%, 100% { box-shadow: 0 0 0 0 var(--fg-glow); }
      50%      { box-shadow: 0 0 16px 2px var(--fg-glow); }
    }
    .hero-banner .body {
      font-size: 0.88rem;
      color: var(--text);
    }
    .hero-banner strong { color: var(--fg); text-shadow: 0 0 8px var(--fg-glow); }
    .hero-banner a { color: var(--fg); text-decoration: none; }
    .hero-banner a:hover { text-decoration: underline; }

    /* ═════════════════ SECTIONS ═════════════════ */
    .sep {
      border: none;
      border-top: 1px dashed var(--border);
      margin: 0 2rem;
    }

    section { padding: 4rem 2rem; }
    .section-wrap {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-wrap.wide { max-width: 1240px; }

    .section-head {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      margin-bottom: 1.6rem;
      flex-wrap: wrap;
    }
    .section-num {
      font-size: 0.75rem;
      color: var(--fg-mid);
      letter-spacing: 0.18em;
      white-space: nowrap;
    }
    h2 {
      font-size: 1.15rem;
      letter-spacing: 0.1em;
      color: var(--fg);
      text-transform: uppercase;
      text-shadow: 0 0 14px var(--fg-glow);
    }
    .section-lede {
      color: var(--text-dim);
      font-size: 0.92rem;
      max-width: 680px;
      margin-bottom: 2.2rem;
    }

    p, li { color: var(--text); }
    p + p  { margin-top: 0.8rem; }
    a { color: var(--fg); }
    a:hover { text-decoration: underline; }
    em { color: var(--fg-dim); font-style: normal; }
    strong { color: var(--fg); }

    /* ─── About ─── */
    #about .prose { max-width: 720px; }
    #about .prose p { color: var(--text); font-size: 0.95rem; }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
      margin-top: 2.2rem;
    }
    .stat {
      border: 1px solid var(--border);
      padding: 1rem 1.1rem;
      background: var(--panel);
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    }
    .stat:hover {
      border-color: var(--fg-dim);
      background: var(--panel-2);
      box-shadow: 0 0 22px -8px var(--fg-glow);
    }
    .stat-num {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--fg);
      text-shadow: 0 0 10px var(--fg-glow);
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-size: 0.74rem;
      color: var(--text-dim);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    /* ═════════════════ EVENTS GRID ═════════════════ */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.1rem;
    }

    .event-card {
      --c: var(--fg);
      display: block;
      border: 1px solid color-mix(in srgb, var(--c) 30%, var(--border));
      background: var(--bg-soft);
      text-decoration: none;
      color: inherit;
      position: relative;
      transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                  border-color 0.3s, box-shadow 0.3s, background 0.3s;
      overflow: hidden;
    }
    .event-card:hover {
      transform: translateY(-3px);
      border-color: var(--c);
      box-shadow: 0 14px 32px -16px color-mix(in srgb, var(--c) 70%, transparent),
                  0 0 0 1px color-mix(in srgb, var(--c) 25%, transparent);
      background: color-mix(in srgb, var(--c) 5%, var(--bg-soft));
    }

    /* Terminal title bar */
    .card-bar {
      background: color-mix(in srgb, var(--c) 14%, var(--bg-soft));
      border-bottom: 1px solid color-mix(in srgb, var(--c) 35%, transparent);
      padding: 0.4rem 0.85rem;
      font-size: 0.7rem;
      color: color-mix(in srgb, var(--c) 70%, var(--text));
      letter-spacing: 0.14em;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
    }
    .card-bar .dots {
      display: inline-flex;
      gap: 4px;
      margin-right: 0.45rem;
      vertical-align: middle;
    }
    .card-bar .dots span {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: color-mix(in srgb, var(--c) 40%, transparent);
    }
    .card-bar .dots span:nth-child(1) { background: color-mix(in srgb, var(--c) 70%, transparent); }
    .card-bar .label { flex: 1; }

    .badge {
      font-size: 0.62rem;
      padding: 0.1rem 0.4rem;
      border: 1px solid;
      letter-spacing: 0.1em;
      font-weight: 600;
    }
    .badge-upcoming { color: var(--fg); border-color: var(--fg); animation: tagPulse 2.6s ease-in-out infinite; }
    .badge-cancelled { color: var(--red); border-color: var(--red); }

    /* Icon area */
    .card-icon-wrap {
      position: relative;
      height: 170px;
      background:
        radial-gradient(circle at 50% 45%,
          color-mix(in srgb, var(--c) 22%, transparent) 0%,
          transparent 65%),
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 3px,
          color-mix(in srgb, var(--c) 5%, transparent) 3px,
          color-mix(in srgb, var(--c) 5%, transparent) 4px
        );
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    /* corner brackets — terminal feel */
    .card-icon-wrap::before,
    .card-icon-wrap::after {
      content: '';
      position: absolute;
      width: 14px; height: 14px;
      border: 1px solid color-mix(in srgb, var(--c) 50%, transparent);
    }
    .card-icon-wrap::before {
      top: 8px; left: 8px;
      border-right: none; border-bottom: none;
    }
    .card-icon-wrap::after {
      bottom: 8px; right: 8px;
      border-left: none; border-top: none;
    }

    .card-icon {
      width: 115px;
      height: 115px;
      object-fit: contain;
      filter: drop-shadow(0 4px 18px color-mix(in srgb, var(--c) 50%, transparent));
      transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
                  filter 0.4s;
    }
    .event-card:hover .card-icon {
      transform: scale(1.12) rotate(-2deg);
      filter: drop-shadow(0 8px 24px color-mix(in srgb, var(--c) 75%, transparent));
    }
    /* Some icons are black-on-white — invert them for the dark theme */
    .card-icon.invert {
      filter: invert(1) drop-shadow(0 4px 18px color-mix(in srgb, var(--c) 50%, transparent));
    }
    .event-card:hover .card-icon.invert {
      filter: invert(1) drop-shadow(0 8px 24px color-mix(in srgb, var(--c) 75%, transparent))
              brightness(1.05);
    }

    /* Placeholder icon for years with no image — ASCII feel */
    .card-icon-ascii {
      font-family: var(--font);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--c);
      text-shadow: 0 0 14px color-mix(in srgb, var(--c) 60%, transparent);
      text-align: center;
      line-height: 1.4;
      letter-spacing: 0.06em;
      padding: 0 1rem;
    }
    .card-icon-ascii .big {
      display: block;
      font-size: 2.6rem;
      letter-spacing: 0.02em;
      margin-bottom: 0.2rem;
    }

    .card-body {
      padding: 0.95rem 1.05rem 1.15rem;
    }
    .card-motto {
      font-size: 1rem;
      font-weight: 600;
      color: var(--c);
      line-height: 1.3;
      margin-bottom: 0.3rem;
      text-shadow: 0 0 10px color-mix(in srgb, var(--c) 45%, transparent);
      letter-spacing: 0.01em;
    }
    .card-sub {
      font-size: 0.78rem;
      color: color-mix(in srgb, var(--c) 50%, var(--text-dim));
      font-style: italic;
      margin-bottom: 0.7rem;
      min-height: 1.1em;
    }
    .card-arrow {
      font-size: 0.74rem;
      color: var(--text-mute);
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }
    .event-card:hover .card-arrow { color: var(--c); }
    .arrow { transition: transform 0.25s; display: inline-block; }
    .event-card:hover .arrow { transform: translateX(4px); }

    .event-card-static { cursor: default; opacity: 0.7; }
    .event-card-static:hover {
      transform: none;
      box-shadow: none;
      border-color: color-mix(in srgb, var(--c) 30%, var(--border));
      background: var(--bg-soft);
    }
    .event-card-static:hover .card-icon { transform: none; }

    .archive-note {
      margin-top: 2rem;
      padding: 0.9rem 1.1rem;
      border: 1px solid var(--border);
      background: var(--panel);
      font-size: 0.85rem;
      color: var(--text-dim);
      display: flex;
      gap: 0.6rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .archive-note::before {
      content: '$ ';
      color: var(--fg-mid);
    }
    .archive-note a { color: var(--fg); text-decoration: none; }
    .archive-note a:hover { text-decoration: underline; }

    /* ═════════════════ CONTACT ═════════════════ */
    .contact-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.6rem;
    }
    @media (max-width: 720px) { .contact-cols { grid-template-columns: 1fr; } }

    .contact-block {
      border: 1px solid var(--border);
      padding: 1.4rem 1.4rem 1.5rem;
      background: var(--panel);
      transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    }
    .contact-block:hover {
      border-color: var(--fg-dim);
      background: var(--panel-2);
      box-shadow: 0 0 26px -10px var(--fg-glow);
    }
    .contact-block h3 {
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      color: var(--fg);
      margin-bottom: 0.7rem;
      text-transform: uppercase;
      text-shadow: 0 0 10px var(--fg-glow);
    }
    .contact-block p { color: var(--text-dim); font-size: 0.92rem; }
    .contact-block ul { list-style: none; margin-top: 0.5rem; }
    .contact-block li {
      font-size: 0.88rem;
      padding: 0.35rem 0;
      color: var(--text-dim);
      border-bottom: 1px dashed var(--border);
      display: flex;
      gap: 0.4rem;
      align-items: baseline;
      flex-wrap: wrap;
    }
    .contact-block li:last-child { border-bottom: none; }
    .contact-block li::before { content: '> '; color: var(--fg-muted); }
    .contact-block li a { color: var(--text); text-decoration: none; }
    .contact-block li a:hover { color: var(--fg); text-shadow: 0 0 8px var(--fg-glow); }

    .btn-mail {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      padding: 0.6rem 1rem;
      border: 1px solid var(--fg-dim);
      background: var(--panel);
      color: var(--fg);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      transition: all 0.25s;
    }
    .btn-mail:hover {
      background: var(--fg);
      color: var(--bg);
      box-shadow: 0 0 22px -4px var(--fg-glow);
      text-decoration: none;
    }

    /* ═════════════════ IMPRESSUM ═════════════════ */
    #impressum { background: rgba(0, 0, 0, 0.25); }
    #impressum .body { max-width: 900px; }
    .impressum-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.4rem 2.4rem;
      margin-top: 0.5rem;
    }
    .impressum-grid h3 {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      color: var(--fg-dim);
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }
    .impressum-grid p {
      color: var(--text-dim);
      font-size: 0.85rem;
      line-height: 1.55;
    }
    .impressum-grid a { color: var(--fg-dim); text-decoration: none; }
    .impressum-grid a:hover { color: var(--fg); text-decoration: underline; }
    .placeholder {
      color: var(--amber) !important;
      border-bottom: 1px dashed var(--amber);
      cursor: help;
    }

    /* ═════════════════ FOOTER ═════════════════ */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.2rem 2rem 1.8rem;
      text-align: center;
      color: var(--text-mute);
      font-size: 0.8rem;
    }
    footer .ascii-mini {
      color: var(--fg-mid);
      font-size: 0.7rem;
      margin-bottom: 0.6rem;
      letter-spacing: 0.2em;
    }
    footer .tagline {
      color: var(--fg);
      text-shadow: 0 0 10px var(--fg-glow);
      font-weight: 600;
      letter-spacing: 0.08em;
      margin-top: 0.4rem;
    }
    footer p + p { margin-top: 0.3rem; }

    /* ═════════════════ Reveals (progressive enhancement) ═════════════════ */
    .reveal {
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .js .reveal {
      opacity: 0;
      transform: translateY(20px);
    }
    .js .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .js .reveal, .reveal { opacity: 1 !important; transform: none !important; }
    }

    /* ═════════════════ RESPONSIVE ═════════════════ */
    @media (max-width: 720px) {
      header { padding: 0.7rem 1.1rem; }
      section, #hero { padding-left: 1.1rem; padding-right: 1.1rem; }
      #hero { padding-top: 2.5rem; padding-bottom: 2rem; }
      section { padding-top: 3rem; padding-bottom: 3rem; }
      .sep { margin: 0 1.1rem; }
      nav { gap: 0.7rem; }
      nav a { font-size: 0.78rem; }
    }
    @media (max-width: 420px) {
      nav a::before { content: ''; }
    }
