:root {
  --avaria-bg: #050814;
  --avaria-card: rgba(15, 23, 42, 0.72);
  --avaria-card-strong: rgba(18, 26, 48, 0.88);
  --avaria-border: rgba(190, 203, 255, 0.22);
  --avaria-border-strong: rgba(158, 215, 255, 0.45);
  --avaria-text: #eef5ff;
  --avaria-muted: #9fb0c8;
  --avaria-blue: #9ed7ff;
  --avaria-violet: #c8bcff;
  --avaria-pink: #ff9fd7;
  --avaria-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--avaria-text);
  background:
    radial-gradient(circle at top left, rgba(158, 215, 255, 0.20), transparent 30vw),
    radial-gradient(circle at 78% 12%, rgba(200, 188, 255, 0.20), transparent 28vw),
    radial-gradient(circle at 50% 100%, rgba(255, 159, 215, 0.10), transparent 34vw),
    linear-gradient(135deg, #050814 0%, #0b1022 50%, #111827 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 88%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.glass-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.72), rgba(30, 41, 59, 0.52));
  border: 1px solid var(--avaria-border);
  border-radius: 28px;
  box-shadow: var(--avaria-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.top-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--avaria-muted);
  font-weight: 800;
  font-size: 14px;
  transition: 0.18s ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(158, 215, 255, 0.12);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  align-items: center;
  padding: 70px 0 40px;
}

.hero-content {
  position: relative;
}

.hero-logo-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 135px;
  height: 135px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(158, 215, 255, 0.22));
}

.logo-glow {
  position: absolute;
  inset: 4px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.26), rgba(200, 188, 255, 0.26));
  filter: blur(24px);
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--avaria-blue);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  color: var(--avaria-muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--avaria-border);
  font-weight: 900;
  transition: 0.18s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  color: #07111f;
  box-shadow: 0 14px 30px rgba(158, 215, 255, 0.18);
}

.button.secondary {
  background: rgba(15, 23, 42, 0.72);
  color: var(--avaria-text);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-card {
  padding: 26px;
}

.hero-card h2 {
  font-size: 50px;
}

.progress-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.progress-line span {
  height: 8px;
  border-radius: 999px;
  background: rgba(190, 203, 255, 0.18);
}

.progress-line span.active {
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  box-shadow: 0 0 18px rgba(158, 215, 255, 0.35);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin: 28px 0;
}

.large-card {
  padding: 32px;
}

.accent-card {
  border-color: var(--avaria-border-strong);
}

.content-section {
  padding: 76px 0 10px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  padding: 26px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.20), rgba(200, 188, 255, 0.20));
  color: white;
  font-weight: 950;
  border: 1px solid var(--avaria-border);
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-card {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--avaria-border);
  color: white;
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.guideline-list {
  display: grid;
  gap: 14px;
}

.guideline-card {
  padding: 24px;
}

.phase-status {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 12px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 999px;
}

.phase-status span {
  color: var(--avaria-muted);
  font-weight: 800;
}

.phase-status strong {
  color: white;
}

.phase-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.phase-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.phase-card.current {
  border-color: var(--avaria-border-strong);
  box-shadow:
    var(--avaria-shadow),
    0 0 34px rgba(158, 215, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phase-number {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 76px;
  line-height: 1;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.06);
}

.phase-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.22), rgba(200, 188, 255, 0.18));
  border: 1px solid rgba(158, 215, 255, 0.35);
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phase-badge.muted {
  background: rgba(15, 23, 42, 0.5);
  color: var(--avaria-muted);
}

.phase-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--avaria-muted);
  line-height: 1.8;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 76px;
  padding: 30px;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

@media (max-width: 920px) {
  .hero,
  .section-grid,
  .two-column,
  .phase-timeline,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .sticky-heading {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }

  .top-nav {
    top: 8px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-logo-wrap {
    width: 122px;
    height: 122px;
  }

  .hero-logo {
    width: 110px;
    height: 110px;
  }

  .large-card,
  .pillar,
  .guideline-card,
  .phase-card,
  .final-cta {
    padding: 22px;
  }

  .phase-status {
    border-radius: 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Version 2: übersichtlicher, herausstechender, Discord-fokussiert */
.hero-v2 {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: stretch;
  min-height: auto;
  padding: 56px 0 34px;
}

.hero-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
}

.hero-feature::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(158, 215, 255, 0.20), transparent 70%);
  pointer-events: none;
}

.hero-main h1 {
  max-width: 760px;
}

.hero-side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.status-card,
.highlight-card {
  padding: 26px;
}

.status-card h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.highlight-card {
  border-color: rgba(158, 215, 255, 0.36);
}

.highlight-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--avaria-blue);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}

.phase-mini {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.phase-mini span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.62);
  color: var(--avaria-muted);
  font-weight: 900;
}

.phase-mini span.active {
  color: #06101d;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  box-shadow: 0 0 24px rgba(158, 215, 255, 0.20);
}

.discord-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.discord-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(120deg, var(--avaria-blue), var(--avaria-violet), var(--avaria-pink), var(--avaria-blue));
  background-size: 220% 220%;
  animation: discordGlow 7s ease infinite;
}

.button-icon {
  margin-right: 9px;
  font-size: 12px;
}

@keyframes discordGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.focus-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 188, 255, 0.18), transparent 70%);
}

.focus-number {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.20), rgba(200, 188, 255, 0.24));
  border: 1px solid var(--avaria-border);
}

.compact-heading {
  margin-bottom: 18px;
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
}

.value-strip span {
  flex: 1 1 190px;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  font-weight: 950;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(190, 203, 255, 0.18);
}

.guidelines-section {
  display: grid;
  gap: 18px;
}

.guidelines-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px;
}

.guidelines-hero h2 {
  margin-bottom: 10px;
}

.guidelines-hero p {
  margin-bottom: 0;
  max-width: 720px;
}

.guideline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.guideline-card {
  min-height: 190px;
  padding: 22px;
}

.phase-overview {
  display: flex;
  justify-content: center;
}

.phase-timeline-v2 .phase-card {
  min-height: 360px;
}

