/* style.css */
/* Dunkles, kontrastreiches Brand-Feeling: Rot + Gold + Neon-Akzent */

:root{
  --bg: #0b0c10;
  --bg-2: #10121a;
  --card: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);

  --brand: #e31837;
  --brand-2: #ff2d55;
  --gold: #f4c542;

  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(227, 24, 55, 0.25), transparent 60%),
    radial-gradient(900px 500px at 95% 10%, rgba(244, 197, 66, 0.18), transparent 55%),
    radial-gradient(900px 500px at 40% 120%, rgba(255, 45, 85, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 60%, var(--bg));
  min-height: 100vh;
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

/* Fixierte CTA-Schaltfläche */
.sticky-play{
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.10);
}
.sticky-play:hover{ transform: translateY(-1px); filter: brightness(1.05); }

/* Kopfbereich */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 16, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.header-grid{
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

/* Logo */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  transition: background 160ms ease, transform 160ms ease;
}
.brand:hover{ background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.brand-mark{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(244,197,66,0.35), transparent 55%),
    linear-gradient(135deg, rgba(227,24,55,0.95), rgba(255,45,85,0.95));
  box-shadow: 0 10px 30px rgba(227, 24, 55, 0.25);
  color: #fff;
  font-size: 18px;
}
.brand-text{ display: grid; line-height: 1.05; }
.brand-name{ font-weight: 950; letter-spacing: 0.6px; }
.brand-sub{ font-size: 12px; color: var(--muted); letter-spacing: 1.8px; }

/* Menü */
.main-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nav-link{
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); border-color: rgba(255,255,255,0.20); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 16px 35px rgba(227, 24, 55, 0.22);
}
.btn-ghost{ background: rgba(255,255,255,0.04); }
.btn-lg{ padding: 13px 18px; font-size: 15px; }
.btn-sm{ padding: 9px 12px; font-size: 13px; font-weight: 900; }

.header-actions{ display: flex; justify-content: flex-end; gap: 10px; }

/* Hero */
.hero{
  padding: 42px 0 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}
.eyebrow{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(244,197,66,0.10);
  border: 1px solid rgba(244,197,66,0.18);
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  letter-spacing: 0.3px;
  width: fit-content;
}
.hero-title{
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.hero-lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.hero-cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.hero-note{ margin: 0; font-size: 13px; color: rgba(255,255,255,0.64); }

/* Hero-Art */
.hero-art{ display: grid; justify-content: end; }
.art-card{
  position: relative;
  width: min(420px, 100%);
  height: 280px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(240px 140px at 20% 20%, rgba(227,24,55,0.35), transparent 55%),
    radial-gradient(220px 140px at 90% 30%, rgba(244,197,66,0.22), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.art-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-weight: 950;
  letter-spacing: 0.4px;
  font-size: 13px;
}
.art-lines{ position: absolute; inset: 72px 18px auto 18px; display: grid; gap: 10px; }
.line{ height: 10px; border-radius: 999px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.10); }
.art-tiles{
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tile{ height: 56px; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); }
.art-glow{
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,24,55,0.35), transparent 60%);
  right: -70px;
  bottom: -70px;
  filter: blur(6px);
}

/* Inhalt */
.content{ padding: 26px 0 40px; }
h1{
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.02em;
}
h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
p{ line-height: 1.7; color: rgba(255,255,255,0.84); }

.card{
  padding: 18px 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  margin: 14px 0;
}
.card-wide{ width: 100%; }

.steps, .bullets{
  margin: 0 0 14px 18px;
  color: rgba(255,255,255,0.82);
}
.cta-row{ display: flex; gap: 10px; flex-wrap: wrap; }

.callout{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(244,197,66,0.10);
  border: 1px solid rgba(244,197,66,0.18);
  color: rgba(255,255,255,0.88);
}

/* CTA-Panel */
.cta-panel{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(600px 180px at 20% 40%, rgba(227,24,55,0.20), transparent 55%),
    rgba(255,255,255,0.04);
}
.cta-panel-text{ display: grid; gap: 4px; }
.cta-panel-text span{ color: rgba(255,255,255,0.72); }

/* Tabellen */
.table-wrap{ overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.10); }
.data-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(255,255,255,0.02);
}
.data-table th, .data-table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: middle;
}
.data-table th{
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.06);
}
.data-table td{ color: rgba(255,255,255,0.82); }
.data-table tr:last-child td{ border-bottom: none; }

/* Game-Vorschau (als „Bild“-Kachel via CSS) */
.thumb{
  display: inline-block;
  width: 84px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  background-size: 200% 200%;
  animation: glow 6s ease-in-out infinite;
}
@keyframes glow{
  0%,100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.t1{ background-image: linear-gradient(135deg, rgba(244,197,66,0.75), rgba(255,45,85,0.65)); }
.t2{ background-image: linear-gradient(135deg, rgba(227,24,55,0.75), rgba(255,255,255,0.18)); }
.t3{ background-image: linear-gradient(135deg, rgba(255,45,85,0.75), rgba(244,197,66,0.35)); }
.t4{ background-image: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(227,24,55,0.70)); }
.t5{ background-image: linear-gradient(135deg, rgba(244,197,66,0.55), rgba(227,24,55,0.70)); }
.t6{ background-image: linear-gradient(135deg, rgba(227,24,55,0.55), rgba(255,255,255,0.22)); }
.t7{ background-image: linear-gradient(135deg, rgba(244,197,66,0.45), rgba(255,45,85,0.75)); }
.t8{ background-image: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(244,197,66,0.55)); }
.t9{ background-image: linear-gradient(135deg, rgba(227,24,55,0.55), rgba(244,197,66,0.55)); }
.t10{ background-image: linear-gradient(135deg, rgba(244,197,66,0.65), rgba(255,255,255,0.16)); }
.t11{ background-image: linear-gradient(135deg, rgba(255,45,85,0.70), rgba(255,255,255,0.12)); }
.t12{ background-image: linear-gradient(135deg, rgba(227,24,55,0.70), rgba(244,197,66,0.30)); }

.game-link{ color: rgba(255,255,255,0.92); text-decoration: underline; text-decoration-color: rgba(244,197,66,0.35); }
.game-link:hover{ text-decoration-color: rgba(244,197,66,0.75); }

/* FAQ */
.faq-item{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 10px 12px;
  margin: 10px 0;
}
.faq-item summary{
  cursor: pointer;
  font-weight: 950;
  color: rgba(255,255,255,0.90);
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-body{
  padding-top: 10px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.faq-cta{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(7,8,12,0.55);
  padding: 26px 0 18px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.footer-col h3{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.90);
}
.footer-links{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-links a{ color: rgba(255,255,255,0.72); }
.footer-links a:hover{ color: rgba(255,255,255,0.92); text-decoration: underline; }
.footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.address-card{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.address{
  font-style: normal;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.footer-play{ margin-top: 12px; width: fit-content; }
.footer-bottom{
  padding-top: 12px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.small{ font-size: 12.5px; }
.muted{ color: var(--muted); }

/* Responsiv */
@media (max-width: 980px){
  .header-grid{ grid-template-columns: 1fr; justify-items: start; }
  .main-nav{ justify-content: flex-start; }
  .header-actions{ justify-content: flex-start; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ justify-content: start; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .cta-panel{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px){
  .footer-grid{ grid-template-columns: 1fr; }
  .sticky-play{ left: 12px; right: 12px; text-align: center; }
  .data-table{ min-width: 620px; }
}
