/* ═══════════════════════════════════════════════════════
   LuminosCity Experience — style.css
   ═══════════════════════════════════════════════════════ */

:root {
  --pink:    #ff4da6;
  --purple:  #9b5cff;
  --cyan:    #00e0ff;
  --blue:    #4cc9f0;
  --bg:      #030008;
  --surface: #0d0015;
  --border:  rgba(255,255,255,0.07);
  --text:    rgba(255,255,255,0.85);
  --muted:   rgba(255,255,255,0.38);
  --f-title: 'Orbitron', sans-serif;
  --f-body:  'Exo 2', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse 120% 40% at 15% -5%,  rgba(255,77,166,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 100% 40% at 85% 15%,  rgba(155,92,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80%  50% at 50% 110%, rgba(0,224,255,0.07)  0%, transparent 45%),
    #030008;
  color: var(--text);
  font-family: var(--f-body);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ── Ambient orb layer (fixed, behind everything) ─────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 700px at 8%  30%,  rgba(255,77,166,0.048) 0%, transparent 70%),
    radial-gradient(ellipse 750px 600px at 92% 60%,  rgba(155,92,255,0.055) 0%, transparent 70%),
    radial-gradient(ellipse 650px 800px at 50% 95%,  rgba(0,224,255,0.038)  0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 30% 70%,  rgba(76,201,240,0.03)  0%, transparent 65%);
}

/* ── Film-grain noise overlay ───────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }
strong { font-family: var(--f-body); }

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, #ff4da6, #9b5cff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-cool {
  background: linear-gradient(135deg, #9b5cff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section layout ─────────────────────────────────────── */
.section { padding: 112px 24px; position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-size: 0.68rem;
  font-family: var(--f-body);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,77,166,0.7);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--f-title);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.section-sub {
  margin: 16px auto 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.section-div {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,77,166,0.2), rgba(155,92,255,0.2), transparent);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Scroll animations ──────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--f-title);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff4da6, #9b5cff);
  box-shadow: 0 0 30px rgba(255,77,166,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(255,77,166,0.55);
}
.btn-primary.btn-lg { padding: 16px 42px; font-size: 0.78rem; }

.btn-ghost {
  display: inline-block;
  font-family: var(--f-title);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid rgba(255,77,166,0.3);
  background: rgba(255,77,166,0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255,77,166,0.55);
  box-shadow: 0 0 25px rgba(255,77,166,0.2);
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════ NAVBAR ═══ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(3,0,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 200px;
  width: auto;
  display: block;
  border-radius: 6px;
  filter: drop-shadow(0 0 10px rgba(255,77,166,0.45));
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-family: var(--f-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff4da6, #9b5cff);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,77,166,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  box-shadow: 0 0 35px rgba(255,77,166,0.55);
  transform: scale(1.04);
}
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: background 0.2s;
}
.menu-btn:hover span { background: #fff; }
.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(3,0,8,0.97);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu a:hover { color: #fff; }
.mobile-cta {
  margin: 12px 20px 16px !important;
  border: none !important;
  text-align: center;
  padding: 12px !important;
  background: linear-gradient(135deg, #ff4da6, #9b5cff) !important;
  border-radius: 8px;
  color: #fff !important;
}

/* ═══════════════════════════════════════════  HERO  ═══ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 50%,  rgba(255,77,166,0.18)  0%, transparent 50%),
    radial-gradient(ellipse at 82% 30%,  rgba(155,92,255,0.20)  0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255,90,40,0.22)   0%, transparent 38%),
    linear-gradient(to bottom, #030008 0%, #080010 28%, #0e001a 58%, #130018 78%, #0e000e 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  left: -10%; top: 20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,77,166,0.1) 0%, transparent 70%);
}
.hero-glow-right {
  position: absolute;
  right: -10%; top: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,92,255,0.1) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52%;
  background-image:
    linear-gradient(rgba(255,77,166,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,166,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(62deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.hero-city {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 320px;
}
.hero-city svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
  opacity: 1 !important;
  transform: none !important;
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--f-title);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.title-line { color: #fff; }
.hero-sub {
  font-size: clamp(0.875rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Countdown – Community-Karten-Stil */
.countdown { margin-bottom: 28px; }
.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.cd-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.018);
  padding: 32px 16px;
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.cd-stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(155,92,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cd-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 12px 8px;
}
.cd-digit {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--c);
  text-shadow: 0 0 28px color-mix(in srgb, var(--c) 40%, transparent);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: opacity 0.12s;
}
.cd-digit.flip { animation: flip 0.22s ease; }
.cd-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.stat-val {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}
.stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════ FEATURES ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(135deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  padding: 28px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--cc), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--cc) 12%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: color-mix(in srgb, var(--cc) 32%, transparent);
  box-shadow: 0 0 32px color-mix(in srgb, var(--cc) 12%, transparent);
  transform: translateY(-6px);
}
.feature-card:hover::before,
.feature-card:hover::after { opacity: 1; }
.feature-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cc) 60%, transparent);
  margin-bottom: 20px;
  font-weight: 600;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--cc);
  background: color-mix(in srgb, var(--cc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 25%, transparent);
  transition: box-shadow 0.3s;
}
.feature-card:hover .feature-icon {
  box-shadow: 0 0 20px color-mix(in srgb, var(--cc) 30%, transparent);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-title {
  font-family: var(--f-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.43);
  line-height: 1.68;
  margin-bottom: 20px;
}
.feature-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--cc) 75%, white);
  background: color-mix(in srgb, var(--cc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 20%, transparent);
}

