/* =========
   Design-Tokens (Screenshot-Look)
========= */
:root{
  --bg: #0a0a0a;
  --bg2:#0d0d0f;
  --card: rgba(255,255,255,0.04);
  --card2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --text: #f2f2f2;
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --primary: #ff5757;
  --primary2:#e96161;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1120px;
  --nav-h: 72px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  background: var(--bg);              /* <-- WICHTIG: kein globaler Verlauf mehr */
  color:var(--text);
  overflow-x:hidden;
}

/* Sections sollen deckend sein */
.section{
  padding: 84px 0;
  background: var(--bg);              /* Basis */
}

/* Alternierend dunkler/heller */
.section.alt{
  background: var(--bg2);             /* 2. Ton */
}

/* Events: du willst deinen fancy Background, aber bitte mit solidem Unterbau */
#events.events-bg{
  background:
    radial-gradient(900px 320px at 50% 35%, rgba(255, 70, 70, .10), transparent 60%),
    radial-gradient(700px 260px at 65% 60%, rgba(120, 90, 255, .08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.00) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,.00) 100%),
    var(--bg2);                        /* <-- deckender Basiston */
}

/* Hero bekommt seinen eigenen farbigen “Canvas” */
.hero{
  position: relative;
  overflow: hidden;

  min-height: 100svh;
  min-height: 100vh;

  padding-top: var(--nav-h);
  padding-bottom: 72px;

  display: grid;
  align-items: center;

  /* <-- eigener Hero-Background */
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(255,30,30,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}


a{color:inherit; text-decoration:none}
button{font:inherit}
.container{max-width:var(--container); margin:0 auto; padding:0 18px}
.section{padding: 84px 0}
.section.alt{background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));}
.section h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing:-.02em;
  text-align:center;
}
.lead{
  margin:0 auto 42px;
  max-width: 720px;
  text-align:center;
  color:var(--muted2);
  font-size: 16px;
  line-height:1.55;
}

/* Glass look */
.glass{
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

/* =========
   NAV
========= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  height:var(--nav-h);
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,10,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand-dot{
  width:10px; height:10px;
  background: var(--primary);
  border-radius:999px;
  box-shadow: 0 0 0 6px rgba(255,30,30,0.14);
}
.brand-text{font-size:14px; opacity:.95}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
  color:var(--muted);
  font-size:14px;
}
.nav-links a{
  opacity:.92;
  padding:10px 8px;
  border-radius:10px;
}
.nav-links a:hover{
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.nav-cta{display:inline-flex}
.burger{
  display:none;
  width:44px; height:44px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:12px;
  background: rgba(255,255,255,0.03);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(255,255,255,0.8);
  border-radius:2px;
}

.mobile-menu{
  display:none;
  position:absolute;
  top:var(--nav-h);
  left:0; right:0;
  padding: 14px 18px 22px;
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--muted);
}
.mobile-menu a:hover{
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.mobile-menu.open{display:block}

/* =========
   BUTTONS
========= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  font-weight: 650;
  letter-spacing:.2px;
  transition: transform .08s ease, background .12s ease, border-color .12s ease;
}
.btn:active{transform: translateY(1px)}
.btn[disabled]{opacity:.55; cursor:not-allowed}
.btn-primary{
  background: linear-gradient(180deg, var(--primary2), var(--primary));
  color:#0b0b0b;
  box-shadow: 0 18px 40px rgba(255,30,30,0.18);
}
.btn-ghost{
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: var(--text);
}
.btn-outline{
  background: transparent;
  border-color: rgba(255,30,30,0.28);
  color: var(--text);
}
.btn-dark{
  background: rgba(0,0,0,0.35);
  border-color: rgba(0,0,0,0.20);
  color: var(--text);
}

/* =========
   HERO
========= */
.hero{
  position: relative;
  overflow: hidden;

  /* Wichtig: volle Viewport-Höhe, auch auf Mobile (Safari URL-Bar etc.) */
  min-height: 100svh;
  min-height: 100vh;

  /* Platz für fixe Nav */
  padding-top: var(--nav-h);

  /* damit Inhalt + Mouse Platz haben */
  padding-bottom: 72px;

  display: grid;
  align-items: center;
}
.hero-bg{
  position:absolute;
  inset:-200px -200px auto -200px;
  height: 760px;
  background:
    radial-gradient(700px 420px at 50% 80%, rgba(255,30,30,0.28), transparent 30%),
    radial-gradient(420px 320px at 30% 20%, rgba(255,30,30,0.18), transparent 55%),
    radial-gradient(420px 320px at 70% 20%, rgba(255,30,30,0.14), transparent 55%);
  pointer-events:none;
}
.hero-inner{
  text-align:center;
  max-width: 900px;

  /* damit es nicht "zu tief" sitzt */
  padding-top: 40px;
}
.kicker{
  margin:0 0 10px;
  color: var(--muted2);
  letter-spacing:.2em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero-title{
  margin:0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.hero-title .accent{
  display:block;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(255,30,30,0.35);
}
.hero-sub{
  margin: 18px auto 24px;
  max-width: 720px;
  color: var(--muted);
  line-height:1.6;
}
.hero-sub .muted{color: var(--muted2)}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 22px;
}
.hero-meta{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}
.meta-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Center container */
.mouse-wrap{
  position: absolute;
  left: 0; right: 0;
  bottom: 24px;
  display: grid;
  place-items: center;
  min-height: auto; /* dein vorheriges min-height:10vh würde wieder Höhe "klauen" */
  z-index: 2;
}

/* Bounce motion (subtle) */
.mouse{
  width: 34px;
  height: 62px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 999px;
  position: relative;
  box-sizing: border-box;
  animation: mouse-bounce 1.35s ease-in-out infinite;
  will-change: transform;
}

/* The red "wheel" */
.wheel{
  width: 8px;
  height: 12px;
  background: #ff2a2a;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(255,42,42,.35);
}

/* Optional: tiny inner gloss like in the screenshot */
.mouse::after{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events:none;
}

/* Animation */
@keyframes mouse-bounce{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .mouse{ animation: none; }
}



/* =========
   EVENTS – SECTION BACKGROUND FIX
========= */

#events{
  position: relative;
  overflow: hidden;          /* wichtig: Glow bleibt in der Section */
  padding: clamp(64px, 7vw, 96px) 0;
}

/* eigentlicher Background der Section */
#events.events-bg{
  background:
    radial-gradient(900px 320px at 50% 35%, rgba(255, 70, 70, .10), transparent 60%),
    radial-gradient(700px 260px at 65% 60%, rgba(120, 90, 255, .08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.00) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,.00) 100%);
}

