.cookie-consent {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgb(12 14 30 / 90%);
  color: rgb(255 255 255 / 90%);
  box-shadow: 0 12px 40px rgb(5 6 18 / 55%);
  border: 1px solid rgb(255 255 255 / 10%);
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.cookie-consent__copy {
  display: grid;
  gap: 6px;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.cookie-consent__copy strong {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 50%);
}

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

.cookie-consent__button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.cookie-consent__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgb(0 0 0 / 25%);
}

.cookie-consent__button--primary {
  background: linear-gradient(90deg, #00d9ff, #6366f1);
  color: #0b0e1d;
}

.cookie-consent__button--ghost {
  background: transparent;
  color: rgb(255 255 255 / 85%);
  border-color: rgb(255 255 255 / 30%);
}

.cookie-consent__link {
  color: #00d9ff;
  text-decoration: none;
}

.cookie-consent__link:hover {
  text-decoration: underline;
}

@media (width <= 720px) {
  .cookie-consent {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

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