.phase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.phase-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--avaria-text);
  background: rgba(158, 215, 255, 0.10);
  border: 1px solid rgba(190, 203, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.final-cta p {
  margin: 8px 0 0;
}

@media (max-width: 1040px) {
  .hero-v2,
  .focus-grid,
  .guideline-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .guidelines-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero-side {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    padding: 26px;
  }

  .hero-actions,
  .final-cta {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .value-strip span {
    flex-basis: 100%;
  }
}


/* Version 3: Adminbereich, Creator-Fokus und Maintenance */
.value-strip {
  align-items: stretch;
}

.value-strip span {
  display: grid;
  place-items: center;
  min-height: 66px;
  line-height: 1.25;
  text-align: center;
}

.no-button {
  display: block;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.creator-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.creator-card.is-live {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow:
    var(--avaria-shadow),
    0 0 28px rgba(239, 68, 68, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.creator-top {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.creator-top img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(190, 203, 255, 0.28);
  background: rgba(15, 23, 42, 0.6);
}

.creator-top h3 {
  margin: 0 0 4px;
}

.creator-top a {
  color: var(--avaria-muted);
  font-weight: 800;
}

.live-pill {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--avaria-muted);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(190, 203, 255, 0.18);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.live-pill.live {
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.55);
  background: rgba(127, 29, 29, 0.42);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.18);
}

.creator-role {
  display: block;
  margin-bottom: 10px;
  color: white;
}

.stream-info {
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(190, 203, 255, 0.16);
}

.stream-info span,
.stream-info small {
  display: block;
}

.stream-info span {
  color: #fff;
  font-weight: 900;
}

.stream-info small {
  margin-top: 3px;
  color: var(--avaria-muted);
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.creator-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(158, 215, 255, 0.10);
  border: 1px solid rgba(190, 203, 255, 0.15);
  color: var(--avaria-text);
  font-size: 12px;
  font-weight: 900;
}

.empty-creators {
  padding: 28px;
  text-align: center;
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.maintenance-card {
  width: min(720px, calc(100vw - 32px));
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
}

.maintenance-card img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 16px 40px rgba(158, 215, 255, 0.22));
}

.maintenance-card h1 {
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: -0.07em;
  margin-bottom: 16px;
}

.admin-shell {
  padding-bottom: 80px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.admin-card {
  padding: 26px;
  margin-top: 18px;
}

.auth-card {
  max-width: 620px;
  margin-inline: auto;
}

.admin-card h1,
.admin-card h2 {
  margin-bottom: 16px;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.admin-form,
.admin-creator-item {
  display: grid;
  gap: 14px;
}

.admin-form label,
.admin-creator-item label {
  display: grid;
  gap: 7px;
  color: var(--avaria-muted);
  font-weight: 850;
}

.admin-form input,
.admin-form textarea,
.admin-creator-item input,
.admin-creator-item textarea {
  width: 100%;
  border: 1px solid rgba(190, 203, 255, 0.20);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--avaria-text);
  background: rgba(2, 6, 23, 0.44);
  outline: none;
  font: inherit;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-creator-item input:focus,
.admin-creator-item textarea:focus {
  border-color: rgba(158, 215, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(158, 215, 255, 0.08);
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
}

.checkbox-row input {
  width: auto !important;
}

.admin-message {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 900;
}

.admin-message.success {
  color: #dcfce7;
  background: rgba(22, 101, 52, 0.28);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.admin-message.error,
.setup-warning {
  color: #fee2e2;
  background: rgba(127, 29, 29, 0.32);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.setup-warning {
  padding: 16px;
  margin: 20px 0;
  border-radius: 18px;
}

.admin-creator-list {
  display: grid;
  gap: 16px;
}

.admin-creator-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.26);
  border: 1px solid rgba(190, 203, 255, 0.15);
}

.admin-actions,
.delete-form {
  margin-top: 10px;
}

.danger-button {
  border-color: rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

@media (max-width: 1040px) {
  .creator-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .creator-top {
    grid-template-columns: 56px 1fr;
  }

  .live-pill {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .admin-card-header {
    flex-direction: column;
  }
}


/* Version 4: bessere Textformatierung, kompakter Admin, Creator Highlights */
.glass-card,
.creator-card,
.guideline-card,
.phase-card,
.focus-card,
.admin-card {
  overflow-wrap: anywhere;
}

p,
li,
span,
strong,
a,
h1,
h2,
h3 {
  max-width: 100%;
}

.value-strip span {
  align-content: center;
  justify-content: center;
  place-items: center;
  text-align: center;
  text-wrap: balance;
}

.section-divider {
  height: 1px;
  margin: 28px auto 0;
  width: min(820px, 80%);
  background: linear-gradient(90deg, transparent, rgba(158, 215, 255, 0.38), rgba(200, 188, 255, 0.28), transparent);
}

.creator-grid {
  position: relative;
}

.creator-grid::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(158, 215, 255, 0.12), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(200, 188, 255, 0.10), transparent 34%);
}

.creator-card {
  transform: translateZ(0);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.creator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 215, 255, 0.46);
  box-shadow:
    var(--avaria-shadow),
    0 0 28px rgba(158, 215, 255, 0.12);
}

.creator-card p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-grid {
  align-items: stretch;
}

.creator-admin-card .admin-card-header {
  align-items: center;
}

.compact-creator-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.compact-creator-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.30);
  border: 1px solid rgba(190, 203, 255, 0.15);
}

.compact-creator-item img {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(190, 203, 255, 0.20);
}

.compact-creator-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.compact-creator-main strong {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compact-creator-main span {
  color: var(--avaria-muted);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-modal.hidden {
  display: none !important;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(12px);
}

.admin-modal-card {
  position: relative;
  width: min(680px, 100%);
  padding: 28px;
}

.admin-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.creator-search-wrap {
  position: relative;
}

.creator-suggestions {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  margin-top: 8px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.50);
  border: 1px solid rgba(190, 203, 255, 0.18);
}

.creator-suggestions.hidden {
  display: none;
}

.creator-suggestion-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 9px 10px;
  border: 1px solid rgba(190, 203, 255, 0.14);
  border-radius: 15px;
  color: var(--avaria-text);
  background: rgba(15, 23, 42, 0.72);
  text-align: left;
  cursor: pointer;
}

.creator-suggestion-item:hover {
  border-color: rgba(158, 215, 255, 0.52);
}

.creator-suggestion-item img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.creator-suggestion-item span {
  display: grid;
  gap: 3px;
}

.creator-suggestion-item small,
.suggestion-empty {
  color: var(--avaria-muted);
}

.suggestion-empty {
  padding: 12px;
}

@media (max-width: 900px) {
  .compact-creator-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .compact-creator-item .live-pill,
  .compact-creator-item .button,
  .compact-creator-item form {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .admin-modal-card {
    padding: 24px;
  }

  .admin-modal-close {
    position: static;
    margin-bottom: 16px;
  }
}


/* Version 5: Switch, Follower-Suche, bessere Proportionen und Creator-Carousel */
.header-logout-form {
  display: inline-flex;
  margin: 0;
}

.header-logout-btn {
  appearance: none;
  border: 1px solid rgba(190, 203, 255, 0.20);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--avaria-muted);
  background: rgba(15, 23, 42, 0.62);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.header-logout-btn:hover {
  color: white;
  border-color: rgba(158, 215, 255, 0.48);
}

.balanced-auth-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  text-align: left;
}

.balanced-auth-card > img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 12px 34px rgba(158, 215, 255, 0.20));
}

.balanced-auth-card h1 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.055em;
  margin-bottom: 10px;
}

.balanced-auth-card p {
  max-width: 560px;
}

.maintenance-card.balanced-auth-card {
  width: min(780px, calc(100vw - 32px));
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(190, 203, 255, 0.18);
  background: rgba(2, 6, 23, 0.30);
  color: var(--avaria-text);
  font-weight: 900;
  cursor: pointer;
}

