#cookieConsentBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: rgba(8, 10, 15, 0.97);
  border-top: 1px solid rgba(51, 65, 85, 0.85);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

#cookieConsentBanner.hidden {
  display: none;
}

.cookie-consent__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.cookie-consent__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
}

.cookie-consent__text a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-consent__text a:hover {
  color: #7dd3fc;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-consent__btn {
  font-size: 0.8125rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-consent__btn--primary {
  background: #0284c7;
  color: #fff;
}

.cookie-consent__btn--primary:hover {
  background: #0ea5e9;
}

.cookie-consent__btn--ghost {
  background: transparent;
  color: #cbd5e1;
  border-color: #475569;
}

.cookie-consent__btn--ghost:hover {
  background: #1e293b;
}
