/* ─── Privacy Notice ──────────────────────────────────────────────────────── */

#ht-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 300px;
  padding: 16px 20px 18px;
  background: rgba(10, 10, 16, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  animation: ht-slide-up 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: opacity 0.25s ease;
}

@keyframes ht-slide-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ht-notice-eyebrow {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ht-notice-body {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ht-notice-btn {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a10;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.ht-notice-btn:hover {
  background: #fff;
  transform: scale(1.03);
}

.ht-notice-btn:active {
  transform: scale(0.98);
}

@media (max-width: 480px) {
  #ht-notice {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
