/* ===================================================================
   MAIN SITE - Apple-Homepage-Stil
   =================================================================== */
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1d1d1f;
  background: #fff;
}

#site { width: 100%; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  height: 48px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.25s ease;
}
.site-nav.scrolled { box-shadow: 0 1px 10px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 980px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #1d1d1f;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
  font-size: 13px;
  color: #1d1d1f;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* respektiert ein-/ausklappende Adressleiste auf Android/Mobile */
  padding: 48px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #86868b;
  margin: 0 0 14px;
}

.hero-title {
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0 0 18px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: #6e6e73;
  max-width: 560px;
  margin: 0 auto;
}

.scroll-cue {
  display: inline-block;
  margin-top: 56px;
  font-size: 30px;
  color: #86868b;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}

/* ---------- Generic content sections ---------- */
.content-section {
  padding: 110px 24px;
  text-align: center;
  background: #fff;
}
.content-section.alt { background: #f5f5f7; }

.content-section h2,
.gift-section h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.section-sub {
  font-size: 18px;
  color: #6e6e73;
  margin: 0 0 56px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.placeholder-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 10px 30px rgba(0,0,0,0.04);
}
.card-grid .placeholder-card:nth-child(2) { transition-delay: 0.08s; }
.card-grid .placeholder-card:nth-child(3) { transition-delay: 0.16s; }

.card-icon { font-size: 36px; }
.placeholder-card p { margin: 0; color: #6e6e73; font-size: 15px; }

/* ---------- Gift / reveal section ---------- */
.gift-section {
  padding: 130px 24px;
  text-align: center;
  background: linear-gradient(180deg, #0b0b0d 0%, #1c1c1f 100%);
  color: #fff;
}
.gift-section .section-sub { color: #a1a1a6; }

.voucher-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 46px 36px;
  text-align: center;
  background: linear-gradient(145deg, #1f2733, #11161d);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.voucher-card::before {
  content: "";
  position: absolute;
  top: -60%; left: -20%;
  width: 60%; height: 220%;
  background: linear-gradient(75deg, rgba(255,255,255,0.07), transparent 60%);
  transform: rotate(8deg);
  pointer-events: none;
}

.voucher-badge {
  display: inline-block;
  background: #ffd23f;
  color: #1d1d1f;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.voucher-game-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0 0 6px;
}

.voucher-game-meta {
  font-size: 14px;
  color: #9fb3c8;
  margin: 0 0 22px;
}

.voucher-description {
  font-size: 16px;
  line-height: 1.65;
  color: #cfd8e3;
  margin: 0 0 28px;
}

.voucher-steam-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.steam-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 999px;
}

.voucher-status { font-size: 13px; color: #9fb3c8; }

.btn-pill {
  display: inline-block;
  background: #0071e3;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.btn-pill:hover { background: #0058b0; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 50px 24px;
  text-align: center;
  color: #86868b;
  font-size: 12px;
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .card-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .content-section, .gift-section { padding: 80px 20px; }
  .voucher-card { padding: 36px 24px; }
}
