/* ───────────────────────────────────────────────────────────── */
/* FIX: Ulepszenia dla trybu jasnego - Wektor Ciekawości */
/* ───────────────────────────────────────────────────────────── */

.s-popular-tags-items a {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0ddd9;
  transition: background-color 0.3s ease;
}

.s-popular-tags-items a:hover {
  background-color: #f0efeb;
}

.s-popular-tags-content {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.s-popular-tags-items a span {
  color: #333333;
  font-weight: 600;
  text-shadow: none;
}

/* ───────────────────────────────────────────────────────────── */
/* FIX: Tryb ciemny dla sekcji popularnych tagów i polecanych */
/* ───────────────────────────────────────────────────────────── */

@media (prefers-color-scheme: dark) {
  .s-popular-tags-items a {
    background-color: rgba(255, 255, 255, 0.05);
    color: #eee;
    border-radius: 12px;
    border: none;
    text-shadow: none;
    transition: background-color 0.3s ease;
  }

  .s-popular-tags-items a:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }

  .s-popular-tags-items a span {
    color: #c3c3e5 !important;
    text-shadow: none !important;
  }

  .s-popular-tags-content {
    border-bottom: none !important;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6) !important;
  }

  .s-recommended-content {
    border: none !important;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6) !important;
    border-radius: 16px !important;
  }
}


.s-popular-tags-image img {
  animation: halPulse 4s ease-in-out infinite;
  transform-origin: center center;
}

/* opóźnienie sekwencyjne */
.s-popular-tags-items a:nth-child(1) .s-popular-tags-image img { animation-delay: 0s; }
.s-popular-tags-items a:nth-child(2) .s-popular-tags-image img { animation-delay: 0.5s; }
.s-popular-tags-items a:nth-child(3) .s-popular-tags-image img { animation-delay: 1s; }
.s-popular-tags-items a:nth-child(4) .s-popular-tags-image img { animation-delay: 1.5s; }
.s-popular-tags-items a:nth-child(5) .s-popular-tags-image img { animation-delay: 2s; }
.s-popular-tags-items a:nth-child(6) .s-popular-tags-image img { animation-delay: 2.5s; }

/* sam puls */
@keyframes halPulse {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.6);
    transform: scale(1.05);
  }
}

.human-cert-badge {
  background-color: #111111; /* bardzo ciemne tło */
  border-radius: 12px;       /* zaokrąglone rogi */
  padding: 12px 16px;        /* trochę przestrzeni wewnętrznej */
  display: inline-flex;      /* zachowuje się jak przycisk/znacznik */
  align-items: center;       /* pionowe wyrównanie środka */
  gap: 8px;                  /* odstęp między elementami wewnętrznymi */
  color: white;              /* jasny tekst wewnątrz, jeśli będzie */
}

a.btn:hover {
  color: #111111;
}