.cell_erfahrung_osite {
  background-color: rgb(238, 244, 237);
  position: relative;
  overflow: hidden;
}
.cell_erfahrung_osite::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  /* Maskierung */
  -webkit-mask-image: radial-gradient(circle 150px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
  mask-image: radial-gradient(circle 150px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: opacity 0.2s ease;
  opacity: 0;
}
.cell_erfahrung_osite.hovered::before {
  opacity: 1;
}
.aurora-text {
  font-weight: bold;
  background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(197, 212, 202, 1) 69%, rgba(0, 0, 0, 1) 100%);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: aurora 10s ease infinite;
}
@keyframes aurora {
  0% { background-position: 0% }
  50% { background-position: 100% }
  100% { background-position: 0% }
}

  .custom-ring-button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }
  .custom-ring-button.clicked::after {
    animation: ringPulse 0.6s ease-out;
    opacity: 1;
  }
  @keyframes ringPulse {
    0% {
      opacity: 0.4;
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(2.5);
    }
  }
   /* html {
  font-size: calc(16px + (4 * ((100vw - 768px) / (1920 - 768))));
} */

/* DEBUG – sofort sichtbar, ob CSS/hover ankommt */
.debug-anim { animation: spin 1s linear infinite !important; }
@keyframes spin { to { transform: rotate(360deg); } }
