/* Aurora cookie consent banner — vanilla CSS. */

.aurora-cb-root {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.aurora-cb-shell {
  pointer-events: auto;
  background: rgba(6, 9, 15, 0.97);
  border-top: 1px solid rgba(122, 136, 168, 0.25);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.aurora-cb-bar {
  max-width: min(1080px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.aurora-cb-copy {
  flex: 1 1 280px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #c0c8d8;
}
.aurora-cb-copy a {
  color: #38e8c8;
  text-decoration: underline;
}

.aurora-cb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.aurora-cb-actions--right {
  justify-content: flex-end;
}

.aurora-cb-btn {
  font: inherit;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(122, 136, 168, 0.3);
  background: transparent;
  color: #e8ecf5;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.aurora-cb-btn:hover {
  border-color: rgba(122, 136, 168, 0.55);
  background: rgba(232, 236, 245, 0.04);
}
.aurora-cb-btn--ghost {
  /* same as base */
}
.aurora-cb-btn--primary {
  background: #38e8c8;
  border-color: #38e8c8;
  color: #06090f;
  font-weight: 600;
}
.aurora-cb-btn--primary:hover {
  background: #2dd0b2;
  border-color: #2dd0b2;
}

.aurora-cb-custom {
  max-width: min(1080px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 14px 24px 8px;
  border-bottom: 1px solid rgba(122, 136, 168, 0.15);
}
.aurora-cb-custom[hidden] {
  display: none !important;
}

.aurora-cb-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
}
.aurora-cb-row > div {
  flex: 1 1 auto;
  min-width: 0;
}
.aurora-cb-row-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #e8ecf5;
}
.aurora-cb-row-desc {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #9aa6c0;
}

.aurora-cb-toggle {
  flex-shrink: 0;
  position: relative;
  width: 36px;
  height: 20px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: rgba(232, 236, 245, 0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.aurora-cb-toggle--on {
  background: #38e8c8;
}
.aurora-cb-toggle--locked {
  background: #38e8c8;
  opacity: 0.7;
  cursor: not-allowed;
}
.aurora-cb-toggle > span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #06090f;
  transition: left 0.2s;
}
.aurora-cb-toggle--on > span,
.aurora-cb-toggle--locked > span {
  left: 18px;
}

@media (max-width: 640px) {
  .aurora-cb-bar {
    padding: 12px 16px;
  }
  .aurora-cb-copy {
    font-size: 12.5px;
    flex-basis: 100%;
  }
  .aurora-cb-actions {
    flex-basis: 100%;
    justify-content: stretch;
  }
  .aurora-cb-btn {
    flex: 1 1 auto;
    padding: 8px 10px;
  }
}
