.dg-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: rgba(12, 12, 16, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  font-family: 'Instrument Sans', var(--font-sans, system-ui, sans-serif);
  color: #fff;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.dg-consent-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.dg-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.dg-consent-copy {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.dg-consent-copy a {
  color: hsl(200, 95%, 60%);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dg-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dg-consent-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.dg-consent-btn--accept {
  background: hsl(200, 95%, 50%);
  color: #000;
  border-color: transparent;
}

.dg-consent-btn--accept:hover {
  background: hsl(200, 95%, 58%);
}

.dg-consent-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
}

.dg-consent-btn--decline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

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

  .dg-consent-actions {
    justify-content: stretch;
  }

  .dg-consent-btn {
    flex: 1;
  }
}
