/* cards.css – Style für Cards */

/* === XIONIS App-Shell Preboot (Premium Layout-First) === */

html.xionis-preboot #pageContent,
html.xionis-preboot main {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: none !important;
}


#pageContent,
main {
  transition: none;

}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;

  box-shadow:
    0 0 0 1px rgba(0,255,224,0.10),
    0 0 18px rgba(0,255,224,0.08);

  transition:
    opacity .45s ease,
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(0,255,224,0.25),
    0 0 32px rgba(0,255,224,0.25);
}

body.light .card,
body.light .card * {
  color: #000000 !important;
}

/* Disable GPU blur during navigation */
body.nav-transition .card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
