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

.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;
}