.switch-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-row i {
  position: relative;
  width: 58px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(190, 203, 255, 0.25);
  transition: 0.18s ease;
}

.switch-row i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--avaria-muted);
  transition: 0.18s ease;
}

.switch-row input:checked + i {
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.38), rgba(200, 188, 255, 0.34));
  border-color: rgba(158, 215, 255, 0.55);
  box-shadow: 0 0 18px rgba(158, 215, 255, 0.14);
}

.switch-row input:checked + i::after {
  left: 30px;
  background: white;
}

.creator-suggestion-item {
  grid-template-columns: 48px 1fr auto;
}

.creator-suggestion-item.is-live {
  border-color: rgba(239, 68, 68, 0.58);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.12);
}

.creator-suggestion-item em {
  align-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.42);
  border: 1px solid rgba(239, 68, 68, 0.55);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0 14px;
}

.creator-carousel-wrap::before,
.creator-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 10px;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.creator-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 8, 20, 0.0), transparent);
}

.creator-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 8, 20, 0.0), transparent);
}

.creator-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  gap: 18px;
  padding: 14px 54px 22px;
  scrollbar-width: thin;
}

.creator-carousel .creator-card {
  scroll-snap-align: center;
  min-height: 360px;
}

.creator-carousel .creator-card p {
  text-align: left;
}

.creator-grid.creator-carousel::before {
  display: none;
}

@media (max-width: 720px) {
  .balanced-auth-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .balanced-auth-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .creator-carousel {
    grid-auto-columns: minmax(280px, 86vw);
    padding-left: 24px;
    padding-right: 24px;
  }

  .creator-carousel-wrap::before,
  .creator-carousel-wrap::after {
    width: 36px;
  }
}


/* Version 6: Auto-Carousel, stärkere Creator-Karten, Auto-Maintenance */
.switch-hint {
  margin: -4px 0 0;
  font-size: 13px;
  color: var(--avaria-muted);
}

.maintenance-form {
  gap: 10px;
}

.creator-carousel-wrap {
  border-radius: 34px;
}

.creator-carousel {
  width: max-content;
  overflow: visible;
  scrollbar-width: none;
  animation: creatorAutoScroll 44s linear infinite;
  will-change: transform;
}

.creator-carousel::-webkit-scrollbar {
  display: none;
}

.creator-carousel-wrap:hover .creator-carousel {
  animation-play-state: paused;
}

@keyframes creatorAutoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50%));
  }
}

.creator-card {
  text-decoration: none;
  color: inherit;
  border-color: rgba(190, 203, 255, 0.24);
  background:
    radial-gradient(circle at 20% 0%, rgba(158, 215, 255, 0.16), transparent 36%),
    radial-gradient(circle at 100% 20%, rgba(255, 159, 215, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.80), rgba(30, 41, 59, 0.58));
}

.creator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.52), rgba(255, 159, 215, 0.30), rgba(200, 188, 255, 0.42));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}

.creator-card::after {
  content: "Twitch öffnen →";
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(238, 245, 255, 0.78);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.creator-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 159, 215, 0.44);
  box-shadow:
    var(--avaria-shadow),
    0 0 34px rgba(158, 215, 255, 0.15),
    0 0 34px rgba(255, 159, 215, 0.10);
}

.creator-top {
  grid-template-columns: 72px 1fr auto;
}

.creator-top img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.creator-top h3 {
  font-size: 24px;
  line-height: 1.05;
}

.creator-login {
  color: var(--avaria-muted);
  font-weight: 850;
}

.creator-role {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: rgba(158, 215, 255, 0.11);
  border: 1px solid rgba(190, 203, 255, 0.18);
}

.creator-card.is-live {
  background:
    radial-gradient(circle at 15% 0%, rgba(239, 68, 68, 0.18), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(255, 159, 215, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.62));
}

.creator-card.is-live::before {
  opacity: 0.78;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.62), rgba(255, 159, 215, 0.42), rgba(158, 215, 255, 0.32));
}

.creator-carousel .creator-card p {
  padding-bottom: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .creator-carousel {
    animation: none;
    overflow-x: auto;
    width: auto;
  }
}

@media (max-width: 720px) {
  .creator-carousel {
    animation-duration: 34s;
  }
}


/* Version 7: Random Creator, transparente Fades und Live-Bereich */
.creator-carousel-wrap::before {
  background: linear-gradient(90deg, rgba(5, 8, 20, 0.0), rgba(5, 8, 20, 0.0)) !important;
  backdrop-filter: none;
}

.creator-carousel-wrap::after {
  background: linear-gradient(270deg, rgba(5, 8, 20, 0.0), rgba(5, 8, 20, 0.0)) !important;
  backdrop-filter: none;
}

.live-creators-section {
  margin-bottom: 24px;
}

.live-creators-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.live-creators-heading strong {
  color: white;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.035em;
}

.live-creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.live-creator-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  border-color: rgba(239, 68, 68, 0.46);
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.20), transparent 42%),
    radial-gradient(circle at 100% 10%, rgba(255, 159, 215, 0.16), transparent 40%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.62));
  box-shadow:
    var(--avaria-shadow),
    0 0 24px rgba(239, 68, 68, 0.10);
}

.live-creator-card img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.live-creator-card h3 {
  margin: 8px 0 3px;
  font-size: 22px;
  color: white;
}

.live-creator-card p {
  margin: 0;
  color: var(--avaria-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-creator-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.62);
}

@media (max-width: 720px) {
  .live-creators-heading {
    display: block;
  }

  .live-creators-heading strong {
    display: block;
    margin-top: 6px;
  }
}


/* Version 8: Creator-Fix und Performance */
.creator-carousel {
  min-width: max-content;
}

.creator-carousel-wrap {
  min-height: 420px;
}

.creator-card {
  display: block;
}

.creator-card,
.live-creator-card {
  overflow-wrap: anywhere;
}


/* Version 9: Live separat, transparente Karten-Fades, schnellere Suche */
.creator-carousel-wrap {
  mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
}

.creator-carousel-wrap::before,
.creator-carousel-wrap::after {
  display: none !important;
}

.live-creators-heading {
  justify-content: flex-start;
}

.live-creators-heading strong:empty {
  display: none;
}

.live-creator-card {
  grid-template-columns: 72px minmax(0, 1fr) auto;
}

.live-creator-main {
  min-width: 0;
}

.live-creator-main small {
  display: block;
  margin-top: 5px;
  color: var(--avaria-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.watch-button {
  align-self: center;
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  color: #08111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  box-shadow: 0 10px 24px rgba(158, 215, 255, 0.18);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.creator-suggestion-item small:last-child {
  color: var(--avaria-blue);
}

@media (max-width: 720px) {
  .live-creator-card {
    grid-template-columns: 58px 1fr;
  }

  .watch-button {
    grid-column: 2;
    justify-self: start;
  }

  .creator-carousel-wrap {
    mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
  }
}


/* Version 10: weichere Creator-Fades und schönere Live-Karten */
.creator-carousel-wrap {
  position: relative;
  padding-top: 20px;
  padding-bottom: 36px;
}

.creator-carousel-wrap::before {
  display: block !important;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 0%, rgba(158, 215, 255, 0.13), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(255, 159, 215, 0.11), transparent 38%),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.38) 0%,
      rgba(15, 23, 42, 0.24) 48%,
      rgba(15, 23, 42, 0.00) 100%
    ) !important;
  mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
}

