.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: none;
  color: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-notice.is-visible {
  display: block;
}

.cookie-notice__inner {
  width: min(100%, 760px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  padding: 16px;
}

.cookie-notice__copy {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-notice__copy strong {
  color: #ffffff;
  font-weight: 700;
}

.cookie-notice__copy a {
  color: #a5f3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-notice__button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #22d3ee;
  color: #0f172a;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
}

.cookie-notice__button:hover {
  background: #67e8f9;
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-notice__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice__button {
    width: 100%;
  }
}
