    .intro-headline {
      font-family: "Share Tech Mono", monospace;
      font-size: 1.5rem;
      color: var(--text);
      margin: 0 0 18px 0;
      line-height: 1.5;
      text-align: left;
    }
:root{
      --bg-0:#0f0b09;
      --bg-1:#1c130f;
      --line:rgba(255,198,146,0.18);
      --text:#f6e6d1;
      --muted:#c8ab8c;
      --ember:#ffb36e;
      --signal:#dbff63;
      --shadow:0 24px 60px rgba(0,0,0,0.42);
    }

    *{box-sizing:border-box}
    html,body{margin:0;min-height:100%}

    body{
      color:var(--text);
      font-family:"Share Tech Mono", monospace;
      background:
        radial-gradient(circle at 16% 18%, rgba(255,179,110,0.12), transparent 20%),
        radial-gradient(circle at 84% 14%, rgba(219,255,99,0.09), transparent 16%),
        radial-gradient(circle at 50% 120%, rgba(204,117,64,0.26), transparent 42%),
        linear-gradient(180deg, var(--bg-0), var(--bg-1) 48%, #0a0706 100%);
      overflow-x:hidden;
    }

    body::before,
    body::after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
    }

    body::before{
      background:
        repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 7px);
      opacity:.12;
    }

    body::after{
      background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0 2px, transparent 3px) 0 0/36px 36px,
        radial-gradient(circle at 72% 54%, rgba(255,255,255,0.04) 0 1px, transparent 2px) 0 0/28px 28px;
      opacity:.14;
    }

    a{color:inherit;text-decoration:none}

    .shell{
      width:min(1080px, calc(100vw - 28px));
      margin:0 auto;
      padding:24px 0 48px;
      position:relative;
    }

    .topbar{
      display:flex;
      justify-content:flex-start;
      align-items:center;
      gap:12px;
      margin-bottom:22px;
    }

    .crumb{
      border:1px solid var(--line);
      background:rgba(31,20,15,0.74);
      color:var(--muted);
      border-radius:999px;
      padding:10px 16px;
      letter-spacing:.14em;
      text-transform:uppercase;
      font-size:.78rem;
      box-shadow:var(--shadow);
    }

    .crumb:hover{
      color:var(--text);
      border-color:rgba(255,198,146,0.32);
      transform:translateY(-1px);
    }

    .cards{
      display:flex;
      flex-direction:column;
      gap:24px;
    }

    .card-row {
      display: flex;
      flex-direction: row;
      gap: 16px;
      width: 100%;
      justify-content: flex-start;
      margin-bottom: 0;
    }

    .card-row > .card {
      flex: 1 1 0;
      min-width: 0;
      max-width: 100%;
      display: flex;
      flex-direction: column;
    }

    .card-link {
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
    }

    .card-link:hover, .card-link:focus {
      box-shadow: 0 0 0 3px var(--glow, rgba(255,179,110,0.2)), var(--shadow);
      border-color: var(--glow, rgba(255,179,110,0.2));
      transform: translateY(-2px) scale(1.02);
      z-index: 2;
    }

    @media (max-width: 900px) {
      .card-row {
        flex-direction: column;
        gap: 16px;
      }
    }

    hr {
      border: none;
      border-top: 1px solid var(--line);
      margin: 32px 0 18px 0;
      width: 100%;
    }

    .card{
      position:relative;
      min-height:220px;
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      gap:14px;
      padding:18px;
      border-radius:22px;
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(38,24,18,0.95), rgba(18,13,10,0.96)),
        linear-gradient(145deg, rgba(255,255,255,0.05), transparent 42%);
      box-shadow:var(--shadow);
      overflow:hidden;
      isolation:isolate;
    }

    .card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 18% 18%, var(--glow), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,0.05), transparent 42%);
      z-index:-1;
    }

    .card::after{
      content:"";
      position:absolute;
      right:-18px;
      bottom:-24px;
      width:150px;
      height:150px;
      border-radius:50%;
      background:radial-gradient(circle, var(--orb), transparent 68%);
      filter:blur(7px);
      z-index:-1;
    }

    .card-teaser{ --glow:rgba(255,179,110,0.16); --orb:rgba(204,117,64,0.22); }
    .card-lore{ --glow:rgba(219,255,99,0.14); --orb:rgba(219,255,99,0.18); }
    .card-quiz{ --glow:rgba(137,205,255,0.14); --orb:rgba(137,205,255,0.2); }
    .card-archiv{ --glow:rgba(159,210,204,0.14); --orb:rgba(159,210,204,0.18); }
    .card-weather{ --glow:rgba(255,136,108,0.14); --orb:rgba(255,196,145,0.2); }
    .card-map{ --glow:rgba(144,165,180,0.16); --orb:rgba(144,165,180,0.18); }

    .card-title{
      margin:0;
      font-family:"Orbitron", sans-serif;
      font-size:1.4rem;
      line-height:1.1;
      text-transform:uppercase;
    }

    .card-copy{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.55;
      font-size:1.08rem;
    }

    .cta-row{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:42px;
      padding:0 14px;
      border-radius:12px;
      border:1px solid rgba(255,198,146,0.24);
      background:linear-gradient(180deg, rgba(219,128,73,0.95), rgba(147,81,47,0.95));
      color:#fff5ea;
      text-transform:uppercase;
      letter-spacing:.12em;
      font-size:.74rem;
      box-shadow:0 16px 24px rgba(0,0,0,0.24);
    }

    .cta:hover{
      transform:translateY(-2px);
      filter:brightness(1.04);
    }

    .footer-note{
      margin-top:20px;
      padding:16px 18px;
      border-radius:16px;
      border:1px solid var(--line);
      background:rgba(29,19,14,0.78);
      color:var(--muted);
      line-height:1.65;
      box-shadow:var(--shadow);
    }

    @media (max-width: 1040px){
      .cards{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 640px){
      .shell{
        width:min(100vw - 16px, 1080px);
        padding-top:16px;
        padding-bottom:32px;
      }

      .topbar{
        flex-direction:column;
        align-items:stretch;
      }

      .card{
        border-radius:18px;
        padding:16px;
      }

      .cta-row{
        align-items:stretch;
      }
    }

