/* ==========================================================================
   NEGATIVE BLUE FILMS — Wartungsseite
   ========================================================================== */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: linear-gradient(180deg, #0D1B2A 0%, #0A0A0A 100%);
  background-attachment: fixed;
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ----- Aurora background glow, matching the main site ----- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 820px at 6% 8%, rgba(30, 144, 255, 0.30) 0%, rgba(30, 144, 255, 0.14) 35%, rgba(30, 144, 255, 0.05) 58%, transparent 78%),
    radial-gradient(circle 860px at 96% 90%, rgba(30, 144, 255, 0.24) 0%, rgba(30, 144, 255, 0.11) 35%, rgba(30, 144, 255, 0.04) 58%, transparent 78%);
  filter: blur(50px);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 3px; }

/* ----- Variables (same tokens as the main site) ----- */
:root {
  --color-bg: #0A0A0A;
  --color-bg-start: #0D1B2A;
  --color-blue: #1E90FF;
  --color-white: #FFFFFF;
  --color-gray: #A0A0A0;

  --glass-bg: rgba(110, 170, 255, 0.13);
  --glass-border: rgba(255, 255, 255, 0.14);
}

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.accent-text {
  background: linear-gradient(90deg, #6FC3FF 0%, #1E90FF 55%, #0B5ED7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.break--mobile { display: none; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}
.maintenance__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maintenance__logo { height: 56px; width: auto; margin-bottom: 40px; }

/* ----- Status badge: the first thing a visitor must understand ----- */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  margin-bottom: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.status-badge__text {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  background-image:
    linear-gradient(100deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(#fff, #fff);
  background-size: 250% 100%, 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: status-shine 3.2s linear infinite;
}
/* Sweeps left to right across the letters, then holds (parked off-screen) for a pause before looping */
@keyframes status-shine {
  0% { background-position: -140% 0, 0 0; }
  45% { background-position: 140% 0, 0 0; }
  100% { background-position: 140% 0, 0 0; }
}

.maintenance__headline {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.maintenance__subtext {
  font-weight: 400;
  font-size: 18px;
  color: var(--color-gray);
  max-width: 560px;
  margin-bottom: 32px;
}

/* ----- Contact links ----- */
.maintenance__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
  margin-bottom: 48px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  color: var(--color-white);
  transition: color 0.2s ease;
}
.contact-link svg { width: 20px; height: 20px; color: var(--color-blue); flex-shrink: 0; }
.contact-link:hover { color: var(--color-blue); }

/* ==========================================================================
   SOCIAL ICONS (footer glass style, enlarged for a standalone page)
   ========================================================================== */
.maintenance__social { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.maintenance__social a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.maintenance__social a:hover { color: var(--color-blue); border-color: var(--color-blue); }
.maintenance__social svg { width: 24px; height: 24px; fill: currentColor; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 600px) {
  .break--mobile { display: block; }
  .maintenance__logo { height: 44px; margin-bottom: 32px; }
  .status-badge { padding: 12px 22px; margin-bottom: 32px; }
  .status-badge__text { font-size: 15px; }
  .maintenance__headline { font-size: 24px; }
  .maintenance__subtext { font-size: 16px; }
  .maintenance__contact { gap: 12px 20px; margin-bottom: 40px; }
  .contact-link { font-size: 15px; }
  .maintenance__social { gap: 14px; }
  .maintenance__social a { width: 46px; height: 46px; }
  .maintenance__social svg { width: 20px; height: 20px; }
}