.creator-carousel-wrap::after {
  display: block !important;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.0) 0%, transparent 10%, transparent 90%, rgba(5, 8, 20, 0.0) 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.live-creators-section {
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.10), transparent 34%),
    radial-gradient(circle at 100% 10%, rgba(255, 159, 215, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.32), rgba(30, 41, 59, 0.18));
  border: 1px solid rgba(190, 203, 255, 0.10);
}

.live-creators-heading {
  margin-bottom: 16px;
}

.live-creators-grid {
  gap: 16px;
}

.live-creator-card {
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  overflow: hidden;
}

.live-creator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.60), rgba(255, 159, 215, 0.40), rgba(158, 215, 255, 0.24));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.live-creator-card img {
  width: 76px;
  height: 76px;
  border-radius: 22px;
}

.live-creator-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 4px;
}

.live-creator-title-row h3 {
  margin: 0;
  min-width: 0;
  font-size: 24px;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-creator-title-row .live-pill {
  flex: 0 0 auto;
  padding: 6px 10px;
  font-size: 11px;
}

.live-creator-main p {
  margin: 0 0 4px;
  color: var(--avaria-blue);
  font-weight: 900;
}

.live-creator-main small {
  max-width: 100%;
  color: rgba(238, 245, 255, 0.70);
}

.watch-button {
  position: relative;
  z-index: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.live-creator-card:hover .watch-button {
  transform: translateX(2px);
  box-shadow: 0 14px 30px rgba(158, 215, 255, 0.22);
}

@media (max-width: 720px) {
  .live-creator-card {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .live-creator-card img {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .live-creator-title-row {
    flex-wrap: wrap;
  }

  .watch-button {
    grid-column: 2;
  }
}


/* Version 11: Creator-Bereich komplett bereinigt */
#creators {
  position: relative;
}

#creators .section-heading {
  margin-bottom: 22px;
}

.live-creators-section {
  padding: 0 !important;
  margin: 8px 0 30px !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.live-creators-section::before,
.live-creators-section::after {
  display: none !important;
  content: none !important;
}

.live-creators-heading {
  margin-bottom: 14px !important;
}

.live-creators-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.live-creator-card {
  position: relative;
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr) auto !important;
  gap: 16px !important;
  align-items: center !important;
  min-height: 118px;
  padding: 18px !important;
  border-radius: 28px !important;
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.16), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255, 159, 215, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.80), rgba(30, 41, 59, 0.56)) !important;
  border: 1px solid rgba(239, 68, 68, 0.38) !important;
  overflow: hidden;
}

.live-creator-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 159, 215, 0.52) !important;
  box-shadow:
    var(--avaria-shadow),
    0 0 26px rgba(239, 68, 68, 0.12),
    0 0 28px rgba(255, 159, 215, 0.08);
}

.live-creator-card::before {
  opacity: 0.68 !important;
}

.live-creator-card img {
  width: 74px !important;
  height: 74px !important;
  border-radius: 22px !important;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 14px 26px rgba(0,0,0,0.26);
}

.live-creator-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 4px;
}

.live-creator-title-row h3 {
  margin: 0;
  min-width: 0;
  color: white;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-creator-main p {
  margin: 0 0 4px;
  color: var(--avaria-blue);
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-creator-main small {
  display: block;
  color: rgba(238,245,255,0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.watch-button {
  padding: 11px 15px !important;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(158, 215, 255, 0.16);
}

.creator-carousel-wrap {
  position: relative;
  overflow: hidden !important;
  border-radius: 34px;
  padding: 18px 0 34px !important;
  min-height: 410px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.10) 58%, rgba(15, 23, 42, 0.00) 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
}

.creator-carousel-wrap::before,
.creator-carousel-wrap::after,
.creator-grid.creator-carousel::before,
.creator-grid.creator-carousel::after {
  display: none !important;
  content: none !important;
}

.creator-carousel {
  display: flex !important;
  gap: 18px !important;
  width: max-content !important;
  min-width: max-content !important;
  overflow: visible !important;
  padding: 10px 0 18px !important;
  animation: creatorAutoScrollV11 65s linear infinite !important;
  will-change: transform;
}

.creator-carousel:hover {
  animation-play-state: paused !important;
}

.creator-carousel .creator-card {
  flex: 0 0 360px !important;
  width: 360px !important;
  min-height: 350px;
  scroll-snap-align: none !important;
}

@keyframes creatorAutoScrollV11 {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-33.333%, 0, 0);
  }
}

@media (max-width: 920px) {
  .live-creators-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .live-creator-card {
    grid-template-columns: 62px minmax(0, 1fr) !important;
  }

  .watch-button {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .creator-carousel {
    animation-duration: 48s !important;
  }

  .creator-carousel .creator-card {
    flex-basis: 300px !important;
    width: 300px !important;
  }

  .creator-carousel-wrap {
    mask-image: linear-gradient(90deg, transparent 0, black 11%, black 89%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 11%, black 89%, transparent 100%);
  }
}


/* Version 12: bedingter Scroll, Admin-Switches und schöne Bestätigung */
.creator-carousel-wrap.no-scroll-needed {
  mask-image: none !important;
  -webkit-mask-image: none !important;
  overflow: visible !important;
  min-height: auto !important;
  padding: 12px 0 18px !important;
}

.creator-static-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  animation: none !important;
}

.creator-static-grid .creator-card {
  width: auto !important;
  min-height: 330px;
}

.creator-card .creator-top h3 {
  font-size: 20px !important;
  line-height: 1.08;
}

.creator-card .creator-login {
  font-size: 13px;
}

.creator-active-switch {
  margin-top: 2px;
}

.confirm-modal-card {
  width: min(520px, 100%);
}

.confirm-modal-card h2 {
  margin-bottom: 10px;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.confirm-actions form {
  margin: 0;
}

.delete-creator-button {
  justify-self: end;
}

.creator-suggestion-item span {
  min-width: 0;
}

.creator-suggestion-item strong,
.creator-suggestion-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .delete-creator-button {
    grid-column: 2;
    justify-self: start;
  }
}


/* Version 13: Admin Suche, PRG und Phasen-Settings */
.phase-settings-card {
  margin-top: 18px;
}

.phase-admin-top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.7fr);
  gap: 14px;
  align-items: end;
}

.phase-admin-top select {
  width: 100%;
  border: 1px solid rgba(190, 203, 255, 0.20);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--avaria-text);
  background: rgba(2, 6, 23, 0.44);
  outline: none;
  font: inherit;
}

.phase-edit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.phase-edit-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.26);
  border: 1px solid rgba(190, 203, 255, 0.15);
}

.phase-edit-card strong {
  color: white;
  font-size: 18px;
}

