.orion-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18,24,41,0.96), rgba(10,14,28,0.96));
  box-shadow: 0 24px 80px -28px rgba(0,0,0,0.85);
  color: #A8B3C4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.orion-consent.is-visible {
  display: block;
}

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

.orion-consent__copy {
  min-width: 0;
}

.orion-consent__title {
  margin: 0 0 4px;
  color: #F8FAFC;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.orion-consent__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.orion-consent__text a {
  color: #C4B5FD;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.orion-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.orion-consent button {
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  color: #F8FAFC;
  font: 600 13px Inter, sans-serif;
  cursor: pointer;
}

.orion-consent__decline {
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.orion-consent__accept {
  background: linear-gradient(100deg, #6366F1, #8B5CF6);
  box-shadow: 0 10px 30px -12px rgba(99,102,241,0.75);
}

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

  .orion-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
