.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: none;
  width: min(calc(100% - 44px), 500px);
  padding: 22px;
  color: #f5f7fb;
  background: rgba(10, 15, 23, 0.98);
  border: 1px solid #2a3547;
  border-radius: 14px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.5);
  font-family: Inter, Arial, sans-serif;
}

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

.cookie-banner h2 {
  margin: 0 0 8px;
  color: #f5f7fb;
  font-size: 18px;
  font-weight: 650;
}

.cookie-banner p {
  margin: 0;
  color: #a4aec0;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.cookie-banner .legal-button {
  display: inline-flex;
  min-height: 40px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #397fff;
  border: 1px solid #397fff;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.cookie-banner .legal-button:hover {
  color: #fff;
  background: #4b8bff;
}

.cookie-banner .legal-button.ghost {
  color: #b8c2d2;
  background: transparent;
  border-color: #344055;
}

.cookie-banner .legal-button.ghost:hover {
  color: #fff;
  border-color: #55709b;
}

@media (max-width: 560px) {
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}
