/* === COOKIE CONSENT BANNER === */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.5rem;
  background: rgba(8, 12, 18, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner--hiding {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.85rem;
  color: #7a8b9a;
  line-height: 1.6;
  margin: 0;
  min-width: 200px;
}

.cookie-banner-text a {
  color: var(--neon-mint);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
  color: var(--hyper-cyan);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.cookie-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8c4cc;
}

.cookie-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.cookie-btn--primary {
  background: linear-gradient(90deg, var(--neon-mint), var(--hyper-cyan));
  color: #0A0E14;
}

.cookie-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 232, 255, 0.3);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