/* ══════════════════════════════════════ REGELWERK ═══ */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.rule-card {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--cc) 15%, transparent);
  background: rgba(255,255,255,0.018);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.rule-card:hover {
  border-color: color-mix(in srgb, var(--cc) 35%, transparent);
  box-shadow: 0 0 35px color-mix(in srgb, var(--cc) 10%, transparent);
}
.rule-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cc) 10%, transparent), transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cc) 14%, transparent);
}
.rule-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cc);
  background: color-mix(in srgb, var(--cc) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 28%, transparent);
  flex-shrink: 0;
}
.rule-icon svg { width: 16px; height: 16px; }
.rule-cat {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cc);
}
.rule-para {
  font-family: var(--f-title);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--cc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 25%, transparent);
  color: color-mix(in srgb, var(--cc) 80%, white);
}
.rule-list {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rule-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.rule-num {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-title);
  font-size: 0.53rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cc);
  background: color-mix(in srgb, var(--cc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 25%, transparent);
}
.rule-list strong {
  display: block;
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.rule-list p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}
.rules-cta {
  text-align: center;
  padding-top: 8px;
}
.rules-cta > p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  margin-bottom: 20px;
}

/* ════════════════════════════════════════ COMMUNITY ═══ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.018);
  padding: 40px 24px;
  margin-bottom: 48px;
  position: relative;
}
.stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(155,92,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 12px;
}
.stat-line {
  width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, var(--c), transparent);
}
.stat-num {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--c);
  text-shadow: 0 0 28px color-mix(in srgb, var(--c) 40%, transparent);
}
.stat-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.discord-cta { text-align: center; margin-bottom: 48px; }
.discord-inner {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  border-radius: 14px;
  background: rgba(88,101,242,0.08);
  border: 1px solid rgba(88,101,242,0.25);
  backdrop-filter: blur(20px);
  flex-wrap: wrap;
  justify-content: center;
}
.discord-name {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
}
.discord-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}
.discord-btn {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 7px;
  background: #5865F2;
  color: #fff;
  box-shadow: 0 0 20px rgba(88,101,242,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.discord-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(88,101,242,0.5);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.team-card {
  border-radius: 12px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  border-color: color-mix(in srgb, var(--c) 25%, transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--c) 8%, transparent);
}
.team-quote {
  font-family: var(--f-title);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--c);
  opacity: 0.22;
  margin-bottom: 14px;
}
.team-card > p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.72;
  margin-bottom: 20px;
}
.team-meta { display: flex; align-items: center; gap: 12px; }
.team-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 28%, transparent);
  flex-shrink: 0;
}
.team-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.team-role {
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.26);
  margin-top: 2px;
}

/* ═══════════════════════════════════════ JOIN STEPS ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}
.step-card {
  border-radius: 12px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: color-mix(in srgb, var(--c) 35%, transparent);
  box-shadow: 0 0 30px color-mix(in srgb, var(--c) 10%, transparent);
}
.step-num {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--c);
  text-shadow: 0 0 20px color-mix(in srgb, var(--c) 50%, transparent);
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: var(--f-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.68;
  margin-bottom: 18px;
}
.step-badge {
  display: inline-block;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--c) 85%, white);
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
}
.step-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 54px;
  width: 40px;
}
.step-connector::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: linear-gradient(to right, rgba(255,77,166,0.3), rgba(155,92,255,0.3));
}
.join-cta { text-align: center; }
.join-hint {
  margin-top: 16px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════ FOOTER ═══ */
/* ═══════════════════════ SECTION ATMOSPHERIC GLOWS ═══ */
/* placed just before footer so they target sections by ID */

#features {
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%,  rgba(255,77,166,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 90% 30%,  rgba(155,92,255,0.065) 0%, transparent 60%),
    #030008;
}

#regelwerk {
  background:
    radial-gradient(ellipse 80% 65% at 50% 45%,  rgba(155,92,255,0.07)  0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 90%,  rgba(255,77,166,0.035) 0%, transparent 55%),
    #030008;
}

#community {
  background:
    radial-gradient(ellipse 65% 60% at 80% 55%,  rgba(0,224,255,0.055)  0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 15% 35%,  rgba(155,92,255,0.055) 0%, transparent 55%),
    #030008;
}

#join {
  background:
    radial-gradient(ellipse 70% 65% at 25% 65%,  rgba(255,77,166,0.06)  0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 75% 25%,  rgba(0,224,255,0.045)  0%, transparent 55%),
    #030008;
}

/* ═══════════════════════════════════════════ FOOTER ═══ */
#footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px 32px;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(155,92,255,0.055) 0%, transparent 65%);
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.72;
  margin-bottom: 18px;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,77,166,0.65);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,77,166,0.06);
  border: 1px solid rgba(255,77,166,0.18);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.footer-links { display: flex; gap: 48px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-family: var(--f-title);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  max-width: 1200px;
  margin: 0 auto;
}

/* ═════════════════════════════════════════ KEYFRAMES ═══ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
@keyframes flip {
  from { transform: translateY(-24px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ═══════════════════════════════════════ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .nav-inner { gap: 0; }

  .hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .cd-digit   { font-size: clamp(1.5rem, 5vw, 2rem); padding: 10px 12px; }
  .cd-sep     { font-size: 1.5rem; padding-top: 10px; }

  .features-grid { grid-template-columns: 1fr; }
  .rules-grid    { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  .footer-inner  { flex-direction: column; }
  .footer-links  { gap: 32px; }
  .discord-inner { gap: 14px; }
  .section { padding: 80px 16px; position: relative; z-index: 1; }
}
@media (max-width: 480px) {
  .countdown-grid { gap: 4px; }
  .cd-digit { font-size: 1.3rem; padding: 8px 10px; }
  .cd-sep   { font-size: 1.1rem; padding-top: 8px; }
  .hero-stats { gap: 22px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; }
}
