/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  max-width: 380px;
  background: rgba(24, 24, 27, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner.hide {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--zinc-100);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--zinc-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner p a {
  color: var(--zinc-400);
  text-decoration: underline;
}

.cookie-banner p a:hover { color: white; }

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.cookie-btn-accept {
  background: white;
  color: #000;
}

.cookie-btn-accept:hover { background: var(--zinc-200); }

.cookie-btn-reject {
  background: transparent;
  color: var(--zinc-500);
  border: 1px solid rgba(255,255,255,0.08);
}

.cookie-btn-reject:hover {
  color: var(--zinc-300);
  border-color: rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 20px;
  }
}
