/* ==========================================================================
   StreamMOD – Minimalistischer, Geheimer Teaser (Puristisch & Edel)
   ========================================================================== */

:root {
  --bg-deep: #090a0e;
  --text-coming-soon: rgba(226, 216, 246, 0.72);
  --text-footer: rgba(140, 136, 163, 0.45);
  --text-footer-hover: rgba(216, 180, 254, 0.85);
  --logo-glow: rgba(168, 85, 247, 0.26);
  --logo-glow-hover: rgba(192, 132, 252, 0.42);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Basis */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: var(--bg-deep);
  color: var(--text-coming-soon);
  font-family: var(--font-family);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Statischer, zarter Ambient-Glow (vollkommen still ohne Bewegungs-Animationen) */
.ambient-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.22) 0%, rgba(99, 102, 241, 0.08) 45%, transparent 72%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Hauptbühne */
.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

/* Zentraler Marken-Block */
.brand-center {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Rahmenlose Logo-Präsentation */
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Keine Ränder, keine Box, kein Karten-Hintergrund */
  background: transparent;
  border: none;
  box-shadow: none;
}

.streammod-logo {
  width: 220px;
  height: auto;
  max-width: 75vw;
  display: block;
  user-select: none;
  pointer-events: auto;
  /* Mysteriöser, weicher Schein direkt hinter den Konturen des Logos */
  filter: drop-shadow(0 0 35px var(--logo-glow));
  transition: filter 0.5s ease;
}

.streammod-logo:hover {
  filter: drop-shadow(0 0 45px var(--logo-glow-hover));
}

/* Feines, dezentes Coming Soon */
.coming-soon-text {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-indent: 0.35em; /* Optischer Ausgleich für zentriertes Tracking */
  color: var(--text-coming-soon);
  text-transform: lowercase;
  opacity: 0.88;
  user-select: none;
}

/* Dezenter Footer */
.stage-footer {
  padding-top: 2rem;
  user-select: none;
}

.creator-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-footer);
  text-decoration: none;
  transition: color 0.3s ease;
}

.creator-link:hover {
  color: var(--text-footer-hover);
}

/* Mobile Feinabstimmung */
@media (max-width: 640px) {
  .stage {
    padding: 2.5rem 1.25rem 2rem;
  }

  .streammod-logo {
    width: 175px;
  }

  .coming-soon-text {
    margin-top: 1.6rem;
    font-size: 1rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .creator-link {
    font-size: 0.75rem;
  }
}
