.cookie-consent {
  position: fixed;
  left: 50%;
  width: min(980px, calc(100vw - 32px));
  bottom: 16px;
  z-index: 20000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 14, 28, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: #e9efff;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-consent__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: inherit;
}

.cookie-consent__link {
  color: #72c4ff;
}

.cookie-consent__btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #0b1020;
  background: linear-gradient(135deg, #62d1ff, #8de96f);
}

.cookie-consent__btn:hover {
  opacity: 0.94;
}

@media (max-width: 700px) {
  .cookie-consent {
    width: calc(100vw - 20px);
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
  }

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