.ipx-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(13, 13, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 16px;
  color: rgba(245, 245, 247, 0.95);
  font-size: 14px;
}

.ipx-consent.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  transition: 0.22s ease;
}

.ipx-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ipx-consent__text {
  line-height: 1.35;
}

.ipx-consent__text a {
  color: var(--ip-primary, #e50914);
  text-decoration: none;
}

.ipx-consent__text a:hover {
  text-decoration: underline;
}

.ipx-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ipx-consent__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.95);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.ipx-consent__btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ipx-consent__btn--primary {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--ip-primary, #e50914);
  color: #fff;
}

.ipx-consent__btn--primary:hover {
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  .ipx-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .ipx-consent__actions {
    justify-content: flex-end;
  }
}
