:root{
  --bg1:#0b1020;
  --bg2:#0f1a3a;
  --hud:#0b1228cc;
  --accent:#7dd3fc;
  --good:#34d399;
  --bad:#fb7185;
  --text:#e5e7eb;
  --muted:#94a3b8;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 800px at 50% 30%, var(--bg2), var(--bg1));
  overflow:hidden;
}

#app{
  position:relative;
  width:100vw;
  height:100vh;
}

/* Start screen */
.screen{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  z-index:4; /* über dem Playfield, aber unter HUD/Overlay */
}
.panel{
  width:min(900px, 92vw);
  background: rgba(10,16,32,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  padding:20px;
  backdrop-filter: blur(10px);
}
.hero{
  display:flex;
  gap:20px;
  align-items:center;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.hero-text{
  flex:1 1 320px;
  min-width:240px;
  padding-right:0;
}
.start-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.start-logo img{
  width:320px;
  max-width:40vw;
  height:auto;
  border-radius:18px;
  box-shadow:0 20px 45px rgba(0,0,0,.45);
}
.title{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap;
  margin-bottom:10px;
}
.lang-toggle{
  display:inline-flex;
  gap:4px;
  padding:2px;
  background:rgba(255,255,255,.08);
  border-radius:999px;
  margin-left:auto;
}
.lang-toggle button{
  cursor:pointer;
  border:none;
  border-radius:999px;
  padding:4px 10px;
  background:rgba(0,0,0,.25);
  color:#e2e8f0;
  font-weight:700;
  font-size:12px;
  letter-spacing:.03em;
  transition:background .12s ease, color .12s ease;
}
.lang-toggle button.active{
  background:linear-gradient(120deg, #7dd3fc, #38bdf8);
  color:#0b1020;
}
.lang-toggle button:focus-visible{
  outline:2px solid rgba(125,211,252,.7);
  outline-offset:1px;
}
.title h1{margin:0; font-size:22px; letter-spacing:.2px}
.pill{
  font-size:12px;
  color: #0b1020;
  background: linear-gradient(120deg, #ffd54f, #ffb300);
  padding:4px 10px;
  border-radius:999px;
  font-weight:700;
}
.sub{
  margin:6px 0 14px;
  color:var(--muted);
  line-height:1.35;
  font-size:14px;
}
.sub ul{
  margin:6px 0 0;
  padding-left:18px;
}
.sub li{margin:4px 0}
.sub .opt-label{
  display:block;
  margin-bottom:6px;
}

.articleBrand a{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.postCardLink{
  display:block;
  color:inherit;
  text-decoration:none;
}
.postCardLink:focus-visible{
  outline:2px solid rgba(125,211,252,.7);
  outline-offset:2px;
}
.postCardLink:hover{
  border-color: rgba(125,211,252,.35);
  background: rgba(125,211,252,.06);
}

.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
  .start-logo img{
    width:100%;
    max-width:320px;
  }
  .hero-text{padding-right:0}
}

/* Startscreen: mobile-friendly without changing desktop layout */
@media (max-width: 520px){
  .screen{padding:14px}
  .panel{
    padding:14px;
    max-height: calc(100vh - 28px);
    overflow:auto;
  }
  .hero{justify-content:center}
  .start-logo img{max-width:240px}
  .title h1{font-size:18px}
  .sub{font-size:13px}
  .row{flex-direction:column; align-items:stretch}
  .row .btn, .row a.btn{width:100%; justify-content:center}
  .corner-links{top:10px; right:10px}
  .corner-links .btn{padding:6px 8px}
}

@media (max-height: 720px){
  .levels{max-height: min(38vh, 320px)}
}

.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px;
  min-height:0; /* wichtig für overflow */
}
.card h2{
  margin:0 0 8px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#cbd5e1;
}

.levels{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  max-height: min(46vh, 420px);
  overflow-y: auto;
  padding-right: 6px;
}
@media (max-width: 560px){
  .levels{grid-template-columns:1fr}
}
.levels::-webkit-scrollbar{ width: 10px; }
.levels::-webkit-scrollbar-track{ background: rgba(255,255,255,.05); border-radius: 999px; }
.levels::-webkit-scrollbar-thumb{ background: rgba(125,211,252,.22); border-radius: 999px; border: 2px solid rgba(0,0,0,.18); }
.levels::-webkit-scrollbar-thumb:hover{ background: rgba(125,211,252,.32); }
.levels{ scrollbar-width: thin; scrollbar-color: rgba(125,211,252,.28) rgba(255,255,255,.05); }

.level-btn{
  cursor:pointer;
  text-align:left;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  transition: transform .08s ease, border-color .12s ease, background .12s ease;
  user-select:none;
}
.level-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(125,211,252,.55);
  background: rgba(125,211,252,.06);
}
.level-btn.active{
  border-color: rgba(255,181,0,.9);
  background: rgba(255,181,0,.08);
}
.level-name{font-weight:800; font-size:14px}
.level-desc{color:var(--muted); font-size:12px; margin-top:2px}

.row{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  margin-top:12px;
}
.btn{
  cursor:pointer;
  border:none;
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  color:#0b2a55;
  background: linear-gradient(120deg, #ffd54f, #ffb300);
  transition: transform .08s ease, filter .12s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn.secondary{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border:1px solid rgba(255,255,255,.10);
}
.corner-links{
  position:absolute;
  top:16px;
  right:16px;
  z-index:6;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  pointer-events:auto;
}
.corner-links a.btn{display:inline-flex; align-items:center}
.corner-links .btn{
  padding:8px 10px;
  border-radius:12px;
}
.corner-menu{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.corner-lang{
  display:flex;
  align-items:center;
  gap:10px;
}
.corner-lang .opt-label{margin:0}

/* Blog: show language on 2nd (smaller) line under menu links */
.corner-links.blog-corner{
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}
.corner-links.blog-corner .corner-lang{
  font-size:12px;
  gap:8px;
  opacity:.95;
}
.corner-links.blog-corner .lang-toggle button{
  padding:3px 8px;
  font-size:11px;
}

.opt{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  color:var(--muted);
  font-size:13px;
  border-bottom: 1px dashed;
  padding-bottom: 10px;
}
.opt-row{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  border-bottom: 1px dashed;
  padding-bottom: 10px;
}
.opt-label{font-weight:800; color:var(--text)}
.opt label{display:flex; gap:8px; align-items:center; cursor:pointer}
input[type="checkbox"]{transform: translateY(1px)}
.kbd{
  display:inline-flex;
  align-items:center;
  padding:2px 8px;
  border:1px solid rgba(255,255,255,.18);
  border-bottom-color: rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  border-radius:8px;
  font-weight:700;
  font-size:12px;
  color:#e2e8f0;
  margin-right:4px;
}

/* HUD */
#hud{
  position:absolute;
  left:16px; top:16px; right:16px;
  display:flex;
  gap:10px;
  align-items:stretch;
  pointer-events:none;
  z-index:5;
}
.hud-box{
  pointer-events:auto;
  background: var(--hud);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:10px 12px;
  display:flex;
  align-items:center;
  gap:12px;
  backdrop-filter: blur(10px);
}
#hud .spacer{flex:1}
.stat{
  display:flex; flex-direction:column;
  gap:2px;
  min-width: 92px;
}
.stat .k{font-size:11px; color:var(--muted); letter-spacing:.06em; text-transform:uppercase}
.stat .v{font-size:14px; font-weight:900}
.hud-btn{
  cursor:pointer;
  border:none;
  border-radius:12px;
  padding:8px 10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  font-weight:800;
}
.hud-btn:hover{border-color: rgba(125,211,252,.55)}
.bar{
  width:160px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}
.bar > i{
  display:block;
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--good), var(--accent));
  border-radius:999px;
  transition: width .2s ease;
}

/* Playfield */
#playfield{
  position:absolute; inset:0;
  overflow:hidden;
  z-index:1;
}
#watermark{
  position:absolute; left:16px; bottom:14px;
  color: rgba(255,255,255,.14);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
  pointer-events:none;
  z-index:2;
}

