/* Minimal cookie consent banner (Consent Mode v2) */

.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  max-width: 980px;
  margin: 0 auto;

  background: rgba(10, 12, 18, 0.92);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);

  padding: 14px 14px;
}

.cookie-consent__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent__text {
  font-size: 14px;
  line-height: 1.35;
}

.cookie-consent__text a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.cookie-consent__btn.primary {
  background: rgba(124, 77, 255, 0.92);
  border-color: rgba(124, 77, 255, 0.92);
}

.cookie-consent__btn:hover {
  filter: brightness(1.05);
}

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