/* style.css */

/* Farbvariablen im „Bizzo“-Look: Dark-Base + Neon-Violett + Gold */
:root{
  --bg: #0b061a;
  --bg2:#120a2a;

  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);

  --primary: #7c3aed;
  --primary2:#a855f7;
  --accent:  #fbbf24;
  --danger:  #ff3b7d;

  --shadow:  0 18px 60px rgba(0,0,0,.55);
  --radius:  18px;
  --radius2: 26px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(820px 460px at 85% 18%, rgba(251,191,36,.18), transparent 55%),
    radial-gradient(720px 420px at 55% 90%, rgba(255,59,125,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
a:focus{ outline:2px solid rgba(251,191,36,.65); outline-offset:3px; border-radius:10px; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index:100;
  backdrop-filter: blur(10px);
  background: rgba(11, 6, 26, .65);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 170px;
}
.brand-logo{
  height:34px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 25px rgba(124,58,237,.25));
}

/* Menü */
.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex:1;
}
.main-nav a{
  padding:10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight:700;
  letter-spacing:.2px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover{
  background: rgba(255,255,255,.07);
  color: var(--text);
  transform: translateY(-1px);
}

.header-cta{
  display:flex;
  gap:10px;
  align-items:center;
  min-width: 260px;
  justify-content:flex-end;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding:10px 14px;
  border:1px solid transparent;
  font-weight:850;
  letter-spacing:.2px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  color:#fff;
  box-shadow: 0 14px 30px rgba(124,58,237,.35);
}
.btn-primary:hover{ box-shadow: 0 18px 45px rgba(124,58,237,.45); }

.btn-ghost{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}

.btn-lg{ padding:12px 18px; font-size: 1.02rem; }
.btn-sm{ padding:8px 12px; font-size: .92rem; }

/* Angehefteter CTA */
.sticky-play{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing:.2px;
  background: linear-gradient(90deg, var(--accent), #ffd86b);
  color:#1b102b;
  box-shadow: 0 20px 55px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.18);
}
.sticky-play:hover{ transform: translateY(-2px); }

/* Hero */
.hero{ padding: 44px 0 22px; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy{
  padding: 28px 26px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}

.kicker{
  display:inline-block;
  margin:0 0 10px;
  padding:6px 12px;
  border-radius: 999px;
  background: rgba(251,191,36,.14);
  border: 1px solid rgba(251,191,36,.28);
  color: rgba(255,255,255,.90);
  font-weight: 900;
}

.hero-title{
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.15;
}

.hero-text{
  margin:0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 6px 0 18px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.trust-item{
  display:flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px;
  border-radius: 14px;
}

.trust-badge{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(124,58,237,.28);
}

/* Rechte Bildfläche */
.hero-art{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(11,6,26,.1), rgba(11,6,26,.75)),
    radial-gradient(700px 380px at 30% 20%, rgba(124,58,237,.55), transparent 55%),
    radial-gradient(700px 380px at 70% 65%, rgba(251,191,36,.25), transparent 60%),
    url("img/hero-bizzo.jpg");
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

/* Content */
.content{ padding: 18px 0 46px; }
h1{
  margin: 18px 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.0rem);
  line-height: 1.2;
}
p{ margin: 0 0 12px; color: var(--muted); }

.info-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card{
  grid-column: span 6;
  padding: 18px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}

.card-wide{ grid-column: span 12; }

.card h2{
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  color: rgba(255,255,255,.96);
}

.subhead{
  margin: 14px 0 8px;
  font-size: 1.02rem;
  color: rgba(255,255,255,.90);
}

.steps{ margin: 0 0 10px 18px; color: var(--muted); }
.steps li{ margin: 6px 0; }

.bullets{ margin: 0 0 8px 18px; color: var(--muted); }
.bullets li{ margin: 6px 0; }

.inline-link{
  color: rgba(251,191,36,.95);
  font-weight: 900;
}
.inline-link:hover{ color:#fff; }

.callout{
  margin: 12px 0;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(251,191,36,.10);
  border: 1px solid rgba(251,191,36,.24);
  color: rgba(255,255,255,.86);
}

.mini-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 10px;
}

.platform-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.tag{
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.16);
  border: 1px solid rgba(124,58,237,.25);
  color: rgba(255,255,255,.85);
  font-weight: 800;
}

/* CTA-Band */
.cta-band{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(124,58,237,.28);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.cta-text{
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

/* Tabellen */
.table-wrap{
  margin-top: 10px;
  overflow:auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.table{
  width:100%;
  border-collapse: collapse;
  min-width: 760px;
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: top;
  color: rgba(255,255,255,.80);
}
.table th{
  color: rgba(255,255,255,.92);
  text-align:left;
  background: rgba(255,255,255,.04);
  position: sticky;
  top: 0;
}
.table tbody tr:hover{
  background: rgba(255,255,255,.03);
}

.table-games{ min-width: 860px; }
.game-img{
  width: 96px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

/* FAQ */
.faq-wrap{
  margin-top: 10px;
  display:grid;
  gap: 12px;
}
.faq-item{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.faq-item h3{
  margin:0 0 8px;
  font-size: 1.02rem;
  color: rgba(255,255,255,.94);
}
.faq-item div[itemprop="text"]{
  color: var(--muted);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(11, 6, 26, .55);
  padding: 26px 0 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr .9fr .9fr;
  gap: 18px;
}

.footer-col h3{
  margin: 0 0 10px;
  font-size: 1rem;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-col li{ margin: 8px 0; }
.footer-col a{ color: rgba(255,255,255,.78); }
.footer-col a:hover{ color:#fff; }

.footer-brand img{
  height: 30px;
  width:auto;
  display:block;
  margin-bottom: 10px;
}

.muted{ color: var(--muted); }

.footer-note{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,59,125,.08);
  border: 1px solid rgba(255,59,125,.18);
  color: rgba(255,255,255,.82);
}

.footer-cta{ margin-top: 12px; }

.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content:center;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.muted-link{
  color: rgba(255,255,255,.65);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.muted-link:hover{ color:#fff; }

/* Responsiv */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .header-inner{ flex-wrap:wrap; }
  .brand{ min-width: 140px; }
  .main-nav{ order: 3; flex-basis:100%; justify-content:flex-start; overflow:auto; }
  .header-cta{ min-width: auto; width:100%; justify-content:flex-start; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .card{ grid-column: span 12; }
}

@media (max-width: 560px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .btn-lg{ width:100%; }
  .sticky-play{ left: 12px; right: 12px; bottom: 12px; text-align:center; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; align-items: stretch; }
}