/* optional: leichte Vignette / weicher Rand, damit es “satter” wirkt */
#events.events-bg::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background: radial-gradient(1200px 520px at 50% 40%, rgba(255,255,255,.04), transparent 65%);
  opacity:.9;
}

/* Container sicher über dem Background */
#events .container{
  position: relative;
  z-index: 1;
}

/* deine Event-Card darf gerne etwas kräftiger “stehen” */
.next-event{ display:flex; justify-content:center; margin: 28px 0 28px; }

/* Card-Glas sauber und stabil */
.next-event-card{
  width: min(860px, 100%);
  padding: 22px 22px 18px;
  position: relative;
  border-radius: 22px;

  background: rgba(20,20,20,.55);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Badge bleibt wie gehabt (nur minimal schicker) */
.badge{
  position:absolute;
  top:16px; right:16px;
  font-size:12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,30,30,0.35);
  background: rgba(255,30,30,0.12);
  color: rgba(255,255,255,0.92);
}

/* Rest von dir (unverändert oder wie gehabt) */
.event-title{
  font-size: 22px;
  font-weight: 750;
  margin: 6px 0 14px;
}

.event-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 16px;
}

.event-pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 13px;
}

.event-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* =========
   TICKETS
========= */
.ticket-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.ticket-card{
  padding: 18px;
  border-radius: 22px;
  position:relative;
}
.ticket-card.featured{
  border-color: rgba(255,30,30,0.30);
  box-shadow: 0 18px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,30,30,0.16) inset;
}
.ticket-top{
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items:center;
  margin-bottom: 12px;
}
.ticket-icon{font-size: 22px}
.ticket-name{font-weight: 760}
.ticket-price{
  color: var(--primary);
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255,30,30,0.25);
}
.ticket-list{
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.6;
}

details{
  padding: 12px 10px;
  border-radius: 14px;
}
details + details{border-top: 1px solid rgba(255,255,255,0.06)}
summary{
  cursor:pointer;
  list-style:none;
  font-weight: 700;
}
summary::-webkit-details-marker{display:none}
details p{color: var(--muted); margin: 10px 0 0}

/* =========
   GALLERY / REVIEWS
========= */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.gallery-item{
  height: 160px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,0.35);
  letter-spacing:.2em;
  font-weight: 800;
}
.review-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 10px;
}
.review{
  padding: 16px;
  border-radius: 18px;
}
.stars{color: rgba(255,30,30,0.95); margin-bottom: 8px}
.review-text{color: var(--muted); line-height:1.5}
.review-meta{color: var(--muted2); margin-top: 10px; font-size: 13px}
.center{display:flex; justify-content:center; margin-top: 12px}

/* =========
   FAQ
========= */
.faq{
  margin-top: 26px;
  padding: 14px;
  border-radius: 22px;
}

/* Jede Frage als eigene “Card” */
.faq details{
  background: rgba(59, 59, 59, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow:
    0 12px 34px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

/* Abstand zwischen Cards statt “Trennlinie” */
.faq details + details{
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08); /* bleibt gleich, aber optisch egal */
}

/* Hover: minimal “lift” */
.faq details:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.34);
}

/* Summary = Klick-Zeile */
.faq summary{
  cursor: pointer;
  list-style: none;
  font-weight: 780;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
}

/* native marker kill */
.faq summary::-webkit-details-marker{ display:none; }

