/* style.css – alle Styles und Kommentare sind bewusst auf Deutsch gehalten */

:root{
  /* Farbwelt: MERKUR-inspiriert (Sonne/Gold + Navy + Rot) */
  --bg: #070c16;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  --gold: #ffcc00;
  --gold-2: #ffdf4d;
  --navy: #0b1f3b;
  --red: #e5002b;

  --stroke: rgba(255,255,255,0.14);
  --shadow: 0 18px 40px rgba(0,0,0,0.45);
  --radius: 18px;

  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,204,0,0.22), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(229,0,43,0.18), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(11,31,59,0.55), transparent 60%),
    var(--bg);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7,12,22,0.6);
  border-bottom: 1px solid var(--stroke);
}

.header-inner{
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark svg{
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 16px rgba(255,204,0,0.25));
}

.brand-text strong{
  display: block;
  letter-spacing: 0.6px;
  font-size: 16px;
}
.brand-text small{
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: 160ms ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

.header-cta{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #121212;
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 16px 30px rgba(255,204,0,0.22);
}
.btn-primary:hover{
  box-shadow: 0 18px 36px rgba(255,204,0,0.30);
}

.btn-ghost{
  background: rgba(255,255,255,0.06);
  border-color: var(--stroke);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.10);
}

.btn-lg{ padding: 12px 18px; border-radius: 16px; }
.btn-xl{ padding: 14px 22px; border-radius: 18px; font-size: 16px; }
.btn-sm{ padding: 8px 12px; border-radius: 12px; font-size: 13px; }

.hero{
  padding: 34px 0 18px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy{
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.kicker{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,31,59,0.45);
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-title{
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.4px;
}
.hero-subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15.5px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.trust-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.trust-pill{
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

.hero-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 330px;
  filter: saturate(1.1) contrast(1.06);
}
.hero-badge{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,12,22,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 10px 12px;
}
.hero-badge a{
  color: #121212;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 900;
}

.intro{
  padding: 10px 0 10px;
}
h1{
  margin: 18px 0 10px;
  font-size: 30px;
  letter-spacing: -0.3px;
}
.intro p{
  color: var(--muted);
  font-size: 15.5px;
  margin: 0 0 10px;
}

.section-card{
  margin: 14px auto;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.section-card h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.section-card p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15.2px;
}

.callout{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,204,0,0.25);
  background: rgba(255,204,0,0.08);
  color: rgba(255,255,255,0.86);
}

.steps{
  margin: 12px 0 10px 18px;
  color: rgba(255,255,255,0.82);
}
.steps li{ margin: 8px 0; }

.cta-row{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cta-hint{
  color: rgba(255,255,255,0.70);
  font-size: 13.5px;
}

.table-wrap{
  margin-top: 12px;
  border-radius: 16px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(7,12,22,0.35);
}

.data-table, .games-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}
.data-table th, .data-table td,
.games-table th, .games-table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  vertical-align: top;
}
.data-table th, .games-table th{
  text-align: left;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  letter-spacing: 0.3px;
  background: rgba(255,255,255,0.05);
}
.data-table td, .games-table td{
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}
.games-table img{
  width: 92px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}
.game-link{
  font-weight: 800;
  color: rgba(255,255,255,0.90);
}
.game-link:hover{ color: var(--gold-2); }

.faq-list{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
details{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 12px 14px;
}
summary{
  cursor: pointer;
  font-weight: 900;
  color: rgba(255,255,255,0.88);
}
details p{
  margin-top: 10px;
  color: rgba(255,255,255,0.76);
}

.site-footer{
  margin-top: 20px;
  border-top: 1px solid var(--stroke);
  background: rgba(7,12,22,0.60);
}
.footer-grid{
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}
.footer-col h3{
  margin: 0 0 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.90);
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.footer-sun{ color: var(--gold); }
.footer-text{
  margin: 10px 0 14px;
  color: rgba(255,255,255,0.72);
  font-size: 13.8px;
}

.footer-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-links a{
  color: rgba(255,255,255,0.74);
}
.footer-links a:hover{
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-decoration-color: rgba(255,204,0,0.55);
}

.address{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.address-title{
  font-weight: 800;
  color: rgba(255,255,255,0.86);
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-cta{
  margin-top: 14px;
}

.footer-bottom{
  padding: 12px 0 18px;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sticky-play{
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 40px rgba(255,204,0,0.24);
  border: 1px solid rgba(0,0,0,0.10);
}
.sticky-play:hover{
  transform: translateY(-1px);
}
.sticky-play:active{
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .header-inner{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav{
    justify-content: flex-start;
  }
  .header-cta{
    justify-content: flex-start;
  }
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .sticky-play{
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }
}
