@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

*{box-sizing:border-box}

html{
  overflow-x:clip;
  scrollbar-gutter:stable;
}

body{
  margin:0;
  background:#070817;
  color:#fff;
  font-family:Arial,sans-serif;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  overflow-x:clip;
  width:100%;
  max-width:100%;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255,79,163,.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0,245,212,.08), transparent 50%);
}

body.modal-open{
  overflow:hidden;
}

img{
  max-width:100%;
}

a{color:inherit}

header{
  text-align:center;
  padding:40px 20px 36px;
  min-height:243px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  background:
    linear-gradient(rgba(255,79,163,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,212,.08) 1px, transparent 1px),
    linear-gradient(135deg,#08091f,#1b0838 60%,#09091c);
  background-size:35px 35px,35px 35px,auto;
  border-bottom:4px solid #00f5d4;
}

.badge{
  display:inline-block;
  border:2px solid #ff4fa3;
  color:#ff4fa3;
  padding:10px 22px;
  border-radius:10px;
  font-family:'Press Start 2P',monospace;
  font-size:12px;
  margin:0 0 16px;
  flex-shrink:0;
}

header h1{
  margin:0;
  font-family:'Press Start 2P',monospace;
  font-size:38px;
  color:#fff;
  text-shadow:0 0 14px #ff4fa3;
  line-height:1.25;
  flex-shrink:0;
  max-width:100%;
}

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

header h1 .site-domain{
  white-space:nowrap;
}

header .tagline{
  color:#00f5d4;
  font-family:'Press Start 2P',monospace;
  font-size:12px;
  line-height:1.9;
  margin:12px auto 0;
  max-width:760px;
  padding:0 16px;
  min-height:3.8em;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

header .tagline .tagline-zweite{
  display:block;
  margin-top:8px;
  font-size:0.92em;
  opacity:.95;
}

.site-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  padding:14px 16px;
  background:rgba(7,8,23,.92);
  border-bottom:1px solid rgba(0,245,212,.25);
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(8px);
  width:100%;
  max-width:100%;
}

.site-nav a,
.site-nav button{
  border:2px solid transparent;
  background:transparent;
  color:#bbb;
  padding:9px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:bold;
  text-decoration:none;
  cursor:pointer;
  font-family:Arial,sans-serif;
  transition:.2s;
}

.site-nav a:hover,
.site-nav button:hover{color:#fff;border-color:rgba(255,79,163,.4)}

.site-nav a.active{
  color:#070817;
  background:#00f5d4;
  border-color:#00f5d4;
}

.site-nav .nav-kontakt{
  border-color:#ff4fa3;
  color:#ff4fa3;
}

.site-nav .nav-kontakt:hover{
  background:#ff4fa3;
  color:#070817;
}

.container{
  max-width:min(1100px,100%);
  margin:auto;
  padding:32px 22px 50px;
  flex:1;
  width:100%;
}

.container.wide{max-width:min(1300px,100%)}

.page-hero{
  text-align:center;
  margin-bottom:32px;
}

.section-label{
  display:inline-block;
  margin:0 0 10px;
  padding:4px 12px;
  border-radius:999px;
  background:rgba(0,245,212,.12);
  border:1px solid rgba(0,245,212,.35);
  color:#00f5d4;
  font-size:10px;
  font-weight:bold;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-family:'Press Start 2P',monospace;
}

.section-title{
  margin:0 0 12px;
  color:#fff;
  font-family:'Press Start 2P',monospace;
  font-size:20px;
  line-height:1.5;
}

.section-intro{
  margin:0 auto;
  max-width:560px;
  color:#aaa;
  font-size:15px;
  line-height:1.65;
}

.perks{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:0 0 28px;
}

.perk{
  flex:1 1 150px;
  max-width:220px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(0,245,212,.25);
  background:rgba(13,16,36,.8);
  font-size:12px;
  line-height:1.5;
  color:#ccc;
  text-align:center;
}

.perk strong{
  display:block;
  color:#00f5d4;
  font-size:11px;
  margin-bottom:5px;
  line-height:1.45;
}

.aktions-banner{
  text-align:center;
  margin:0 auto 24px;
  max-width:680px;
  padding:22px 24px;
  border-radius:16px;
  border:2px solid #ff4fa3;
  background:linear-gradient(135deg,rgba(255,79,163,.22),rgba(0,245,212,.14));
  box-shadow:0 0 28px rgba(255,79,163,.25);
}

.aktions-tag{
  display:inline-block;
  margin-bottom:10px;
  padding:5px 14px;
  border-radius:999px;
  background:#00f5d4;
  color:#070817;
  font-size:8px;
  font-weight:bold;
  letter-spacing:.14em;
  font-family:'Press Start 2P',monospace;
}

.aktions-banner strong{
  display:block;
  font-family:'Press Start 2P',monospace;
  font-size:12px;
  color:#fff;
  margin-bottom:8px;
}

.aktions-text{
  margin:0;
  color:#ddd;
  font-size:14px;
  line-height:1.6;
}

.aktions-text--spiel{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(0,245,212,.2);
  font-size:13px;
  line-height:1.55;
}

.aktions-text--spiel a{
  color:#00f5d4;
  text-decoration:none;
  font-weight:bold;
}

.aktions-text--spiel a:hover{color:#ff4fa3}

.teaser-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin:36px 0 8px;
}

.teaser-card{
  display:block;
  padding:22px 18px;
  border-radius:14px;
  border:2px solid rgba(0,245,212,.3);
  background:#0d1024;
  text-decoration:none;
  transition:.2s;
}

.teaser-card:hover{
  transform:translateY(-3px);
  border-color:#00f5d4;
  box-shadow:0 8px 24px rgba(0,245,212,.15);
}

.teaser-card.pink{border-color:rgba(255,79,163,.35)}
.teaser-card.pink:hover{border-color:#ff4fa3;box-shadow:0 8px 24px rgba(255,79,163,.15)}

.teaser-card h3{
  margin:0 0 8px;
  font-family:'Press Start 2P',monospace;
  font-size:10px;
  color:#00f5d4;
  line-height:1.6;
}

.teaser-card.pink h3{color:#ff4fa3}

.teaser-card p{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:#aaa;
}

.teaser-card .teaser-link{
  display:inline-block;
  margin-top:12px;
  font-size:12px;
  font-weight:bold;
  color:#00f5d4;
}

.teaser-card.pink .teaser-link{color:#ff4fa3}

.kauf-erfolg-banner{
  width:100%;
  max-width:680px;
  margin:0 auto 28px;
}

.kauf-erfolg-banner .kauf-perk{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  text-align:center;
  padding:22px 20px;
  border-radius:14px;
  border:2px solid rgba(0,245,212,.5);
  background:rgba(0,245,212,.1);
  color:#eee;
  font-size:15px;
  line-height:1.65;
  box-shadow:0 0 24px rgba(0,245,212,.15);
}

.kauf-erfolg-banner .kauf-perk strong{
  display:block;
  color:#00f5d4;
  font-family:'Press Start 2P',monospace;
  font-size:11px;
  line-height:1.6;
  margin-bottom:10px;
}

.verkaeufe-box{
  max-width:820px;
  margin:0 auto;
  padding:22px 24px;
  border-radius:14px;
  border:2px solid rgba(255,79,163,.35);
  background:rgba(255,79,163,.06);
}

.verkaeufe-box h3{
  margin:0 0 16px;
  text-align:center;
  font-family:'Press Start 2P',monospace;
  font-size:11px;
  color:#ff4fa3;
  line-height:1.6;
}

.verkaeufe-liste{
  list-style:none;
  margin:0;
  padding:0;
}

.verkaeufe-liste li{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:14px;
}

.verkaeufe-liste li:last-child{border-bottom:none;padding-bottom:0}
.verkaeufe-liste li:first-child{padding-top:0}

.verkaeufe-bild{
  width:56px;
  height:56px;
  object-fit:contain;
  object-position:center;
  border-radius:0;
  border:none;
  background:transparent;
  flex-shrink:0;
  filter:drop-shadow(0 3px 6px rgba(0,0,0,.45));
}

/* Freigestellte Produktbilder – Schweben (PNG ohne Hintergrund) */
.produkt-bild--float{
  flex-shrink:0;
  height:280px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  margin:0 0 4px;
}

.produkt-bild--float a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

.produkt-bild--float img{
  width:auto;
  max-width:92%;
  height:260px;
  object-fit:contain;
  object-position:center;
  background:transparent !important;
  border-radius:0;
  padding:0 !important;
  box-sizing:border-box;
  filter:
    drop-shadow(0 14px 22px rgba(0,0,0,.55))
    drop-shadow(0 4px 10px rgba(0,245,212,.15));
  animation:produktSchweben 4.5s ease-in-out infinite;
  will-change:transform;
}

.produkt:hover .produkt-bild--float img{
  filter:
    drop-shadow(0 18px 32px rgba(0,0,0,.65))
    drop-shadow(0 8px 16px rgba(0,245,212,.25));
}

.kategorie-bild--float{
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(160deg,#0d1024,#121530);
  overflow:visible;
}

.kategorie-bild--float img{
  width:auto;
  max-width:88%;
  height:200px;
  object-fit:contain;
  object-position:center;
  background:transparent;
  padding:0;
  filter:
    drop-shadow(0 12px 18px rgba(0,0,0,.5))
    drop-shadow(0 4px 8px rgba(0,245,212,.12));
  animation:produktSchweben 5s ease-in-out infinite;
}

.kategorie-karte:hover .kategorie-bild--float img{
  filter:
    drop-shadow(0 16px 26px rgba(0,0,0,.6))
    drop-shadow(0 6px 12px rgba(0,245,212,.22));
}

.kategorie-karte.kategorie-alle .kategorie-bild--float img{
  max-width:94%;
  height:210px;
}

@keyframes produktSchweben{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@media (prefers-reduced-motion:reduce){
  .produkt-bild--float img,
  .kategorie-bild--float img{animation:none}
}

@media(max-width:600px){
  .produkt-bild--float{height:220px}
  .produkt-bild--float img{height:200px;max-width:88%}
  .kategorie-bild--float{height:200px}
  .kategorie-bild--float img{height:180px}
  .kategorie-karte.kategorie-alle .kategorie-bild--float img{height:190px}
}

.verkaeufe-inhalt{display:flex;flex-direction:column;gap:4px;min-width:0}
.verkaeufe-name{font-weight:bold;color:#fff}
.verkaeufe-datum{font-size:12px;color:#888}

.bewertungen{margin:0}

.bewertungen-intro{
  text-align:center;
  color:#aaa;
  font-size:15px;
  line-height:1.6;
  max-width:640px;
  margin:0 auto 28px;
}

.bewertungen-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:24px;
}

.bewertung-stat{
  text-align:center;
  padding:18px 12px;
  border-radius:12px;
  background:#0d1024;
  border:1px solid rgba(0,245,212,.25);
}

.bewertung-stat.highlight{
  border-color:#ff4fa3;
  background:rgba(255,79,163,.08);
}

.bewertung-stat strong{
  display:block;
  font-family:'Press Start 2P',monospace;
  font-size:16px;
  color:#00f5d4;
  margin-bottom:8px;
}

.bewertung-stat.highlight strong{color:#ff4fa3}

.bewertung-stat span{font-size:12px;color:#999;line-height:1.4}

.bewertungen-details{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-bottom:28px;
}

.bewertung-detail{
  text-align:center;
  padding:12px;
  border-radius:10px;
  background:rgba(13,16,36,.6);
  font-size:12px;
  color:#bbb;
}

.bewertung-detail .stars{
  display:block;
  color:#ffe600;
  margin-bottom:6px;
  letter-spacing:2px;
}

.bewertungen-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.bewertung-karte{
  margin:0;
  padding:20px 18px;
  border-radius:14px;
  background:#0d1024;
  border:1px solid rgba(0,245,212,.2);
}

.bewertung-karte .stars{color:#ffe600;letter-spacing:2px;margin-bottom:10px;font-size:14px}

.bewertung-text{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.65;
  color:#ddd;
  font-style:italic;
}

.bewertung-meta{margin:0;font-size:12px;color:#888}

.bewertungen-hinweis{
  text-align:center;
  margin:24px 0 0;
  font-size:12px;
  color:#666;
}

.about-box{
  max-width:820px;
  margin:0 auto;
  padding:28px 26px;
  border-radius:14px;
  border:2px solid rgba(0,245,212,.35);
  background:#0d1024;
}

.about-box h2{
  margin:0 0 18px;
  font-family:'Press Start 2P',monospace;
  font-size:16px;
  color:#00f5d4;
  line-height:1.6;
  text-align:center;
}

.about-box p{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.7;
  color:#ccc;
}

.about-box p:last-child{margin-bottom:0}

.about-highlight{color:#ff4fa3;font-weight:bold}

.geschichte-timeline{
  list-style:none;
  margin:0;
  padding:0;
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
  position:relative;
}

.geschichte-timeline::before{
  content:"";
  position:absolute;
  left:18px;
  top:8px;
  bottom:8px;
  width:3px;
  background:linear-gradient(180deg,#ff4fa3,#00f5d4);
  border-radius:3px;
  opacity:.45;
}

.geschichte-item{
  position:relative;
  padding:0 0 28px 52px;
}

.geschichte-item:last-child{padding-bottom:0}

.geschichte-item::before{
  content:"";
  position:absolute;
  left:10px;
  top:22px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#0d1024;
  border:3px solid #00f5d4;
  box-shadow:0 0 12px rgba(0,245,212,.45);
  z-index:1;
}

.geschichte-item--neben::before{border-color:#ff4fa3;box-shadow:0 0 12px rgba(255,79,163,.4)}

.geschichte-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.geschichte-jahr{
  font-family:'Press Start 2P',monospace;
  font-size:11px;
  color:#00f5d4;
  line-height:1.5;
}

.geschichte-modell{
  padding:3px 10px;
  border-radius:999px;
  background:rgba(255,79,163,.12);
  border:1px solid rgba(255,79,163,.4);
  color:#ff4fa3;
  font-size:11px;
  font-weight:bold;
  letter-spacing:.04em;
}

.geschichte-karte{
  padding:22px 20px;
  border-radius:14px;
  border:2px solid rgba(255,79,163,.35);
  background:linear-gradient(160deg,#0d1024,#121530);
  box-shadow:0 0 20px rgba(255,79,163,.12);
}

.geschichte-karte h3{
  margin:0 0 10px;
  font-family:'Press Start 2P',monospace;
  font-size:13px;
  color:#fff;
  line-height:1.55;
}

.geschichte-intro{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.65;
  color:#aaa;
}

.geschichte-neu{
  margin:0;
  padding:0;
  list-style:none;
  font-size:14px;
  line-height:1.65;
  color:#ccc;
}

.geschichte-neu li{
  position:relative;
  padding:0 0 8px 18px;
}

.geschichte-neu li:last-child{padding-bottom:0}

.geschichte-neu li::before{
  content:"▸";
  position:absolute;
  left:0;
  color:#00f5d4;
  font-weight:bold;
}

.geschichte-neu strong{color:#fff}

.geschichte-shop-link{
  display:inline-block;
  margin-top:16px;
  font-size:13px;
  font-weight:bold;
  color:#00f5d4;
  text-decoration:none;
}

.geschichte-shop-link:hover{color:#ff4fa3}

.geschichte-abschluss{
  max-width:820px;
  margin:36px auto 0;
  padding:26px 24px;
  border-radius:14px;
  border:2px solid rgba(0,245,212,.35);
  background:#0d1024;
  text-align:center;
}

.geschichte-abschluss h3{
  margin:0 0 12px;
  font-family:'Press Start 2P',monospace;
  font-size:12px;
  color:#00f5d4;
  line-height:1.6;
}

.geschichte-abschluss p{
  margin:0 0 20px;
  font-size:14px;
  line-height:1.7;
  color:#aaa;
}

.geschichte-abschluss .button{display:inline-block}

/* Spiel – RGB-Checker */
.spiel-hero .spiel-btn-start{
  display:inline-block;
  margin-top:8px;
  min-width:220px;
}

.spiel-wrap{
  max-width:720px;
  margin:0 auto;
  min-height:420px;
}

.spiel-phase{
  text-align:center;
}

.spiel-karte{
  padding:28px 24px;
  border-radius:14px;
  border:2px solid rgba(255,79,163,.4);
  background:linear-gradient(160deg,#0d1024,#121530);
  text-align:left;
}

.spiel-karte h3{
  margin:0 0 16px;
  font-family:'Press Start 2P',monospace;
  font-size:12px;
  color:#00f5d4;
  line-height:1.6;
  text-align:center;
}

.spiel-regeln{
  max-width:520px;
  margin:0 auto 12px;
  padding:0 14px;
  color:#ccc;
  font-size:14px;
  line-height:1.6;
  text-align:center;
}

.spiel-regeln strong{color:#ff4fa3}

.spiel-rabatt-regel{
  max-width:520px;
  margin:0 auto 22px;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(0,245,212,.25);
  background:rgba(0,245,212,.06);
  color:#bbb;
  font-size:13px;
  line-height:1.55;
  text-align:center;
}

.spiel-rabatt-regel strong{color:#00f5d4}

.spiel-rabatt-beispiel{
  display:block;
  margin:6px 0;
  color:#ccc;
  font-size:12px;
}

.spiel-btn-start{
  display:block;
  width:100%;
  max-width:280px;
  margin:0 auto;
}

.spiel-countdown-text{
  font-family:'Press Start 2P',monospace;
  font-size:clamp(18px,5vw,28px);
  color:#00f5d4;
  text-shadow:0 0 24px rgba(0,245,212,.5);
  margin:80px 0;
  line-height:1.5;
}

.spiel-countdown-text.spiel-pop{
  animation:spielPop .45s ease;
}

@keyframes spielPop{
  0%{transform:scale(.7);opacity:.3}
  60%{transform:scale(1.08)}
  100%{transform:scale(1);opacity:1}
}

.spiel-phase-hint{
  margin:0 0 12px;
  font-size:15px;
  color:#aaa;
}

.spiel-memorize-timer{
  font-family:'Press Start 2P',monospace;
  font-size:48px;
  color:#ff4fa3;
  text-shadow:0 0 20px rgba(255,79,163,.5);
  margin:0 0 20px;
  line-height:1;
}

.spiel-gb{
  margin:0 auto;
  filter:drop-shadow(0 12px 20px rgba(0,0,0,.5));
}

.spiel-gb-svg{
  width:100%;
  height:auto;
  display:block;
}

.spiel-gb--lg{width:min(200px,58vw)}
.spiel-gb--md{width:150px}
.spiel-gb--sm{width:105px}

.spiel-guess-layout{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:28px;
  margin-top:8px;
}

.spiel-sliders{
  flex:1;
  min-width:240px;
  max-width:320px;
  text-align:left;
}

.spiel-slider{
  display:block;
  margin-bottom:18px;
}

.spiel-slider span{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  font-weight:bold;
  margin-bottom:8px;
}

.spiel-slider--r span{color:#ff6b6b}
.spiel-slider--g span{color:#51cf66}
.spiel-slider--b span{color:#74c0fc}

.spiel-slider input[type="range"]{
  width:100%;
  accent-color:#00f5d4;
  cursor:pointer;
}

.spiel-farbe-vorschau{
  display:flex;
  align-items:center;
  gap:12px;
  margin:20px 0;
  font-size:13px;
  color:#888;
}

.spiel-farbe-vorschau div{
  width:48px;
  height:48px;
  border-radius:10px;
  border:2px solid rgba(255,255,255,.2);
  box-shadow:0 4px 12px rgba(0,0,0,.35);
}

.spiel-sliders .button{
  width:100%;
  margin-top:4px;
}

.spiel-score{
  font-family:'Press Start 2P',monospace;
  font-size:clamp(32px,10vw,52px);
  margin:0 0 12px;
  line-height:1.2;
}

.spiel-score--high{color:#00f5d4;text-shadow:0 0 24px rgba(0,245,212,.45)}
.spiel-score--mid{color:#ffd43b;text-shadow:0 0 20px rgba(255,212,59,.35)}
.spiel-score--low{color:#ff4fa3;text-shadow:0 0 20px rgba(255,79,163,.35)}

.spiel-score-label{
  margin:0 0 28px;
  font-size:15px;
  color:#aaa;
}

.spiel-result-vergleich{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:24px;
  margin-bottom:28px;
}

.spiel-result-box{
  padding:18px 16px;
  border-radius:14px;
  border:2px solid rgba(0,245,212,.3);
  background:#0d1024;
  min-width:160px;
}

.spiel-result-titel{
  display:block;
  font-size:11px;
  font-weight:bold;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#888;
  margin-bottom:12px;
}

.spiel-result-box code{
  display:block;
  margin-top:8px;
  font-size:11px;
  color:#888;
  word-break:break-all;
}

.spiel-rabatt-box{
  margin:20px auto 16px;
  max-width:420px;
  padding:18px 20px;
  border-radius:14px;
  border:2px solid rgba(0,245,212,.35);
  background:rgba(13,16,36,.85);
  text-align:center;
}

.spiel-rabatt-titel{
  margin:0 0 8px;
  font-size:12px;
  font-weight:bold;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#00f5d4;
}

.spiel-rabatt-wert{
  margin:0 0 6px;
  font-family:'Press Start 2P',monospace;
  font-size:28px;
  color:#ff4fa3;
  text-shadow:0 0 20px rgba(255,79,163,.45);
}

.spiel-rabatt-prozent{
  margin:0 0 12px;
  font-size:14px;
  color:#ccc;
  line-height:1.5;
}

.spiel-rabatt-code-wrap{
  margin:0 0 10px;
}

.spiel-rabatt-code{
  display:inline-block;
  padding:10px 18px;
  border-radius:10px;
  background:#070817;
  border:2px solid #ff4fa3;
  color:#ff4fa3;
  font-size:22px;
  font-weight:bold;
  letter-spacing:.12em;
}

.spiel-rabatt-info{
  margin:0 0 14px;
  font-size:13px;
  line-height:1.5;
  color:#999;
}

.spiel-rabatt-copy{
  margin:0 auto;
}

.spiel-rabatt-fallback{
  margin:16px auto 0;
  max-width:420px;
  font-size:13px;
  line-height:1.55;
  color:#888;
  text-align:center;
}

.tagline a{
  color:#00f5d4;
  text-decoration:underline;
}

.tagline a:hover{color:#ff4fa3}

.aktions-text a{
  color:#00f5d4;
  text-decoration:underline;
}

.perk a{color:#00f5d4}

.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:32px;
}

.info-box{
  padding:24px 22px;
  border-radius:14px;
  border:2px solid #00f5d4;
  background:#0d1024;
}

.info-box.pink{border-color:#ff4fa3}

.info-box h2{
  margin:0 0 12px;
  font-family:'Press Start 2P',monospace;
  font-size:12px;
  color:#00f5d4;
  line-height:1.6;
}

.info-box.pink h2{color:#ff4fa3}

.info-box p{margin:0 0 10px;font-size:14px;line-height:1.6;color:#bbb}

.button{
  display:inline-block;
  border:2px solid #ff4fa3;
  color:#ff4fa3;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:bold;
  font-size:13px;
  transition:.2s;
  cursor:pointer;
  background:transparent;
  font-family:Arial,sans-serif;
}

.button:hover{background:#ff4fa3;color:#070817}

footer{
  text-align:center;
  padding:28px 20px 32px;
  color:#888;
  font-size:12px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:auto;
}

.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:12px;
}

.footer-links a{
  color:#ff4fa3;
  text-decoration:none;
  font-size:12px;
  font-weight:bold;
}

.footer-links a:hover{color:#00f5d4}

.footer-brand{
  font-family:'Press Start 2P',monospace;
  font-size:9px;
  color:#555;
  line-height:1.8;
}

.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:200;
  opacity:0;
  visibility:hidden;
  transition:.2s;
}

.modal-overlay.open{
  opacity:1;
  visibility:visible;
}

.modal{
  width:100%;
  max-width:480px;
  background:#0d1024;
  border:2px solid #00f5d4;
  border-radius:16px;
  padding:28px 24px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  position:relative;
}

.modal h2{
  margin:0 0 8px;
  font-family:'Press Start 2P',monospace;
  font-size:14px;
  color:#00f5d4;
  line-height:1.6;
}

.modal-intro{
  margin:0 0 20px;
  font-size:14px;
  color:#999;
  line-height:1.5;
}

.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  line-height:1;
}

.modal-close:hover{background:rgba(255,79,163,.3)}

.kontakt-form label{
  display:block;
  margin-bottom:16px;
  font-size:13px;
  font-weight:bold;
  color:#bbb;
}

.kontakt-form input,
.kontakt-form textarea{
  display:block;
  width:100%;
  margin-top:6px;
  padding:12px 14px;
  border-radius:10px;
  border:2px solid rgba(0,245,212,.25);
  background:#070817;
  color:#fff;
  font-size:14px;
  font-family:Arial,sans-serif;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus{
  outline:none;
  border-color:#00f5d4;
}

.kontakt-form input[type="file"]{
  padding:10px;
  cursor:pointer;
}

.kontakt-form input[type="file"]::file-selector-button{
  margin-right:12px;
  border:2px solid #ff4fa3;
  background:transparent;
  color:#ff4fa3;
  border-radius:999px;
  padding:6px 12px;
  font-weight:bold;
  cursor:pointer;
}

.kontakt-hinweis{
  margin:-8px 0 14px;
  font-size:12px;
  color:#777;
  line-height:1.4;
}

.kontakt-dateiname{
  margin:-6px 0 14px;
  font-size:12px;
  color:#00f5d4;
  line-height:1.4;
  word-break:break-word;
}

.kontakt-form textarea{min-height:120px;resize:vertical}

.kontakt-form .button{
  width:100%;
  text-align:center;
  margin-top:4px;
}

.kontakt-form .button:disabled{
  opacity:.6;
  cursor:not-allowed;
}

.kontakt-status{
  margin:12px 0 0;
  font-size:13px;
  text-align:center;
  min-height:20px;
}

.kontakt-status.ok{color:#00f5d4}
.kontakt-status.err{color:#ff4fa3}

@media(max-width:900px){
  .teaser-grid{grid-template-columns:1fr}
  .perks{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .perk{
    flex:none;
    max-width:none;
  }
  .bewertungen-stats{grid-template-columns:repeat(2,1fr)}
  .bewertungen-details{grid-template-columns:repeat(2,1fr)}
  .bewertungen-grid{grid-template-columns:1fr}
  .info-grid{grid-template-columns:1fr}
  .geschichte-item{padding-left:44px}
  .geschichte-timeline::before{left:14px}
  .geschichte-item::before{left:6px;width:16px;height:16px}
  .geschichte-karte h3{font-size:11px}
  .geschichte-jahr{font-size:9px}
  .spiel-guess-layout{flex-direction:column}
  .spiel-sliders{max-width:100%}
}

@media(max-width:600px){
  header{padding:28px 12px 24px;min-height:218px}
  header h1{font-size:20px;letter-spacing:-0.5px;line-height:1.4}
  header h1 .site-domain{white-space:nowrap}
  .badge{font-size:9px;padding:8px 14px;margin-bottom:12px}
  header .tagline{font-size:11px;padding:0 10px;margin-top:10px;line-height:1.55;min-height:4.65em}
  header .tagline .tagline-zweite{margin-top:6px;font-size:1em}
  .kauf-erfolg-banner{
    max-width:100%;
    margin:0 0 22px;
  }
  .kauf-erfolg-banner .kauf-perk{
    padding:24px 18px;
    font-size:15px;
    line-height:1.7;
  }
  .kauf-erfolg-banner .kauf-perk strong{
    font-size:10px;
    margin-bottom:12px;
  }
  .site-nav{gap:6px;padding:10px 8px}
  .site-nav a,.site-nav button{padding:8px 10px;font-size:11px}
  .container{padding:22px 12px 40px}
  .page-hero{margin-bottom:20px}
  .section-title{font-size:14px;margin-bottom:8px}
  .section-intro{font-size:14px;line-height:1.55}
  .aktions-banner{
    padding:14px 12px;
    margin-bottom:16px;
    border-radius:12px;
  }
  .aktions-tag{
    font-size:7px;
    padding:4px 10px;
    margin-bottom:8px;
  }
  .aktions-banner strong{
    font-size:10px;
    margin-bottom:6px;
    line-height:1.6;
  }
  .aktions-text{font-size:13px;line-height:1.5}
  .aktions-text--spiel{font-size:12px;line-height:1.45}
  .spiel-regeln{font-size:13px;line-height:1.55;padding:0 8px;margin-bottom:12px}
  .spiel-rabatt-regel{font-size:12px;line-height:1.5;padding:10px 12px;margin-bottom:18px}
  .spiel-rabatt-beispiel{font-size:11px}
  .perks{
    gap:8px;
    margin-bottom:18px;
  }
  .perk{
    padding:10px 8px;
    border-radius:10px;
    font-size:11px;
    line-height:1.4;
  }
  .perk strong{
    font-size:9px;
    margin-bottom:3px;
    line-height:1.35;
  }
  .teaser-card{padding:16px 14px}
  .teaser-card h3{font-size:9px}
  .teaser-card p{font-size:12px;line-height:1.5}
  .bewertungen-stats{gap:8px;margin-bottom:16px}
  .bewertung-stat{padding:12px 8px;border-radius:10px}
  .bewertung-stat strong{font-size:12px;margin-bottom:4px}
  .bewertung-stat span{font-size:10px;line-height:1.35}
  .bewertungen-details{gap:8px;margin-bottom:20px}
  .bewertung-detail{padding:10px 8px;font-size:11px}
  .bewertung-karte{padding:16px 14px}
  .info-grid{gap:12px;margin-top:24px}
  .info-box{padding:16px 14px}
  .info-box h2{font-size:11px;margin-bottom:10px}
  .info-box p{font-size:13px;line-height:1.55;margin-bottom:8px}
  .about-box{padding:18px 14px}
  .about-box h2{font-size:12px;margin-bottom:12px}
  .about-box p{font-size:14px;line-height:1.6;margin-bottom:12px}
  footer{font-size:11px}
}

.nav-warenkorb{
  position:relative;
  border:2px solid #00f5d4;
  color:#00f5d4;
  background:transparent;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:bold;
  cursor:pointer;
  font-family:Arial,sans-serif;
}

.nav-warenkorb:hover{
  background:#00f5d4;
  color:#070817;
}

.warenkorb-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  margin-left:6px;
  padding:0 5px;
  border-radius:999px;
  background:#ff4fa3;
  color:#fff;
  font-size:10px;
  line-height:1;
}

.modal-wide{max-width:560px}

.warenkorb-leer{
  text-align:center;
  color:#888;
  margin:20px 0;
}

.warenkorb-liste{
  list-style:none;
  margin:0 0 18px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.warenkorb-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(0,245,212,.25);
  background:rgba(13,16,36,.8);
}

.warenkorb-item-info{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

.warenkorb-item-info strong{
  color:#fff;
  font-size:14px;
  line-height:1.4;
}

.warenkorb-item-info span{
  color:#999;
  font-size:12px;
}

.warenkorb-item-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.warenkorb-qty{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:10px;
  color:#888;
}

.warenkorb-qty input{
  width:52px;
  padding:6px 8px;
  border-radius:8px;
  border:1px solid rgba(0,245,212,.3);
  background:#070817;
  color:#fff;
  font-size:13px;
}

.warenkorb-remove{
  width:32px;
  height:32px;
  border-radius:50%;
  border:1px solid rgba(255,79,163,.4);
  background:transparent;
  color:#ff4fa3;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}

.warenkorb-remove:hover{background:rgba(255,79,163,.15)}

.warenkorb-summary{
  border-top:1px solid rgba(255,79,163,.25);
  padding-top:16px;
}

.warenkorb-zwischensumme{
  margin:0 0 8px;
  font-size:15px;
  color:#ccc;
}

.warenkorb-rabatt-zeile{
  margin:0 0 8px;
  font-size:15px;
  color:#00f5d4;
}

.warenkorb-rabatt-zeile strong{
  color:#00f5d4;
}

#warenkorb-rabatt-prozent{
  color:#ff4fa3;
  font-weight:bold;
}

.warenkorb-endpreis{
  margin:0 0 16px;
  font-size:17px;
  color:#fff;
}

.warenkorb-endpreis strong{
  color:#ff4fa3;
  font-size:20px;
}

.warenkorb-rabatt-hinweis{
  min-height:18px;
  margin:0 0 12px;
  font-size:13px;
  color:#888;
}

.warenkorb-rabatt-hinweis.is-ok{
  color:#00f5d4;
}

.warenkorb-rabatt-hinweis.is-error{
  color:#ff6b8a;
}

.warenkorb-rabatt-label{
  display:block;
  margin-bottom:8px;
  font-size:13px;
  font-weight:bold;
  color:#bbb;
}

.warenkorb-rabatt-label input{
  display:block;
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:10px;
  border:2px solid rgba(0,245,212,.25);
  background:#070817;
  color:#fff;
  font-size:14px;
}

.warenkorb-rabatt-row{
  display:flex;
  gap:8px;
  margin-top:6px;
  align-items:stretch;
}

.warenkorb-rabatt-row input{
  flex:1;
  min-width:0;
  margin-top:0;
}

.button-rabatt-check{
  flex-shrink:0;
  border:2px solid #00f5d4;
  background:transparent;
  color:#00f5d4;
  padding:10px 14px;
  border-radius:10px;
  font-size:12px;
  font-weight:bold;
  cursor:pointer;
  white-space:nowrap;
}

.button-rabatt-check:hover{
  background:#00f5d4;
  color:#070817;
}

.button-rabatt-check:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.warenkorb-preise-box{
  margin:14px 0 16px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(255,79,163,.25);
  background:rgba(7,8,23,.6);
}

.cart-toast{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  z-index:10000;
  max-width:min(420px,calc(100vw - 32px));
  margin:0;
  padding:14px 20px;
  border-radius:12px;
  background:#121530;
  border:2px solid #00f5d4;
  color:#fff;
  font-size:14px;
  line-height:1.45;
  text-align:center;
  box-shadow:0 8px 32px rgba(0,0,0,.45);
}

.cart-toast--error{
  border-color:#ff4fa3;
  color:#ffd6e8;
}

.button-checkout{
  display:block;
  width:100%;
  border:none;
  background:linear-gradient(135deg,#0070ba,#003087);
  color:#fff;
  padding:14px 16px;
  border-radius:10px;
  font-weight:bold;
  font-size:14px;
  cursor:pointer;
}

.button-checkout:hover{filter:brightness(1.08)}

.button-checkout:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.warenkorb-status{
  margin:12px 0 0;
  min-height:20px;
  font-size:13px;
  color:#00f5d4;
  text-align:center;
}

@media(max-width:600px){
  .nav-warenkorb{padding:8px 10px;font-size:11px}
  .warenkorb-item{flex-direction:column}
}
