/* VPN-Hinweisseite — eigenständig, ohne Build-Schritt.
   Stil bewusst an die Login-Seite der GFU-Plattform angelehnt. */

:root {
  --panel: #ffffff;
  --text: #1c2433;
  --muted: #7a869a;
  --line: #e6e9f0;
  --brand: #1b75bb;
  --danger: #d64545;
  --radius: 10px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #00081f;
  color: var(--text);
  font-size: 14px;
}

/* ---- Bühne mit Hintergrundvideo (wie .login-screen) ---- */
.vpn-screen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #00081f; /* Navy-Fallback hinter dem Video */
  padding: 24px;
}

/* Formatfüllendes Hintergrundvideo (assets/Kontakt_1.mp4) hinter der Karte.
   Bis das Video lädt, deckt der Navy-Fallback von .vpn-screen die Fläche ab. */
.vpn-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* füllt den Viewport, Seitenverhältnis bleibt erhalten */
  pointer-events: none;
}

/* ---- Zentrale Hinweis-Karte ---- */
.vpn-card {
  position: relative;
  z-index: 1;
  width: 420px;
  max-width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 8, 31, 0.45);
}

.vpn-brand { margin-bottom: 22px; }
.brand-logo { display: block; width: 160px; max-width: 100%; height: auto; margin: 0 auto; }

.vpn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(27, 117, 187, 0.1);
  color: var(--brand);
}

.vpn-card h1 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.vpn-message {
  margin: 0 0 4px;
  color: #4a5568;
  line-height: 1.55;
  font-size: 15px;
}

.muted { color: var(--muted); }

/* ---- Schaltflächen (wie .btn / .btn-primary) ---- */
.btn {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { border-color: var(--brand); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: #155d96; }

.vpn-retry {
  width: 100%;
  margin-top: 24px;
  padding: 11px 14px;
  font-size: 15px;
}

.vpn-hint {
  margin: 16px 0 0;
  font-size: 13px;
}

@media (max-width: 600px) {
  .vpn-card { padding: 26px 20px; }
  .brand-logo { width: 130px; }
  .vpn-card h1 { font-size: 20px; }
}