/* Prompt */
#promptWrap{
  position:absolute;
  left:50%;
  bottom:18px;
  transform: translateX(-50%);
  z-index:6;
  pointer-events:none;
  width:min(820px, 92vw);
}
#prompt{
  pointer-events:auto;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:10px 14px;
  backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:space-between;
}
#targetText{
  font-size:18px;
  font-weight:900;
  letter-spacing:.02em;
  display:flex;
  flex-wrap:wrap;
  gap:2px;
  align-items:baseline;
  min-height: 26px;
}
.ch{ padding:0 1px; border-radius:6px; }
.ch.done{color: rgba(229,231,235,.35)}
.ch.next{ outline: 2px solid rgba(125,211,252,.65); outline-offset: 2px; }
.ch.bad{
  background: rgba(251,113,133,.20);
  outline: 2px solid rgba(251,113,133,.55);
  outline-offset: 2px;
}
#typeHint{
  color: var(--muted);
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}
#typeHint .live{
  display:inline-flex;
  min-width: 84px;
  justify-content:center;
  padding:3px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#e2e8f0;
  font-weight:800;
  font-size:12px;
}

/* Balloons */
.balloon{
  position:absolute;
  bottom:-120px;
  width: 92px;
  height: 120px;
  transform: translateX(-50%);
  pointer-events:none;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.25));
}
.balloon.sentence{
  width: min(560px, 88vw);
  height: 120px;
}
.balloon .b{
  position:absolute; inset:0;
  border-radius: 999px;
  background: radial-gradient(80px 80px at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(2px);
  overflow:hidden;
}
.balloon.sentence .b{
  border-radius: 28px;
}
.balloon .shine{
  position:absolute;
  width:22px; height:60px;
  left:14px; top:20px;
  border-radius:999px;
  background: rgba(255,255,255,.18);
  transform: rotate(10deg);
}
.balloon .label{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  max-width: 78px;
  text-align:center;
  font-weight:1000;
  letter-spacing: .02em;
  font-size:18px;
  color:#e5e7eb;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  line-height:1.08;
  padding:4px 6px;
  border-radius:10px;
  background: rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.10);
}
.balloon.sentence .label{
  max-width: min(520px, 82vw);
  background: rgba(0,0,0,.18);
  padding:8px 10px;
  border-radius: 14px;
  white-space: normal;
  word-break: break-word;
}
.balloon .string{
  position:absolute;
  left:50%;
  bottom:-54px;
  width:2px;
  height:58px;
  background: rgba(255,255,255,.25);
  transform: translateX(-50%);
  border-radius:999px;
}
.balloon.pop{ animation: pop .18s ease-out forwards; }
@keyframes pop{ to{ transform: translateX(-50%) scale(1.18); opacity:0; filter: blur(1px) } }

