
/* =========================
   Glücksmoment – Global Style
   ========================= */

* { box-sizing: border-box; }

:root{
  --bg: #0b0f16;
  --card: rgba(18, 24, 36, .58);
  --border: rgba(255,255,255,.12);
  --text: #e9eef7;
  --muted: rgba(233,238,247,.78);
  --muted2: rgba(233,238,247,.60);
  --brand: #9fd0ff;
  --line: rgba(255,255,255,.10);
  --shadow: rgba(0,0,0,.45);
  --gold: rgba(210, 180, 80, .65);
}

html, body {
  height: 100%;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Hintergrund */
.bg{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 20% 80%, rgba(0,255,200,.22), transparent 60%),
    radial-gradient(1200px 800px at 90% 20%, rgba(90,120,255,.24), transparent 55%),
    radial-gradient(900px 600px at 50% 40%, rgba(255,255,255,.08), transparent 55%),
    var(--bg);
  filter: saturate(1.05);
  z-index: -1;
}

/* Zentrierung */
.wrap{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 18px;
}

/* Card */
.card{
  width: min(980px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px 18px;
  box-shadow: 0 18px 60px var(--shadow);
  backdrop-filter: blur(10px);
}

/* Kopfzeile in der Card */
.topline{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  margin-bottom: 10px;
}

.brand-left{
  color: var(--brand);
  font-weight: 650;
  letter-spacing: .2px;
}

.brand-right{
  color: var(--text);
  opacity: .85;
}

/* Content */
h1{
  margin: 10px 0 10px;
  font-size: 40px;
  letter-spacing: -0.5px;
}

h2{
  margin: 10px 0 8px;
  font-size: 28px;
  letter-spacing: -0.3px;
}

p{
  line-height: 1.55;
  opacity: .95;
  margin: 10px 0;
}

.small{
  font-size: 13px;
  opacity: .85;
}

.hr{
  height: 1px;
  background: var(--line);
  margin: 18px 0;
  border-radius: 99px;
}

/* Counter (zentriert, elegant) */
.counter{
  text-align: center;
  margin: 18px 0 14px;
}

.counter .line{
  width: 52px;
  height: 2px;
  margin: 0 auto 10px;
  background: var(--gold);
  border-radius: 99px;
  opacity: .9;
}

.counter .value{
  font-size: 44px;
  letter-spacing: 2px;
  font-weight: 650;
}

.counter .label{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.counter .line2{
  width: 52px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--gold);
  border-radius: 99px;
  opacity: .9;
}

/* Buttons */
.btnrow{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

a.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 13px;
  opacity: .95;
}

a.btn:hover{
  background: rgba(255,255,255,.10);
  opacity: 1;
}

/* Footer in Card */
.card-footer{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.footer-left{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-inline{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-inline a{
  color: #cfe6ff;
  text-decoration: none;
  font-weight: 650;
  font-size: 13px;
  opacity: .92;
}
.nav-inline a:hover{
  opacity: 1;
  text-decoration: underline;
}

.hint{
  font-size: 12px;
  color: var(--muted2);
}

.footer-right{
  font-size: 12px;
  color: var(--muted2);
}