.phase-badge.done {
  color: #dcfce7;
  background: rgba(22, 101, 52, 0.28);
  border-color: rgba(34, 197, 94, 0.35);
}

.phase-card.done {
  opacity: 0.86;
}

.creator-suggestion-item {
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.creator-suggestion-item:hover {
  transform: translateY(-1px);
}

.creator-suggestion-item .suggestion-followers {
  color: var(--avaria-blue);
  font-weight: 850;
}

.creator-suggestion-item.is-live .suggestion-followers {
  color: #fecaca;
}

@media (max-width: 980px) {
  .phase-admin-top,
  .phase-edit-grid {
    grid-template-columns: 1fr;
  }
}


/* Version 14: Phasenbuttons, einklappbare Settings, Creator-Auswahlvorschau */
.phase-mini span.done {
  color: #dcfce7;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(22, 101, 52, 0.16);
}

.admin-collapsible summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.admin-collapsible summary::-webkit-details-marker {
  display: none;
}

.admin-collapsible summary h2 {
  margin-bottom: 6px;
}

.admin-collapsible summary p {
  margin-bottom: 0;
}

.collapse-indicator {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--avaria-muted);
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(190, 203, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
}

.admin-collapsible[open] .collapse-indicator {
  color: white;
}

.phase-admin-form {
  margin-top: 22px;
}

.phase-button-select {
  display: grid;
  gap: 7px;
  color: var(--avaria-muted);
  font-weight: 850;
}

.phase-button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.phase-choice-btn {
  min-width: 48px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(190, 203, 255, 0.20);
  color: var(--avaria-text);
  background: rgba(2, 6, 23, 0.42);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: 0.18s ease;
}

.phase-choice-btn.active {
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  border-color: rgba(158, 215, 255, 0.70);
  box-shadow: 0 10px 24px rgba(158, 215, 255, 0.16);
}

.phase-choice-btn.done-choice {
  min-width: 98px;
}

.selected-creator-preview {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.12), transparent 42%),
    rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(158, 215, 255, 0.28);
}

.selected-creator-preview.hidden,
.creator-search-wrap.hidden {
  display: none !important;
}

.selected-creator-preview img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(190, 203, 255, 0.20);
}

.selected-creator-preview div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.selected-creator-preview strong,
.selected-creator-preview span,
.selected-creator-preview small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-creator-preview strong {
  color: white;
}

.selected-creator-preview span {
  color: var(--avaria-muted);
}

.selected-creator-preview small {
  color: var(--avaria-blue);
}

.icon-edit-button {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0 !important;
  font-size: 18px;
}

.creator-suggestion-item small:nth-child(4) {
  display: none;
}

@media (max-width: 720px) {
  .admin-collapsible summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .selected-creator-preview {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .icon-edit-button {
    grid-column: 2;
    width: fit-content;
    min-width: 42px;
  }
}


/* Version 15: schöner einklappbare Phaseneinstellungen */
.admin-collapsible summary {
  position: relative;
  padding-right: 58px;
}

.collapse-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.collapse-indicator::after {
  content: "⌄";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  box-shadow: 0 8px 18px rgba(158, 215, 255, 0.16);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  transition: transform 0.18s ease;
}

.admin-collapsible[open] .collapse-indicator::after {
  transform: rotate(180deg);
}

.admin-collapsible:not([open]) .collapse-indicator {
  color: var(--avaria-text);
}

.admin-collapsible:not([open]) summary {
  margin-bottom: 0;
}

.admin-collapsible[open] summary {
  margin-bottom: 18px;
}

@media (max-width: 720px) {
  .admin-collapsible summary {
    padding-right: 0;
  }
}


/* Version 16: Social Media und Discord Status */
.status-social-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  margin: 10px 0 36px;
}

.discord-status,
.social-links-card {
  padding: 26px;
}

.discord-status {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.15), transparent 40%),
    radial-gradient(circle at 100% 20%, rgba(200, 188, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.72), rgba(30, 41, 59, 0.52));
}

.discord-status h2,
.social-links-card h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.discord-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.discord-stat {
  display: grid;
  gap: 4px;
  min-height: 94px;
  place-items: center;
  text-align: center;
  padding: 14px 10px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.32);
  border: 1px solid rgba(190, 203, 255, 0.16);
}

.discord-stat strong {
  color: white;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.discord-stat span {
  color: var(--avaria-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  font-weight: 950;
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid rgba(190, 203, 255, 0.18);
  transition: 0.18s ease;
}

.social-link-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 159, 215, 0.48);
  box-shadow: 0 12px 24px rgba(158, 215, 255, 0.10);
}

.social-link-pill.twitch,
.social-link-pill.instagram {
  background: linear-gradient(135deg, rgba(200, 188, 255, 0.20), rgba(255, 159, 215, 0.14));
}

.social-link-pill.youtube {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.24), rgba(255, 159, 215, 0.12));
}

.social-admin-form,
.discord-stats-form {
  margin-top: 18px;
}

.social-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 12px;
  align-items: end;
  padding: 12px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.22);
  border: 1px solid rgba(190, 203, 255, 0.12);
}

.mini-switch {
  min-height: 48px;
}

.stats-input-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 980px) {
  .status-social-section,
  .discord-status,
  .social-admin-row,
  .stats-input-grid {
    grid-template-columns: 1fr;
  }
}


/* Version 17: Discord API Status volle Breite + sichtbare Socials */
.status-social-section {
  grid-template-columns: 1fr !important;
  gap: 18px;
  margin-top: 18px;
}

.discord-status {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr) !important;
  width: 100%;
  min-height: 180px;
  padding: clamp(24px, 4vw, 38px);
}

.discord-status-title {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.discord-status-title img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 26px;
  object-fit: cover;
  border: 1px solid rgba(190, 203, 255, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.discord-status-title h2 {
  margin-bottom: 8px;
}

.discord-status-title p {
  margin: 0;
}

.discord-stat-grid {
  gap: 16px;
}

.discord-stat {
  min-height: 116px;
  background:
    radial-gradient(circle at 20% 0%, rgba(158, 215, 255, 0.13), transparent 42%),
    rgba(2, 6, 23, 0.34);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--avaria-text);
  background:
    linear-gradient(135deg, rgba(158, 215, 255, 0.14), rgba(255, 159, 215, 0.10)),
    rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(190, 203, 255, 0.18);
  font-size: 13px;
  font-weight: 950;
  transition: 0.18s ease;
}

.hero-social-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 159, 215, 0.44);
  box-shadow: 0 12px 24px rgba(158, 215, 255, 0.10);
}

.social-links-card {
  width: 100%;
}

.social-link-list {
  justify-content: center;
}

@media (max-width: 980px) {
  .discord-status {
    grid-template-columns: 1fr !important;
  }

  .discord-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .discord-status-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .discord-stat-grid {
    grid-template-columns: 1fr;
  }
}


/* Version 18: Social Showcase, Admin bereinigt, Phasen dauerhaft offen */
.admin-collapsible summary {
  cursor: default;
}

