/* ══ Glow-Effekte – wird NICHT durch PostCSS verarbeitet ══ */
/* JS-gesteuerte Rotation: glow-engine.js setzt --glow-angle per requestAnimationFrame */

.glow-card {
  position: relative;
  border-radius: 12px;
  background: var(--cd);
  border: none;
  box-shadow: 0 0 18px -4px rgba(0,255,224,.06), 0 0 18px -4px rgba(123,0,255,.06);
  isolation: isolate;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 13px;
  z-index: -1;
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 0%, var(--c) 8%, var(--p) 16%, transparent 24%, transparent 100%);
  opacity: .5;
}
.glow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--cd);
  z-index: -1;
}

.quick-btn {
  position: relative;
  isolation: isolate;
}
.quick-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  z-index: -1;
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 0%, var(--c) 8%, var(--p) 16%, transparent 24%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.quick-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: var(--cd);
  z-index: -1;
}
.quick-btn:hover::before { opacity: .7; }
.quick-btn:hover { border-color: transparent; }

.btn-wrap {
  position: relative;
  border-radius: 12px;
  isolation: isolate;
}
.btn-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 13px;
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 0%, var(--c) 8%, var(--p) 16%, transparent 24%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.btn-wrap:hover::before { opacity: .7; }
.btn-wrap .btn {
  position: relative;
  z-index: 1;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .25s;
  border: 1px solid var(--bd);
  background: var(--cd);
  color: var(--tx);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-wrap:hover .btn { border-color: transparent; }

.form-sec {
  background: var(--cd);
  border-radius: 12px;
  position: relative;
  border: none;
  box-shadow: 0 0 18px -4px rgba(0,255,224,.06), 0 0 18px -4px rgba(123,0,255,.06);
  isolation: isolate;
}
.form-sec::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 13px;
  z-index: -1;
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 0%, var(--c) 8%, var(--p) 16%, transparent 24%, transparent 100%);
  opacity: .5;
}
.form-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--cd);
  z-index: -1;
}

.overlay-card {
  position: relative;
  border-radius: 14px;
  background: var(--cd);
  box-shadow: 0 0 40px -6px rgba(0,255,224,.12), 0 0 40px -6px rgba(123,0,255,.12);
  isolation: isolate;
}
.overlay-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  z-index: -1;
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 0%, var(--c) 10%, var(--p) 20%, transparent 30%, transparent 100%);
  opacity: .7;
}
.overlay-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--cd);
  z-index: -1;
}
