.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 760px;
  margin: 0 auto;
  background: #0f172a;
  color: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.cookie-consent__text {
  margin: 0 0 12px;
  line-height: 1.5;
  font-size: 14px;
}

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

.cookie-consent__btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #f8fafc;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-consent__btn--primary {
  background: #2563eb;
  border-color: #2563eb;
}

.cookie-consent__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-consent__links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-consent__links a {
  color: #93c5fd;
  text-decoration: none;
  font-size: 13px;
}

.cookie-consent__links a:hover {
  text-decoration: underline;
}

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