.sotv-consent {
  position: fixed;
  inset: auto 16px 88px 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--sotv-consent-surface, rgba(255,255,255,0.96));
  color: var(--sotv-consent-text, var(--sotv-text, #111111));
  border: 1px solid var(--sotv-consent-border, rgba(17,17,17,0.10));
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  z-index: 9999;
}

.sotv-consent.is-visible {
  display: flex;
}

.sotv-consent__text {
  flex: 1 1 260px;
  display: grid;
  gap: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.sotv-consent__text strong {
  font-size: 15px;
}

.sotv-consent__link {
  color: var(--sotv-consent-link, var(--sotv-primary, #f28b1a));
  text-decoration: underline;
  font-weight: 600;
}

.sotv-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.sotv-consent__btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.sotv-consent__btn:focus-visible {
  outline: 2px solid var(--sotv-consent-link, var(--sotv-primary, #f28b1a));
  outline-offset: 2px;
}

.sotv-consent__btn--primary {
  background: var(--sotv-primary, #f28b1a);
  color: var(--sotv-consent-primary-text, #0f172a);
  box-shadow: 0 8px 20px rgba(242, 139, 26, 0.4);
}

.sotv-consent__btn--secondary {
  background: var(--sotv-consent-secondary-surface, rgba(255,255,255,0.82));
  color: var(--sotv-consent-text, var(--sotv-text, #111111));
  border: 1px solid var(--sotv-consent-border, rgba(17,17,17,0.10));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.sotv-consent__btn:hover {
  transform: translateY(-1px);
}

.sotv-consent__btn:active {
  transform: translateY(0);
}

html.sotv-dark {
  --sotv-consent-surface: rgba(18,18,18,0.96);
  --sotv-consent-secondary-surface: rgba(255,255,255,0.08);
  --sotv-consent-text: #f2f2f2;
  --sotv-consent-border: rgba(255,255,255,0.14);
  --sotv-consent-footer-surface: rgba(18,18,18,0.94);
  --sotv-consent-footer-text: #f2f2f2;
  --sotv-consent-primary-text: #111111;
}

@media (max-width: 640px) {
  .sotv-consent {
    inset: auto 12px 96px 12px;
    padding: 14px 16px;
  }

  .sotv-consent__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
