#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  z-index: 9998;
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(28, 28, 31, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(235, 224, 196, 0.1);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.cookie-text {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(235, 224, 196, 0.62);
  flex: 1;
}

.cookie-text a {
  color: #c7a96b;
  text-decoration: none;
  transition: color 300ms ease;
}

.cookie-text a:hover {
  color: #ebe0c4;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
  white-space: nowrap;
  border: none;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(235, 224, 196, 0.38);
  border: 1px solid rgba(235, 224, 196, 0.14);
}

.cookie-btn-decline:hover {
  color: rgba(235, 224, 196, 0.62);
  border-color: rgba(235, 224, 196, 0.3);
}

.cookie-btn-accept {
  background: #ebe0c4;
  color: #171719;
}

.cookie-btn-accept:hover {
  background: #f3e9cd;
}

@media (max-width: 600px) {
  #cookieBanner {
    flex-direction: column;
    align-items: stretch;
    bottom: 16px;
    left: 16px;
    right: 16px;
    gap: 16px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}