/* Active balloon highlight */
.balloon.active{
  filter: drop-shadow(0 18px 26px rgba(125,211,252,.35)) drop-shadow(0 0 22px rgba(125,211,252,.35));
}
.balloon.active .b{
  border-color: rgba(125,211,252,.75) !important;
  box-shadow: 0 0 0 3px rgba(125,211,252,.22), 0 18px 38px rgba(0,0,0,.25);
}
.balloon.active .label{
  background: rgba(125,211,252,.14);
  border-color: rgba(125,211,252,.35);
}

/* Balloon label chars (active balloon progress) */
.lblch{ display:inline-block; padding:0 1px; border-radius:6px; }
.lblch.done{ color: rgba(229,231,235,.35); }
.lblch.next{ outline: 2px solid rgba(125,211,252,.65); outline-offset: 2px; }
.lblch.bad{ background: rgba(251,113,133,.20); outline: 2px solid rgba(251,113,133,.55); outline-offset: 2px; }
.lblch.space{ opacity: .85; }

/* Overlay */
#overlayMsg{
  position:absolute; inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:7;
  padding:24px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
#overlayMsg.show{display:flex}
.overlayCard{
  width:min(980px, 92vw);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,16,32,.78);
  padding:18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.overlayCard h3{margin:0 0 8px; font-size:18px}