.admin-collapsible .collapse-indicator {
  display: none !important;
}

.phase-settings-card details {
  display: block;
}

.status-social-section {
  display: block !important;
}

.discord-status {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr) !important;
}

.social-showcase-section {
  margin: 34px 0 54px;
}

.social-showcase-heading {
  margin-bottom: 20px;
}

.social-showcase-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 14px;
}

.social-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  border-color: rgba(190, 203, 255, 0.20);
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.16), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255, 159, 215, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.76), rgba(30, 41, 59, 0.54));
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.social-showcase-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 68%);
  pointer-events: none;
}

.social-showcase-card span {
  color: white;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.social-showcase-card strong {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  font-size: 13px;
  font-weight: 950;
}

.social-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 159, 215, 0.46);
  box-shadow:
    var(--avaria-shadow),
    0 0 28px rgba(158, 215, 255, 0.12),
    0 0 24px rgba(255, 159, 215, 0.08);
}

.social-showcase-card.youtube {
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.16), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255, 159, 215, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.76), rgba(30, 41, 59, 0.54));
}

.social-showcase-card.twitch,
.social-showcase-card.instagram {
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 188, 255, 0.18), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255, 159, 215, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.76), rgba(30, 41, 59, 0.54));
}

@media (max-width: 980px) {
  .discord-status {
    grid-template-columns: 1fr !important;
  }
}


/* Version 19: Phasen immer offen, Social Admin vollbreit, Socials im Hero */
.admin-static-heading h2 {
  margin-bottom: 6px;
}

.admin-static-heading p {
  margin-bottom: 0;
}

.phase-settings-card .phase-admin-form {
  margin-top: 22px;
}

.social-settings-wide {
  width: 100%;
  margin-top: 18px;
}

.social-admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.social-settings-wide .social-admin-row {
  grid-template-columns: minmax(0, 1fr) 180px;
}

.hero-v2 {
  position: relative;
}

.hero-corner-socials {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  max-width: min(520px, 46%);
}

.hero-corner-social-card {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--avaria-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(158, 215, 255, 0.16), rgba(255, 159, 215, 0.12)),
    rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(190, 203, 255, 0.24);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hero-corner-social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 159, 215, 0.50);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    0 0 20px rgba(158, 215, 255, 0.10);
}

.hero-corner-social-card.youtube {
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.22), rgba(255, 159, 215, 0.12)),
    rgba(15, 23, 42, 0.68);
}

.hero-corner-social-card.twitch,
.hero-corner-social-card.instagram {
  background:
    linear-gradient(135deg, rgba(200, 188, 255, 0.22), rgba(255, 159, 215, 0.13)),
    rgba(15, 23, 42, 0.68);
}

.social-showcase-section {
  display: none !important;
}

@media (max-width: 1040px) {
  .hero-corner-socials {
    position: static;
    grid-column: 1 / -1;
    order: -1;
    max-width: 100%;
    justify-content: flex-start;
    margin-bottom: -16px;
  }
}

@media (max-width: 720px) {
  .social-settings-wide .social-admin-row {
    grid-template-columns: 1fr;
  }

  .hero-corner-socials {
    margin-bottom: 0;
  }
}


/* Version 20: Social Panels im Hero-Container + Bot-Abzug bei Online */
.hero-feature {
  position: relative;
  padding-top: clamp(76px, 7vw, 96px);
}

.hero-feature .hero-corner-socials {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 6;
  max-width: calc(100% - 36px);
  justify-content: flex-end;
  margin: 0 !important;
}

.hero-feature .hero-corner-social-card {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .hero-feature .hero-corner-socials {
    position: static !important;
    max-width: 100%;
    justify-content: flex-start;
    margin: 0 0 22px !important;
  }

  .hero-feature {
    padding-top: clamp(30px, 5vw, 58px);
  }
}


/* Version 21: Optimierung, Tags, Spotlight, Animationen */
.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-pending.revealed {
  opacity: 1;
  transform: translateY(0);
}

.content-section,
.status-social-section,
.spotlight-section,
.social-showcase-section {
  position: relative;
}

.content-section::before,
.status-social-section::before,
.spotlight-section::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: min(760px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(158, 215, 255, 0.22), rgba(255, 159, 215, 0.16), transparent);
  pointer-events: none;
}

.toast-message {
  position: sticky;
  top: 86px;
  z-index: 100;
  animation: toastIn 0.25s ease both, toastSoftPulse 3.4s ease 0.25s both;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastSoftPulse {
  0%, 100% { filter: saturate(1); }
  35% { filter: saturate(1.25); }
}

.tag-picker {
  display: grid;
  gap: 9px;
  color: var(--avaria-muted);
  font-weight: 850;
}

.tag-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-picker-grid label {
  display: inline-flex !important;
  cursor: pointer;
}

.tag-picker-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tag-picker-grid span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--avaria-muted);
  background: rgba(2, 6, 23, 0.32);
  border: 1px solid rgba(190, 203, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
  transition: 0.15s ease;
}

.tag-picker-grid input:checked + span {
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  border-color: rgba(158, 215, 255, 0.64);
}

.phase-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(190, 203, 255, 0.12);
  margin-top: 18px;
}

.phase-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--avaria-blue), var(--avaria-violet), var(--avaria-pink));
  box-shadow: 0 0 18px rgba(158, 215, 255, 0.20);
}

.phase-progress-label,
.phase-range-value {
  display: block;
  margin-top: 6px;
  color: var(--avaria-muted);
  font-size: 12px;
  font-weight: 850;
}

.phase-edit-card input[type="range"] {
  padding: 0;
  accent-color: #9ed7ff;
}

.spotlight-settings-card {
  margin-top: 18px;
}

.spotlight-admin-form select {
  width: 100%;
  border: 1px solid rgba(190, 203, 255, 0.20);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--avaria-text);
  background: rgba(2, 6, 23, 0.44);
  outline: none;
  font: inherit;
}

.spotlight-section {
  padding: 50px 0 10px;
}

.spotlight-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  gap: 18px;
  padding: 22px;
  border-color: rgba(239, 68, 68, 0.34);
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.14), transparent 42%),
    radial-gradient(circle at 100% 10%, rgba(255, 159, 215, 0.14), transparent 40%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.52));
}

.spotlight-info {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start;
}

.spotlight-info img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(190, 203, 255, 0.22);
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
}

.spotlight-info h3 {
  margin: 10px 0 4px;
  color: white;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.055em;
}

.spotlight-info small {
  display: block;
  margin: 4px 0 18px;
  color: rgba(238,245,255,0.72);
  line-height: 1.5;
}

.spotlight-embed {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(190, 203, 255, 0.18);
  background: rgba(2, 6, 23, 0.50);
}

.spotlight-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-corner-social-card span,
.social-link-pill::first-letter {
  font-weight: 950;
}

.hero-corner-social-card span {
  font-size: 16px;
}

.social-showcase-card span:first-child {
  font-size: 28px;
}

.creator-card {
  animation: cardFloatIn 0.45s ease both;
}

