.neutra-consent-open {
  padding-bottom: 8.5rem;
}

.neutra-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 9999;
  width: min(calc(100vw - 1.5rem), 980px);
  transform: translateX(-50%);
  border-radius: 24px;
  border: 1px solid rgba(133, 186, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(8, 12, 33, 0.96), rgba(13, 22, 58, 0.92)),
    rgba(4, 7, 22, 0.94);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(86, 140, 255, 0.08) inset;
  backdrop-filter: blur(16px);
}

.neutra-consent-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.15rem;
}

.neutra-consent-banner__copy {
  min-width: 0;
  color: #ffffff;
}

.neutra-consent-banner__eyebrow {
  display: inline-flex;
  margin-bottom: 0.3rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(88, 176, 255, 0.12);
  color: #8fc8ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.neutra-consent-banner__copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.neutra-consent-banner__copy p {
  margin: 0.35rem 0 0;
  color: rgba(219, 233, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.5;
}

.neutra-consent-banner__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.neutra-consent-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.neutra-consent-banner__button:hover {
  transform: translateY(-1px);
}

.neutra-consent-banner__button--ghost {
  border-color: rgba(146, 189, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #eaf3ff;
}

.neutra-consent-banner__button--ghost:hover {
  border-color: rgba(146, 189, 255, 0.36);
  box-shadow: 0 12px 30px rgba(3, 9, 28, 0.22);
}

.neutra-consent-banner__button--primary {
  background: linear-gradient(135deg, #55a3ff, #4c6fff);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(76, 111, 255, 0.32);
}

.neutra-consent-banner__button--primary:hover {
  box-shadow:
    0 18px 44px rgba(76, 111, 255, 0.4),
    0 0 0 8px rgba(96, 194, 255, 0.12);
}

@media (max-width: 768px) {
  .neutra-consent-open {
    padding-bottom: 11rem;
  }

  .neutra-consent-banner {
    width: calc(100vw - 1rem);
    bottom: 0.75rem;
    border-radius: 20px;
  }

  .neutra-consent-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 0.95rem;
  }

  .neutra-consent-banner__copy strong {
    font-size: 0.96rem;
  }

  .neutra-consent-banner__copy p {
    font-size: 0.88rem;
  }

  .neutra-consent-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .neutra-consent-banner__button {
    width: 100%;
  }
}
