.sotv-consent {
  position: fixed;
  inset: auto 16px 88px 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--sotv-nav-bg, #0f172a);
  color: var(--sotv-nav-text, #f8fafc);
  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: #fbbf24;
  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 #fbbf24;
  outline-offset: 2px;
}

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

.sotv-consent__btn--secondary {
  background: var(--sotv-nav-bg, #192132);
  color: var(--sotv-nav-text, #f8fafc);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

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

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

.sotv-legal-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--sotv-nav-bg, #1f2937);
  color: #ffffff;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  z-index: 9998;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.sotv-legal-footer a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 120ms ease, transform 120ms ease;
}

.sotv-legal-footer a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.3);
  outline-offset: 2px;
}

.sotv-legal-footer a:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.sotv-legal-footer__btn {
  border: none;
  background: transparent;
  color: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: opacity 120ms ease, transform 120ms ease;
}

.sotv-legal-footer__btn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.sotv-legal-footer__btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.3);
  outline-offset: 2px;
}

.sotv-legal-footer.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

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

  .sotv-legal-footer {
    padding: 12px;
    gap: 12px;
  }
}