/* Chevron rechts (Indicator) */
.faq summary::after{
  content:"";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: .9;

  /* Chevron als Inline-SVG */
  background: no-repeat center / 18px 18px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

  transform: rotate(0deg);
  transition: transform .18s ease, opacity .18s ease;
}

/* Open-State: Chevron nach oben */
.faq details[open] summary::after{
  transform: rotate(180deg);
  opacity: 1;
}

/* Focus sichtbar (Tastatur) */
.faq summary:focus-visible{
  outline: 2px solid rgba(255,87,87,0.55);
  outline-offset: 2px;
  border-radius: 14px;
}

/* Content-Text: animiert ein-/ausblenden */
.faq details p{
  color: var(--muted);
  margin: 0;
  padding: 0 18px;

  /* Animation */
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;

  transition: max-height .28s ease, opacity .20s ease, transform .20s ease, padding .28s ease;
}

/* Open: Content sichtbar + etwas Luft */
.faq details[open] p{
  padding: 0 18px 18px;
  max-height: 220px; /* falls Antworten länger werden: erhöhen */
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion respektieren */
@media (prefers-reduced-motion: reduce){
  .faq details,
  .faq summary::after,
  .faq details p{
    transition: none !important;
  }
}



/* =========
   Games Section
========= */
#games .container{
  text-align: center;
}

.two-cards{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
  gap: 40px;
}

.mini-feature{
  padding: 40px 30px;
  border-radius: 26px;
  text-align: center;
  transition: all .3s ease;
}

.mini-feature:hover{
  transform: translateY(-6px);
}

.mini-icon{
  font-size: 64px;
  margin-bottom: 24px;
}

.mini-title{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.mini-text{
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

#games h2{
  font-size: 38px;
  margin-bottom: 10px;
}

#games .lead{
  color: var(--muted2);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px){
  .two-cards{
    grid-template-columns: 1fr;
  }
}

/* =========
   Bar Icons
========= */
.bar-bubble{
  width: 44px; height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(75, 75, 75, 0.3);
}
.bar-label{color: var(--text); font-size: 14px}

.bar-items{
  display: flex;
  justify-content: center;   /* horizontal mittig */
  align-items: center;
  gap: 40px;                 /* Abstand zwischen Icons */
  flex-wrap: wrap;           /* falls Platz nicht reicht */
}

.bar-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* =========
   TEAM SECTION (Ziel Design)
========= */

.team-section{
  padding: 120px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.team-title{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Avatar */

.team-avatar{
  width: 220px;
  height: 220px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #111, #000);
  border: 1px solid rgba(255,255,255,0.08);
}

.team-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Beschreibung */

.team-desc{
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted2);
  max-width: 720px;
  margin: 0 auto 60px;
}

/* Werte */

.team-values{
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.value{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}


/* =========
   Location
========= */
.location-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.map{
  min-height: 360px;
  border-radius: 22px;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,0.35);
  letter-spacing:.18em;
  font-weight: 800;
}
.location-cards{
  display:grid;
  gap: 14px;
}
.loc-card{
  padding: 16px;
  border-radius: 18px;
}
.loc-label{color: var(--muted2); margin-bottom: 6px}
.loc-value{color: var(--text); margin-bottom: 12px}

.icon {
  color: var(--primary);
  display: flex;
  align-items: center;   /* vertikal mittig */
  gap: 10px;    
}

/* =========
   Contact (Red section)
========= */
.contact{
  background: linear-gradient(180deg, rgba(255,30,30,0.92), rgba(255,30,30,0.88));
  padding: 70px 0 30px;
}
.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.contact-card{
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,0.28);
  border-color: rgba(0,0,0,0.22);
}
.contact-card h3{margin: 0 0 14px}
label{display:block; margin-bottom: 10px}
label span{display:block; font-size: 13px; opacity:.85; margin-bottom: 6px}
input,textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  outline:none;
}
textarea{resize: vertical}
.form-hint{margin: 10px 0 0; color: rgba(255,255,255,0.75); font-size: 13px}

.contact-cta{
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,0.22);
  border-color: rgba(0,0,0,0.20);
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.contact-cta h3{margin:0}

/* Footer */
.footer{
  margin-top: 26px;
  padding: 18px 0 0;
  display:flex;
  justify-content:space-between;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.footer a{opacity:.95}
.sep{opacity:.7; padding: 0 6px}

/* =========
   Responsive
========= */
@media (max-width: 980px){
  .nav-links{display:none}
  .nav-cta{display:none}
  .burger{display:inline-flex}
  .event-grid{grid-template-columns: 1fr}
  .ticket-grid{grid-template-columns: 1fr}
  .gallery-grid{grid-template-columns: 1fr 1fr}
  .review-row{grid-template-columns: 1fr}
  .two-cards{grid-template-columns: 1fr}
  .bar-icons{grid-template-columns: 1fr 1fr}
  .location-grid{grid-template-columns: 1fr}
  .contact-wrap{grid-template-columns: 1fr}
}

@media (max-width: 520px){
  .hero{padding-bottom: 56px}
  .gallery-grid{grid-template-columns: 1fr}
  .footer{flex-direction:column; align-items:flex-start}
}