.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 20;
  width: min(860px, calc(100vw - 24px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  background: var(--panel-strong, rgba(20, 25, 29, 0.96));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.cookie-banner-text {
  margin: 0;
  color: var(--muted, #9aa79e);
  line-height: 1.6;
  font-size: 0.96rem;
}

.cookie-banner-text a {
  color: var(--accent, #b6ff7a);
  text-decoration: none;
}

.cookie-banner-text a:hover {
  color: var(--text, #f4f7f4);
}

.cookie-banner-action {
  min-width: 124px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    padding: 16px;
  }

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