@keyframes cardFloatIn {
  from { opacity: 0; transform: translateY(8px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .spotlight-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .spotlight-info {
    grid-template-columns: 1fr;
  }
}


/* Version 22: robuste Social SVG Icons + freie Spotlight-Suche */
.hero-corner-social-card .social-icon,
.social-showcase-card .social-icon {
  display: inline-grid;
  place-items: center;
}

.hero-corner-social-card svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.social-showcase-card svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}

.spotlight-embed iframe[src=""],
.spotlight-embed iframe:not([src]) {
  display: none;
}

.spotlight-admin-form .creator-search-wrap {
  position: relative;
}


/* Version 23: größere Social Icons + Spotlight Live Banner */
.hero-corner-social-card {
  min-height: 46px !important;
  min-width: 46px !important;
  padding: 0 14px !important;
}

.hero-corner-social-card svg {
  width: 24px !important;
  height: 24px !important;
}

.social-showcase-card svg {
  width: 42px !important;
  height: 42px !important;
}

.spotlight-section {
  padding: 22px 0 34px !important;
}

.spotlight-live-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(255, 159, 215, 0.52);
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.25), transparent 38%),
    radial-gradient(circle at 92% 0%, rgba(255, 159, 215, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(158, 215, 255, 0.22), rgba(200, 188, 255, 0.18), rgba(255, 159, 215, 0.18)),
    rgba(15, 23, 42, 0.84);
  box-shadow:
    var(--avaria-shadow),
    0 0 42px rgba(158, 215, 255, 0.16),
    0 0 42px rgba(255, 159, 215, 0.12);
}

.spotlight-live-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.8), rgba(200, 188, 255, 0.48), rgba(255, 159, 215, 0.72));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.spotlight-live-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
}

.spotlight-live-avatar-wrap img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.spotlight-live-dot {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  padding: 6px 11px;
  border-radius: 999px;
  color: #fee2e2;
  background: rgba(127, 29, 29, 0.74);
  border: 1px solid rgba(239, 68, 68, 0.62);
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.28);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spotlight-live-content {
  min-width: 0;
}

.spotlight-live-content h2 {
  margin-bottom: 6px;
  font-size: clamp(34px, 5vw, 62px);
  color: white;
}

.spotlight-live-content p {
  margin-bottom: 4px;
  color: #07111f;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight-live-content small {
  display: block;
  max-width: 760px;
  color: rgba(238, 245, 255, 0.76);
  line-height: 1.5;
}

.spotlight-live-button {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  box-shadow:
    0 18px 34px rgba(158, 215, 255, 0.24),
    0 0 26px rgba(255, 159, 215, 0.16);
}

.selected-live-status {
  width: fit-content;
  margin-top: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.54);
  border: 1px solid rgba(239, 68, 68, 0.55);
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.selected-live-status.hidden {
  display: none !important;
}

@media (max-width: 820px) {
  .spotlight-live-banner {
    grid-template-columns: 1fr;
  }

  .spotlight-live-button {
    width: fit-content;
  }
}


/* Version 24: Spotlight Live Fix + Admin Live Frame */
.spotlight-selected-preview.is-live {
  border-color: rgba(255, 159, 215, 0.62) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.22), transparent 44%),
    radial-gradient(circle at 100% 0%, rgba(255, 159, 215, 0.20), transparent 44%),
    linear-gradient(135deg, rgba(158, 215, 255, 0.14), rgba(200, 188, 255, 0.10), rgba(255, 159, 215, 0.12)),
    rgba(2, 6, 23, 0.44) !important;
  box-shadow:
    0 0 0 1px rgba(158, 215, 255, 0.18),
    0 0 26px rgba(158, 215, 255, 0.12),
    0 0 28px rgba(255, 159, 215, 0.10) !important;
}

.spotlight-selected-preview.is-live::after {
  content: "LIVE";
  position: absolute;
  top: -9px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet), var(--avaria-pink));
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(158, 215, 255, 0.18);
}

.spotlight-selected-preview {
  position: relative;
}

.spotlight-section {
  padding: 22px 0 34px !important;
}

.spotlight-live-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(255, 159, 215, 0.52);
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.25), transparent 38%),
    radial-gradient(circle at 92% 0%, rgba(255, 159, 215, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(158, 215, 255, 0.22), rgba(200, 188, 255, 0.18), rgba(255, 159, 215, 0.18)),
    rgba(15, 23, 42, 0.84);
  box-shadow:
    var(--avaria-shadow),
    0 0 42px rgba(158, 215, 255, 0.16),
    0 0 42px rgba(255, 159, 215, 0.12);
}

.spotlight-live-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
}

.spotlight-live-avatar-wrap img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.spotlight-live-dot {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  padding: 6px 11px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet), var(--avaria-pink));
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.spotlight-live-content h2 {
  margin-bottom: 6px;
  font-size: clamp(34px, 5vw, 62px);
  color: white;
}

.spotlight-live-content p {
  margin-bottom: 4px;
  color: #07111f;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight-live-content small {
  display: block;
  max-width: 760px;
  color: rgba(238, 245, 255, 0.76);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .spotlight-live-banner {
    grid-template-columns: 1fr;
  }
}


/* Version 25: Spotlight Main Card + Phase Progress Bottom + Admin Live Position */
.phase-timeline-v2 .phase-card {
  display: flex !important;
  flex-direction: column !important;
}

.phase-timeline-v2 .phase-card .phase-progress {
  margin-top: auto !important;
}

.phase-timeline-v2 .phase-card .phase-progress-label {
  margin-bottom: 0 !important;
}

.selected-spotlight-name-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
}

.selected-spotlight-name-row strong {
  min-width: 0 !important;
}

.selected-spotlight-name-row .selected-live-status {
  flex: 0 0 auto !important;
  margin-top: 0 !important;
}

.spotlight-section {
  padding: 16px 0 42px !important;
}

.spotlight-live-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 159, 215, 0.58);
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.28), transparent 38%),
    radial-gradient(circle at 88% 0%, rgba(255, 159, 215, 0.30), transparent 42%),
    linear-gradient(135deg, rgba(158, 215, 255, 0.24), rgba(200, 188, 255, 0.18), rgba(255, 159, 215, 0.20)),
    rgba(15, 23, 42, 0.86);
  box-shadow:
    var(--avaria-shadow),
    0 0 46px rgba(158, 215, 255, 0.18),
    0 0 46px rgba(255, 159, 215, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.spotlight-live-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(158, 215, 255, 0.90), rgba(200, 188, 255, 0.52), rgba(255, 159, 215, 0.80));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.spotlight-live-avatar-wrap {
  position: relative;
  width: 104px;
  height: 104px;
}

.spotlight-live-avatar-wrap img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}

.spotlight-live-dot {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet), var(--avaria-pink));
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(158, 215, 255, 0.24);
}

.spotlight-live-content {
  min-width: 0;
}

.spotlight-live-content h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 62px);
  color: white;
  letter-spacing: -0.055em;
}

