.privacy-consent {
  position: fixed;
  z-index: 10000;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.96);
  color: #f8fafc;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.28);
}

.privacy-consent__copy {
  display: grid;
  gap: 6px;
}

.privacy-consent strong {
  font-size: 0.95rem;
}

.privacy-consent p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.45;
}

.privacy-consent a {
  color: #93c5fd;
}

.privacy-consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.privacy-consent button,
.privacy-consent-button {
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 6px;
  background: transparent;
  color: #f8fafc;
  cursor: pointer;
  font: inherit;
  padding: 10px 12px;
}

.privacy-consent button.primary {
  border-color: #38bdf8;
  background: #0284c7;
  color: #ffffff;
}

.privacy-consent-button {
  position: fixed;
  z-index: 9999;
  right: 16px;
  bottom: 16px;
  background: rgba(15, 23, 42, 0.88);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .privacy-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-consent__actions {
    flex-direction: column;
  }
}
