/* style.css */
/* Design im Neon-/Dark-Look, Kommentare strikt auf Deutsch */

:root{
  --bg: #0b0f1a;
  --panel: #0f1629;
  --panel-2: #121c34;

  --text: #eaf0ff;
  --muted: rgba(234,240,255,.72);

  --neon-pink: #ff2bd6;
  --neon-cyan: #20f0ff;
  --neon-lime: #b6ff3b;
  --accent: #7c5cff;

  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);

  --radius: 18px;
  --radius-lg: 26px;

  --max: 1160px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(255,43,214,.18), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(32,240,255,.14), transparent 55%),
    radial-gradient(900px 700px at 60% 110%, rgba(182,255,59,.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .96; }

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Fixierter CTA-Button */
.sticky-play{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
  transform: translateZ(0);
}
.sticky-play:hover{ transform: translateY(-1px); }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,26,.58);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

/* Brand/Logo */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .5px;
  background: linear-gradient(145deg, rgba(255,43,214,.95), rgba(32,240,255,.85));
  box-shadow: 0 12px 36px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
}
.brand-text strong{
  display: block;
  font-size: 16px;
  line-height: 1.1;
}
.brand-text span{
  display: block;
  font-size: 12px;
  opacity: .86;
}

/* Navigation */
.nav{
  justify-self: center;
  display: inline-flex;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15,22,41,.55);
}
.nav a{
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

/* Header-Actions */
.header-actions{
  justify-self: end;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 16px 44px rgba(0,0,0,.45);
}
.btn-primary:hover{ box-shadow: 0 18px 56px rgba(0,0,0,.52); }

.btn-ghost{ background: rgba(15,22,41,.55); }

.btn-lg{
  padding: 12px 18px;
  font-size: 15px;
}

.btn-sm{
  padding: 8px 12px;
  font-size: 13px;
}

/* Hero */
.hero{ padding: 42px 0 26px; }

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.badge{
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(234,240,255,.86);
  background: rgba(15,22,41,.55);
  border: 1px solid var(--border);
}

.hero-title{
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.hero-subtitle{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}

.hero-highlights{
  margin: 0;
  padding-left: 18px;
  color: rgba(234,240,255,.78);
}
.hero-highlights li{ margin: 6px 0; }

/* Hero-Visual */
.hero-visual{
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 420px at 30% 25%, rgba(255,43,214,.22), transparent 60%),
    radial-gradient(600px 400px at 80% 20%, rgba(32,240,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(18,28,52,.9), rgba(15,22,41,.75));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero-card{
  width: min(420px, 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(11,15,26,.55);
  box-shadow: 0 16px 60px rgba(0,0,0,.45);
}
.hero-card-top{
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.hero-card-body{ padding: 18px 18px 20px; }
.hero-card-kicker{
  margin: 0 0 8px;
  color: rgba(234,240,255,.72);
  font-weight: 900;
}
.hero-card-headline{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}
.hero-card-text{
  margin: 0 0 14px;
  color: var(--muted);
}

/* CTA-Leiste */
.cta-strip{ margin-top: 18px; }
.cta-strip-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg, rgba(255,43,214,.12), rgba(32,240,255,.12));
}
.cta-strip-text{ display: grid; gap: 2px; }
.cta-strip-text strong{ font-size: 16px; }
.cta-strip-text span{ color: var(--muted); }

/* Content */
.content{ padding: 28px 0 54px; }

h1{
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 12px;
}
p{ color: rgba(234,240,255,.88); }
.muted{ color: var(--muted); }

.info-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.info-card{
  grid-column: span 6;
  padding: 16px 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(15,22,41,.58);
  box-shadow: 0 14px 46px rgba(0,0,0,.35);
}

.info-card.wide{ grid-column: span 12; }

.info-card h2{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.info-card a{ text-decoration: underline; text-underline-offset: 3px; }
.info-card .btn{ text-decoration: none; margin-top: 10px; }

.callout{
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.callout strong{ display: block; margin-bottom: 6px; }

.info-card ol, .info-card ul{
  margin: 8px 0 10px;
  padding-left: 18px;
  color: rgba(234,240,255,.86);
}

.table-wrap{
  overflow: auto;
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(11,15,26,.35);
}

.data-table, .games-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
.data-table th, .data-table td,
.games-table th, .games-table td{
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: top;
}
.data-table th, .games-table th{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: rgba(234,240,255,.82);
  background: rgba(255,255,255,.04);
}
.data-table td, .games-table td{ color: rgba(234,240,255,.86); }

.games-table img{
  width: 120px;
  height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  display: block;
}

.link-strong{
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
details{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  margin: 10px 0;
}
summary{
  cursor: pointer;
  font-weight: 900;
}
details p{ margin: 8px 0 0; color: var(--muted); }

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(11,15,26,.75);
  padding: 26px 0 18px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-col h3{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: rgba(234,240,255,.9);
}
.footer-links{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-links a{
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-brand{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.address-card{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-mini-links{
  display: inline-flex;
  gap: 12px;
}
.footer-mini-links a{ color: rgba(234,240,255,.72); }
.footer-mini-links a:hover{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 980px){
  .header-inner{
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }
  .nav{ justify-self: start; }
  .header-actions{ justify-self: start; }

  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ min-height: 300px; }

  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .info-card{ grid-column: span 12; }
  .data-table, .games-table{ min-width: 720px; }
}

@media (max-width: 560px){
  .nav{ width: 100%; justify-content: space-between; gap: 8px; }
  .nav a{ padding: 6px 8px; }
  .sticky-play{ left: 12px; bottom: 12px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .data-table, .games-table{ min-width: 640px; }
}