.overlayBody{margin:0 0 14px; color:var(--muted); line-height:1.45;}
.overlayBody p{margin:0 0 14px; white-space:pre-line;}
.overlayBody ul{
  margin:0 0 14px 18px;
  padding:0;
  list-style:disc;
}
.overlayBody li{
  margin-bottom:6px;
}
.overlayRow{display:flex; gap:10px; flex-wrap:wrap}

/* ---------- Onscreen Keyboard ---------- */
#keyboardWrap{
  position:absolute;
  left:50%;
  bottom:78px;
  transform: translateX(-50%);
  z-index:6;
  width:min(980px, 92vw);
  pointer-events:none;
}
#keyboardTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
#fingerLegend{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.legendPill{
  pointer-events:none;
  font-size:11px;
  font-weight:900;
  letter-spacing:.04em;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(226,232,240,.92);
}
#keyboard{
  pointer-events:none;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:10px;
  backdrop-filter: blur(10px);
}
.krow{
  display:flex;
  gap:6px;
  justify-content:center;
  margin:6px 0;
}

.key{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  letter-spacing:.02em;
  position:relative;
  text-transform: uppercase;
  color: rgba(229,231,235,.92);
  transition: transform .06s ease, filter .12s ease, opacity .12s ease;

  overflow:hidden;

  /* ✅ Platz für das Finger-Badge oben */
  padding-top: 14px;
}

/* breite Tasten sollen nicht “runtergedrückt” werden */
.key.wide,
.key.backspace,
.key.shift{
  padding-top: 0;
}

.key.wide{ width: 260px; justify-content:flex-start; padding-left:14px; }
.key.backspace{ width: 134px; justify-content:flex-start; padding-left:12px; }
.key.shift{ width: 136px; justify-content:flex-start; padding-left:12px; }

/* ✅ Buchstabe etwas nach unten, damit er nie mit dem Badge kollidiert */
.key > span:first-child{
  position:relative;
  z-index:1;
  /*transform: translateY(4px);*/
}