.spotlight-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.spotlight-live-meta span {
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet));
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight-live-content p {
  margin: 0;
  max-width: 860px;
  color: rgba(238, 245, 255, 0.80);
  line-height: 1.55;
}

.spotlight-live-button {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  box-shadow:
    0 18px 34px rgba(158, 215, 255, 0.24),
    0 0 26px rgba(255, 159, 215, 0.16);
}

@media (max-width: 860px) {
  .spotlight-live-banner {
    grid-template-columns: 1fr;
  }

  .spotlight-live-button {
    width: fit-content;
  }
}


/* Version 26: Spotlight Hover Overlay, Admin Live Cleanup, Phase Badge Width */
.phase-card .phase-badge {
  align-self: flex-start !important;
  width: fit-content !important;
  max-width: max-content !important;
}

.spotlight-selected-preview.is-live::after {
  display: none !important;
  content: none !important;
}

.selected-spotlight-name-row .selected-live-status {
  color: #07111f !important;
  background: linear-gradient(135deg, var(--avaria-blue), var(--avaria-violet), var(--avaria-pink)) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 8px 18px rgba(158, 215, 255, 0.16),
    0 0 18px rgba(255, 159, 215, 0.10) !important;
}

.spotlight-live-banner {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.spotlight-live-banner:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow:
    var(--avaria-shadow),
    0 0 60px rgba(158, 215, 255, 0.24),
    0 0 56px rgba(255, 159, 215, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.09) !important;
}

.spotlight-live-visual {
  position: relative;
  width: 104px;
  height: 104px;
}

.spotlight-live-visual img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}

.spotlight-live-avatar-wrap,
.spotlight-live-dot,
.spotlight-live-button {
  display: none !important;
}

.spotlight-stream-title {
  color: rgba(238, 245, 255, 0.82) !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  max-width: 860px;
  line-height: 1.55;
}

.spotlight-live-banner .spotlight-live-visual,
.spotlight-live-banner .spotlight-live-content {
  transition:
    filter 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.spotlight-hover-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(158, 215, 255, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.74), rgba(15, 23, 42, 0.82));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.spotlight-hover-layer strong {
  color: white;
  font-size: clamp(36px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow:
    0 18px 40px rgba(0, 0, 0, 0.48),
    0 0 32px rgba(158, 215, 255, 0.22);
}

.spotlight-live-banner:hover .spotlight-hover-layer {
  opacity: 1;
}

.spotlight-live-banner:hover .spotlight-live-visual,
.spotlight-live-banner:hover .spotlight-live-content {
  filter: blur(5px) brightness(0.55);
  opacity: 0.68;
  transform: scale(0.985);
}

@media (max-width: 860px) {
  .spotlight-live-visual {
    width: 92px;
    height: 92px;
  }

  .spotlight-live-visual img {
    width: 92px;
    height: 92px;
    border-radius: 26px;
  }
}


/* Version 27: Rechtliche Seiten */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  padding: 18px 22px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--avaria-text);
  font-weight: 950;
  text-decoration: none;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--avaria-muted);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.legal-shell {
  padding-bottom: 80px;
}

.legal-hero {
  margin-top: 34px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: -0.065em;
}

.legal-hero p {
  margin: 0 auto;
  max-width: 780px;
}

.legal-content {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.legal-content h2 {
  margin: 28px 0 10px;
  color: white;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.035em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  max-width: 980px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--avaria-blue);
  font-weight: 900;
}

.legal-note {
  margin-top: 30px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--avaria-text);
  background: rgba(158, 215, 255, 0.10);
  border: 1px solid rgba(158, 215, 255, 0.24);
}

@media (max-width: 720px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Version 28: Finalstruktur, Footer und Maintenance-Fix */
.maintenance-page {
  min-height: 100vh !important;
  display: grid !important;
  place-items: center !important;
  padding: 32px 0 !important;
}

.maintenance-page + .site-footer,
body[data-maintenance="1"] .site-footer {
  display: none !important;
}

.site-footer {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 26px !important;
  margin: 72px auto 0 !important;
  padding: 18px 26px !important;
  text-align: center;
}

.site-footer .footer-brand {
  justify-content: center;
}

.site-footer .footer-links {
  justify-content: center;
}

.legal-footer-settings-card {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .site-footer {
    align-items: center !important;
    flex-direction: column !important;
  }
}


/* Version 29: Footer-Fix und Switches ohne Speichern */
.site-footer {
  width: 100% !important;
  margin-top: 72px !important;
}

.maintenance-form {
  display: grid;
  gap: 10px;
}

.maintenance-form .switch-row + .switch-hint {
  margin-bottom: 8px;
}

.legal-footer-settings-card {
  display: none !important;
}


/* Version 30: Footer auch während Maintenance */
.maintenance-page {
  display: flex !important;
  min-height: 100vh !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 28px !important;
  padding: 32px 0 !important;
}

.maintenance-page .maintenance-card {
  margin-left: auto !important;
  margin-right: auto !important;
}

.maintenance-footer-wrap {
  width: 100%;
}

.maintenance-page .site-footer,
body[data-maintenance="1"] .maintenance-page .site-footer {
  display: flex !important;
  margin-top: 0 !important;
}

body[data-maintenance="1"] > .site-footer {
  display: none !important;
}


/* Version 31 Final: letzte Korrekturen */
.system-switch-grid {
  display: grid;
  gap: 12px;
}

.system-switch-item {
  padding: 14px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(158, 215, 255, 0.08), transparent 42%),
    rgba(2, 6, 23, 0.24);
  border: 1px solid rgba(190, 203, 255, 0.13);
}

.system-switch-item .switch-hint {
  margin: 8px 0 0 !important;
}

.maintenance-page {
  display: flex !important;
  min-height: 100vh !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 28px !important;
  padding: 32px 0 !important;
}

.maintenance-page .maintenance-card {
  margin-left: auto !important;
  margin-right: auto !important;
}

.maintenance-footer-wrap {
  width: 100%;
}

.maintenance-page .site-footer,
body[data-maintenance="1"] .maintenance-page .site-footer {
  display: flex !important;
  margin-top: 0 !important;
}

.selected-creator-preview small#selectedSpotlightViewers {
  color: var(--avaria-pink);
  font-weight: 850;
}

.selected-creator-preview small#selectedSpotlightViewers.hidden {
  display: none !important;
}


/* Version 32: Maintenance Footer unten + Spotlight-Follower Fix */
.maintenance-page {
  display: flex !important;
  min-height: 100vh !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  gap: 28px !important;
  padding: 32px 0 !important;
}

.maintenance-content-wrap {
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  width: 100%;
}

.maintenance-footer-wrap {
  flex: 0 0 auto;
  width: 100%;
}

.maintenance-page .site-footer {
  margin-top: 0 !important;
}

.system-switch-grid {
  margin-top: 16px;
}

.system-switch-item {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.system-switch-item:hover {
  border-color: rgba(158, 215, 255, 0.24);
  box-shadow: 0 0 24px rgba(158, 215, 255, 0.06);
}
