/* ================================================================
   LSR EDITIERBEREICH — Farben und Grundwerte zentral anpassen
   ================================================================ */
:root {
  --acid: #c8ff32;
  --acid-bright: #dcff79;
  --background: #080b09;
  --background-soft: #0e120f;
  --text: #f4f6f3;
  --muted: #8f9891;
  --line: rgba(200, 255, 50, 0.18);
  --content-width: 760px;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 43%, rgba(88, 120, 28, 0.12), transparent 38%),
    linear-gradient(135deg, #0b0f0c 0%, var(--background) 55%, #060806 100%);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  position: fixed;
  z-index: -1;
  width: 36vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line));
  transform: rotate(-45deg);
  transform-origin: right center;
}

.page-shell::before {
  top: 9%;
  right: -3%;
}

.page-shell::after {
  right: -10%;
  bottom: 22%;
}

.watermark {
  position: fixed;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: min(74vw, 930px);
  max-width: none;
  opacity: 0.025;
  filter: grayscale(1) brightness(2);
  transform: translate(-50%, -49%) rotate(-5deg);
  pointer-events: none;
  user-select: none;
}

.noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 40px), var(--content-width));
  margin: auto;
  padding: clamp(48px, 7vh, 88px) 0 32px;
  text-align: center;
}

.status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
  animation: pulse 1.8s ease-in-out infinite;
}

.brand-logo {
  display: block;
  width: clamp(160px, 20vw, 245px);
  height: 100px;
  margin-bottom: 19px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--acid);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--acid);
  text-shadow: 0 0 32px rgba(200, 255, 50, 0.09);
}

.lead {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.3vw, 0.98rem);
  line-height: 1.65;
}

.countdown-section {
  width: min(100%, 600px);
  margin-top: clamp(25px, 4vh, 38px);
}

.showcase-label {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.showcase-label strong {
  color: var(--acid);
  font-size: 0.82rem;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  padding: 15px clamp(12px, 3vw, 26px) 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 22, 18, 0.86), rgba(9, 12, 10, 0.7));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 18px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-unit strong,
.separator {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 600;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.time-unit span {
  margin-top: 7px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.58rem, 1.2vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.separator {
  color: var(--acid);
  opacity: 0.6;
}

.countdown-finished {
  margin: 12px 0 0;
  color: var(--acid);
}

.discord-button {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 20px;
  color: #0a0d0a;
  border: 1px solid var(--acid);
  background: var(--acid);
  box-shadow: 0 0 0 rgba(200, 255, 50, 0);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.discord-button:hover {
  background: var(--acid-bright);
  box-shadow: 0 8px 28px rgba(200, 255, 50, 0.2);
  transform: translateY(-2px);
}

.discord-button:focus-visible,
footer a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.discord-button svg {
  width: 19px;
  fill: currentColor;
}

.discord-button .arrow {
  margin-left: 3px;
  font-size: 1rem;
}

footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding: 18px 0 22px;
  color: #5f6861;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer nav {
  display: flex;
  gap: 22px;
}

footer a {
  text-decoration: none;
  transition: color 160ms ease;
}

footer a:hover {
  color: var(--acid);
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-height: 820px) and (min-width: 680px) {
  .maintenance { padding-top: 34px; }
  .brand-logo { height: 82px; margin-bottom: 12px; }
  .lead { margin-top: 14px; }
  .countdown-section { margin-top: 22px; }
}

@media (max-width: 560px) {
  .maintenance { width: min(calc(100% - 28px), var(--content-width)); }
  .brand-logo { height: 82px; }
  .countdown { padding-inline: 8px; }
  .separator { font-size: 1.75rem; }
  footer { flex-direction: column; width: calc(100% - 32px); text-align: center; }
  footer nav { gap: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   IMPRESSUM & DATENSCHUTZ
   ================================================================ */
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(88, 120, 28, 0.1), transparent 28%),
    var(--background);
}

.legal-shell {
  width: min(calc(100% - 40px), 840px);
  margin: 0 auto;
  padding: 28px 0 70px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-logo {
  width: 145px;
  height: 64px;
  object-fit: contain;
}

.back-link {
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.back-link:hover,
.legal-content a:hover {
  color: var(--acid);
}

.legal-content {
  padding-top: clamp(42px, 8vw, 78px);
}

.legal-content .eyebrow {
  margin-bottom: 10px;
}

.legal-content h1 {
  margin-bottom: 42px;
  font-size: clamp(3rem, 9vw, 5.5rem);
}

.legal-section {
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.legal-section:first-of-type {
  border-top-color: var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-section h3 {
  margin: 22px 0 8px;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li,
.legal-note {
  color: #aab1ac;
  font-size: 0.92rem;
  line-height: 1.75;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-section a {
  color: var(--acid-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-card {
  display: grid;
  gap: 3px;
  padding: 20px;
  border-left: 2px solid var(--acid);
  background: var(--background-soft);
}

.contact-card p {
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  list-style: none;
}

.legal-note {
  margin-top: 35px;
  color: #6f7871;
  font-size: 0.76rem;
}

@media (max-width: 520px) {
  .legal-shell { width: min(calc(100% - 28px), 840px); }
  .legal-header { align-items: flex-start; }
  .legal-logo { width: 112px; height: 50px; }
  .back-link { margin-top: 15px; }
  .legal-content h1 { margin-bottom: 30px; }
}
