/* ================================
   GLOBAL VARS & RESET
================================ */
:root{
  --bg:#0a0d14;
  --panel:#111827;
  --line:#223049;
  --text:#eef1f7;
  --sub:#a9b3c8;
  --brand:#cba066;
  --accent:#7aa8ff;
  --accent2:#c57dff;
  --ok:#48e5a7;

  --radius:18px;
  --radius-sm:14px;
  --shadow:0 24px 60px rgba(0,0,0,.45), 0 6px 16px rgba(0,0,0,.25);
  --container:1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font:16px/1.65 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(203,160,102,.18), transparent 60%),
    radial-gradient(900px 600px at 110% 0%, rgba(122,168,255,.14), transparent 60%),
    linear-gradient(180deg, #0a0d14 0%, #0b101a 100%);
  min-height:100vh;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:24px;
}

/* ================================
   HEADER & NAV
================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,rgba(9,13,20,.78),rgba(9,13,20,.55));
  backdrop-filter:blur(10px);
}

.header-wrap{
  display:grid;
  place-items:center;
  gap:14px;
}

.brand{
  display:grid;
  place-items:center;
}

.logo-shell{
  width:clamp(120px, 12vw, 180px);
  height:clamp(120px, 12vw, 180px);
  border-radius:28px;
  background:#0f1422;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.logo-shell img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.title{
  margin-top:10px;
  font-weight:800;
  font-size:clamp(18px,2.4vw,22px);
}

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  padding:10px 14px;
  border-radius:12px;
  transition:background .2s ease;
}

.nav a:hover{
  background:rgba(255,255,255,.05);
}

.nav a.active::after{
  content:"";
  display:block;
  height:2px;
  background:linear-gradient(90deg,var(--brand),var(--accent2));
  border-radius:2px;
  margin-top:4px;
}

/* ================================
   HERO
================================ */
.hero{
  text-align:center;
  border-bottom:1px solid var(--line);
}

.hero .container{
  padding:40px 24px;
}

.badge{
  display:inline-flex;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  font-weight:800;
  background:linear-gradient(180deg,var(--ok),#1aa267);
  color:#0a2715;
}

.hero h1{
  font-size:clamp(30px,4.5vw,46px);
  margin:14px 0 10px;
}

.lead{
  max-width:75ch;
  margin:0 auto;
  color:var(--sub);
}

.actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:20px;
}

.btn{
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  border:none;
  transition:transform .15s ease, box-shadow .2s ease;
}

.btn.primary{
  background:linear-gradient(135deg,var(--brand),var(--accent2));
  color:#0d0d0d;
  box-shadow:0 14px 34px rgba(197,125,255,.35);
}

.btn.outline{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
}

.btn:hover{transform:translateY(-1px)}

/* ================================
   SECTIONS / CARDS
================================ */
.section{
  background:linear-gradient(180deg, rgba(18,25,42,.92), rgba(18,25,42,.86));
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:22px;
  margin:24px 0;
  box-shadow:var(--shadow);
}

.section h2{
  margin:0 0 12px;
  color:var(--brand);
}

.muted{color:var(--sub)}

.grid{display:grid;gap:16px}
@media(min-width:860px){
  .cols-2{grid-template-columns:1fr 1fr}
  .cols-3{grid-template-columns:repeat(3,1fr)}
}

/* ================================
   MEILENSTEINE (PREMIUM)
================================ */
.milestones{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.ms-item{
  position:relative;
  display:grid;
  grid-template-columns:18px 1fr;
  gap:14px;
}

.ms-item::before{
  content:"";
  position:absolute;
  left:8px;
  top:-16px;
  bottom:-16px;
  width:2px;
  background:linear-gradient(var(--brand), rgba(203,160,102,0));
}

.ms-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  margin-top:18px;
  background:var(--brand);
  box-shadow:0 0 0 6px rgba(203,160,102,.18);
}

.ms-card{
  background:linear-gradient(180deg,#0f1624,#0c1220);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:14px 16px;
}

.ms-top{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

.ms-date,.ms-status{
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.1);
}

.ms-status{
  background:rgba(255,255,255,.05);
  color:var(--sub);
}

.ms-done .ms-status{
  background:linear-gradient(180deg,var(--ok),#1aa267);
  color:#0a2715;
}

.ms-active .ms-status{
  background:linear-gradient(135deg,var(--brand),var(--accent2));
  color:#0d0d0d;
}

.ms-planned .ms-status{
  background:rgba(122,168,255,.12);
}

.ms-title{
  margin:8px 0 4px;
  font-weight:900;
}

.ms-desc{
  margin:0;
  color:var(--sub);
}

/* ================================
   FAQ
================================ */
.faq{display:grid;gap:12px}

.faq-item{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#0f1422;
}

.faq-q{
  cursor:pointer;
  padding:16px 18px;
  font-weight:800;
  display:flex;
  justify-content:space-between;
}

.faq-a{
  max-height:0;
  overflow:hidden;
  padding:0 18px;
  transition:max-height .35s ease;
}

.faq-item.open .faq-a{
  max-height:500px;
  padding:0 18px 16px;
}

/* ================================
   NOTICE / SUCHE & PRÄVENTION
================================ */
.notice{
  border:1px solid rgba(72,229,167,.25);
  background:linear-gradient(180deg, rgba(72,229,167,.12), rgba(17,24,39,.85));
  border-radius:16px;
  padding:16px 18px;
}

.notice h3{margin:0 0 6px;color:var(--ok)}

/* ================================
   SOCIAL
================================ */
.social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.social a{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-weight:800;
}

.social a:hover{
  border-color:var(--brand);
}

/* ================================
   FOOTER
================================ */
footer{
  border-top:1px solid var(--line);
  background:#0c1220;
}

.foot{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

.small{color:var(--sub)}

/* ================================
   AGE GATE 21+
================================ */
.age-gate{
  position:fixed;
  inset:0;
  background:rgba(5,8,15,.92);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.age-gate-card{
  max-width:420px;
  width:90%;
  background:#0f1624;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:24px;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

.age-gate-card h2{
  margin:0 0 10px;
  color:var(--brand);
}

.age-gate-actions{
  display:flex;
  gap:14px;
  margin:20px 0 10px;
}

.age-btn{
  flex:1;
  padding:12px;
  border-radius:999px;
  font-weight:800;
  border:none;
  cursor:pointer;
}

.age-btn.yes{
  background:linear-gradient(135deg,var(--brand),var(--accent2));
  color:#0d0d0d;
}

.age-btn.no{
  background:rgba(255,255,255,.08);
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
}

body.age-locked{overflow:hidden}

/* Fix für Anker-Links bei sticky Header */
:root{
  --header-offset: 110px; /* ggf. auf 90–140px anpassen */
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

/* Alle Sprungmarken/Sections bekommen Abstand nach oben */
section[id],
main [id]{
  scroll-margin-top: var(--header-offset);
}

