:root {
  --bg-main: #050507;
  --bg-card: #111115;
  --bg-card-soft: #14141a;
  --accent: #ff1e2d;
  --accent-soft: rgba(255, 30, 45, 0.18);
  --text-main: #ffffff;
  --text-muted: #b5b5c6;
  --border-soft: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 0 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 26px rgba(255, 30, 45, 0.65);
  --max-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a0710 0, #050507 55%, #020203 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  max-width: var(--max-width);
  width: 100%;
  background: radial-gradient(circle at top, #1b0b0f 0, #050507 60%, #020203 100%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px 30px;
  position: relative;
  overflow: hidden;
}

.wrapper::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 30, 45, 0.55), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.wrapper-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

/* Logo + Headline + Timer */

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-row img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.9));
}

.logo-text {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 12px;
  color: var(--text-muted);
}

.headline {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 20px;
  margin-bottom: 4px;
}

.headline span {
  color: var(--accent);
}

.subline {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.subline strong {
  color: #ffffff;
  font-weight: 500;
}

.subline-secondary {
  margin-top: 6px;
}

/* Countdown */

.launch-timer {
  margin-top: 16px;
  text-align: center;
}

.launch-timer-label {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  white-space: nowrap;
  margin-bottom: 8px;
}

.launch-timer-units {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.launch-timer-unit {
  min-width: 64px;
  padding: 6px 10px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #14141c, #050507);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.launch-timer-number {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.launch-timer-caption {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* Discord button */

.discord-wrapper {
  margin-top: 16px;
  display: flex;
  justify-content: center;  /* horizontal zentrieren */
}

.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at top left, rgba(114, 137, 218, 0.3), rgba(0, 0, 0, 0.9));
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.discord-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(114, 137, 218, 0.45);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Info boxes */

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.info-card {
  background: radial-gradient(circle at top left, #1b0b0f 0, #0a0a0f 48%, #050508 100%);
  border-radius: 22px;
  padding: 16px 16px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-soft) 0, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.info-tag {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.info-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.info-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Footer */

.footer-row {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.footer-row a {
  color: var(--accent);
}

.footer-main {
  max-width: 620px;
}

.imprint-link {
  border: none;
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.15s ease-out, background-color 0.15s ease-out, color 0.15s ease-out;
}

.imprint-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

/* Imprint modal */

.imprint-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease-out;
  z-index: 30;
}

.imprint-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}

.imprint-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.imprint-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  background: radial-gradient(circle at top, #1b0b0f 0, #050507 60%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  padding: 16px 18px 18px;
}

.imprint-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.imprint-title {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
}

.imprint-close {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.imprint-close:hover {
  color: #ffffff;
}

.imprint-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.imprint-body p + p {
  margin-top: 6px;
}

.imprint-body a {
  color: var(--accent);
}

/* Responsive */

@media (max-width: 880px) {
  .wrapper-inner {
    grid-template-columns: 1fr;
  }

  .wrapper {
    padding: 22px 18px 24px;
  }

  .logo-row img {
    height: 54px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 12px;
  }

  .headline {
    font-size: 17px;
    letter-spacing: 0.18em;
  }

  .launch-timer-label {
    font-size: 10px;
  }
}



