body {
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
}

/* Hauptcontainer */
.container {
  max-width: 98% !important;
}

/* Karten */
.card {
  border-radius: 22px !important;
  backdrop-filter: blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%) !important;

  background: rgba(20, 20, 28, 0.45) !important;

  border: 1px solid rgba(255,255,255,0.06) !important;

  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 0 12px rgba(0,255,255,0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border 0.25s ease;
}

/* Hover Effekt */
.card:hover {
  transform: translateY(-3px) scale(1.01);

  border: 1px solid rgba(0,255,255,0.15) !important;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.45),
    0 0 18px rgba(0,255,255,0.15);
}

/* Gruppentitel */
.group-title {
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  margin-bottom: 18px !important;

  color: rgba(255,255,255,0.92);
}

/* Widgets */
.widget {
  border-radius: 18px !important;
}

/* iFrames */
iframe {
  border-radius: 18px !important;
  overflow: hidden !important;
  background: rgba(0,0,0,0.2);
}

/* Suchleiste */
.search {
  border-radius: 18px !important;
  overflow: hidden;

  background: rgba(20,20,30,0.45) !important;
  backdrop-filter: blur(14px);
}

/* Info Widgets */
.info-widget {
  backdrop-filter: blur(18px);
  border-radius: 18px !important;

  background: rgba(20,20,30,0.45) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0,255,255,0.25);
}

/* Links */
a {
  transition: all 0.2s ease;
}

/* Kleine Glow Effekte */
svg {
  filter: drop-shadow(0 0 4px rgba(0,255,255,0.08));
}

/* Status Cards */
.status {
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .group-title {
    font-size: 24px !important;
  }

  .card {
    border-radius: 18px !important;
  }
}