/* ✅ Finger-Badge kompakter */
.key .sub{
  position:absolute;
  right:1px;
  top:-3px;

  font-size:9px;
  line-height:1;
  letter-spacing:.04em;
  font-weight:900;
  text-transform:none;

  padding:2px 6px;
  border-radius:999px;
  background: rgba(0,0,0,.32);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(226,232,240,.90);

  max-width: calc(100% - 12px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events:none;

  z-index: 2;
}


/*
.key{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  letter-spacing:.02em;
  position:relative;
  text-transform: uppercase;
  color: rgba(229,231,235,.92);
  transition: transform .06s ease, filter .12s ease, opacity .12s ease;
}
.key.wide{ width: 260px; justify-content:flex-start; padding-left:14px; }
.key.backspace{ width: 104px; justify-content:flex-start; padding-left:12px; }
.key.shift{ width: 136px; justify-content:flex-start; padding-left:12px; }

.key .sub{
  position:absolute;
  right:8px; bottom:6px;
  font-size:10px;
  color: rgba(148,163,184,.95);
  letter-spacing:.05em;
  font-weight:900;
  text-transform:none;
}
*/

.key.home{
  border-color: rgba(125,211,252,.35);
  background: rgba(125,211,252,.06);
}
.key.next{
  outline: 3px solid rgba(125,211,252,.65);
  outline-offset: 2px;
  filter: brightness(1.12);
}
.key.shiftNeeded{
  outline: 3px solid rgba(167,139,250,.65);
  outline-offset: 2px;
  filter: brightness(1.12);
}
.key.pressed{
  transform: translateY(1px) scale(.98);
  filter: brightness(1.22);
}
.key.disabled{
  opacity: .25;
  filter: grayscale(.3);
}

/* Finger color coding per key */
.key.fLP{ background: rgba(251,113,133,.14); }
.key.fLR{ background: rgba(251,191,36,.14); }
.key.fLM{ background: rgba(52,211,153,.14); }
.key.fLI{ background: rgba(125,211,252,.14); }
.key.fRI{ background: rgba(167,139,250,.14); }
.key.fRM{ background: rgba(56,189,248,.14); }
.key.fRR{ background: rgba(45,212,191,.14); }
.key.fRP{ background: rgba(248,113,113,.12); }
.key.fTH{ background: rgba(226,232,240,.10); }

/* Intro highlight styles (need/new) */
.key.introNeed{
  outline: 3px solid rgba(52,211,153,.65);
  outline-offset: 2px;
  filter: brightness(1.1);
}
.key.introNew{
  outline: 3px solid rgba(125,211,252,.75);
  outline-offset: 2px;
  filter: brightness(1.15);
}

@keyframes introPulse{
  0%{ transform: translateY(0) scale(1); filter: brightness(1.08); }
  55%{ transform: translateY(-1px) scale(1.04); filter: brightness(1.22); }
  100%{ transform: translateY(0) scale(1); filter: brightness(1.08); }
}
.key.introPulse{
  outline: 3px solid rgba(255,181,0,.9);
  outline-offset: 2px;
  animation: introPulse 950ms ease-in-out infinite;
}

.legendPill.active{
  background: rgba(255,181,0,.18);
  border-color: rgba(255,181,0,.55);
  color: rgba(226,232,240,.98);
  box-shadow: 0 0 0 3px rgba(255,181,0,.14);
}

/* Toast */
.kbdToast{
  position:absolute;
  left:16px;
  bottom:16px;
  z-index:8;
  max-width: min(520px, 92vw);
  background: rgba(10,16,32,.78);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  display:none;
}
.kbdToast.show{ display:block; }
.kbdToastTag{
  display:inline-flex;
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(226,232,240,.92);
  margin-bottom:8px;
}
.kbdToastTitle{ font-weight:1000; margin-bottom:4px; }
.kbdToastBody{ color: var(--muted); font-size:13px; line-height:1.35; }

/* ---------- OPTION 1: Keyboard im Intro-Overlay integrieren ---------- */
.introCard{ max-width: 1100px; width:min(1100px, 92vw); }

.introLayout{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:18px;
  align-items:start;
}

.introLegend{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:10px 0 12px;
  color: var(--muted);
  font-size:13px;
}
.introLegend .lg{
  display:inline-block;
  width: 14px;
  height: 14px;
  border-radius:4px;
  margin-right:6px;
  transform: translateY(2px);
}
.introLegend .lg.need{ background: rgba(52,211,153,.55); }
.introLegend .lg.new{ background: rgba(125,211,252,.65); }

.introKeyboard{
  min-height: 100px;
}

/* Nur im Intro: Tastatur wird statisch im Overlay gerendert (keine absolute Position) */
#overlayMsg.introMode #keyboardWrap{
  position: static !important;
  left:auto !important;
  bottom:auto !important;
  transform:none !important;
  width: 100% !important;
  z-index: auto !important;
  pointer-events:none;
  margin-top: 6px;
}

/* Intro: Finger-Legende + Finger-Text anzeigen (für Animation) */
#overlayMsg.introMode #keyboardTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}
#overlayMsg.introMode #fingerText{
  font-size:12px;
  color: var(--muted);
}

/* Toast im Intro ausblenden */
#overlayMsg.introMode ~ #kbdToast,
#overlayMsg.introMode #kbdToast{
  display:none !important;
}

/* Nicht-Intro: rechte Spalte (Keyboard-Host) ausblenden */
#overlayMsg:not(.introMode) .introKeyboard{
  display:none;
}
#overlayMsg:not(.introMode) .introLayout{
  grid-template-columns: 1fr;
}

/* Responsive */
@media (max-width: 980px){
  .introLayout{ grid-template-columns: 1fr; }
  .introKeyboard{ max-height: 44vh; overflow:auto; padding-right:6px; }
  .introKeyboard::-webkit-scrollbar{ width:10px; }
  .introKeyboard::-webkit-scrollbar-track{ background: rgba(255,255,255,.05); border-radius: 999px; }
  .introKeyboard::-webkit-scrollbar-thumb{ background: rgba(125,211,252,.22); border-radius: 999px; border: 2px solid rgba(0,0,0,.18); }
}
