.mock-immersive-page {
  min-height: 100dvh;
  background: #0a0a0a;
  color: var(--text-color);
}

.mock-live-overlay[hidden] {
  display: none !important;
}

.mock-live-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #0a0a0a;
  color: var(--text-color);
}

.mock-immersive-page,
.mock-immersive-page main,
.mock-immersive-page button,
.mock-immersive-page a {
  font-family: var(--font-primary);
}

.mock-page-backdrop {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  pointer-events: none;
}

.mock-brand-lockup {
  width: 87.344px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.mock-close-button {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mock-close-button svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mock-close-button svg path {
  fill: #FFFFFF;
}

.mock-close-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #1f1f1f;
  color: var(--text-color);
  font-size: var(--fs-14);
  line-height: var(--lh-14);
  letter-spacing: var(--ls-14);
  font-weight: var(--fw-regular);
}

.mock-secondary-button,
.mock-tertiary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 32px;
  border-radius: 999px;
  border: none;
  background: #1d1e20;
  color: var(--text-color);
  text-decoration: none;
  font-size: var(--fs-16);
  line-height: var(--lh-16);
  letter-spacing: var(--ls-16);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mock-secondary-button:hover,
.mock-tertiary-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.mock-danger-circle {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: #FF1B0A;
  color: var(--text-color);
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.mock-danger-circle:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.mock-danger-circle.is-muted {
  background: #4DB288;
  box-shadow: none;
}

.mock-danger-circle__icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mock-danger-circle__icon span {
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background: currentColor;
}

.mock-danger-circle.is-muted .mock-danger-circle__icon {
  position: relative;
  gap: 0;
}

.mock-danger-circle.is-muted .mock-danger-circle__icon span:first-child {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
  border-radius: 0;
  background: transparent;
  transform: translateX(2px);
}

.mock-danger-circle.is-muted .mock-danger-circle__icon span:last-child {
  display: none;
}

@media (max-width: 1279px) {
  .mock-close-button {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .mock-pill {
    min-height: 32px;
    padding: 0 12px;
    font-size: var(--fs-14);
  }

  .mock-secondary-button,
  .mock-tertiary-link {
    min-height: 64px;
    padding: 0 24px;
    font-size: var(--fs-16);
  }

  .mock-danger-circle {
    width: 64px;
    height: 64px;
  }
}
