/* Spotlight pod kursorem */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(400px 400px at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.06), transparent 55%);
  mix-blend-mode: screen;
  opacity: .5;
  transition: opacity .3s ease;
}

/* Gradientowa ramka kart */
.gborder { position: relative; }
.gborder::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  z-index: -1;
  background: linear-gradient(120deg, rgba(245,192,0,.45), rgba(93,232,205,.25), rgba(245,192,0,.45));
  filter: blur(10px);
  opacity: .35;
  transition: opacity .6s ease;
}
.gborder:hover::before { opacity: .6; }

/* Scroll reveal */
.reveal { transform: translateY(8px); opacity: 0; }
.reveal.revealed {
  transform: none;
  opacity: 1;
  transition: all .7s var(--ease, cubic-bezier(0.19,1,0.22,1));
}

/* Progress bar u góry */
#progress { height: 3px; background: linear-gradient(90deg, #f5c000, #2dd4bf); width: 0%; }

/* Minimalne animacje przy preferencjach ruchu */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* Pair badges (Praca/Gaming) – złote, spójne z brandem */
.pair-badge {
  width: 8.75rem;
  height: 8.75rem;
  margin: 0 auto;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5c000;
  border: 1px solid rgba(245,192,0,.6);
  box-shadow: 0 0 0 2px rgba(245,192,0,.08), 0 0 30px rgba(245,192,0,.18), inset 0 0 18px rgba(245,192,0,.06);
  background: radial-gradient(60% 60% at 50% 35%, rgba(245,192,0,.18), rgba(0,0,0,0) 60%);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pair-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(245,192,0,.12), 0 0 40px rgba(245,192,0,.28), inset 0 0 20px rgba(245,192,0,.08);
}
.pair-title { margin-top: .5rem; font-size: .9rem; font-weight: 600; color: #e5e7eb; }
