.defi-gdpr-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  color: #0f172a;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.defi-gdpr-inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.defi-gdpr-title {
  font-family: Outfit, Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin: 0 0 6px 0;
}

.defi-gdpr-text {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  color: #334155;
}

.defi-gdpr-links {
  margin-top: 8px;
  font-size: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.defi-gdpr-links a {
  color: #4f46e5;
  text-decoration: none;
}

.defi-gdpr-links a:hover {
  text-decoration: underline;
}

.defi-gdpr-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.defi-gdpr-btn {
  appearance: none;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.defi-gdpr-btn:hover {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.defi-gdpr-btn:active {
  transform: translateY(1px);
}

.defi-gdpr-btn-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  border: none;
}

.defi-gdpr-pref-btn {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9998;
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.14);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: none; /* shown once initialized */
}

.defi-gdpr-pref-btn:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

@media (max-width: 640px) {
  .defi-gdpr-inner {
    flex-direction: column;
  }
  .defi-gdpr-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

