@font-face {
  font-family: "Trebuchet Local";
  src: url("media/fonts/trebuchet-ms-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Trebuchet Local";
  src: url("media/fonts/trebuchet-ms-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

:root {
  --stv-bg: #090313;
  --stv-bg-soft: #150727;
  --stv-surface: #140920;
  --stv-surface-2: #1d0d34;
  --stv-surface-3: #f1ecff;
  --stv-sidebar: linear-gradient(180deg, #6f43be 0%, #4f2395 100%);
  --stv-accent: #ffc928;
  --stv-accent-2: #ff8d1b;
  --stv-text: #fbf8ff;
  --stv-text-soft: rgba(251, 248, 255, 0.78);
  --stv-text-muted: rgba(251, 248, 255, 0.62);
  --stv-dark: #12061d;
  --stv-line: rgba(255, 255, 255, 0.08);
  --stv-line-strong: rgba(255, 255, 255, 0.16);
  --stv-card-edge: rgba(190, 148, 255, 0.18);
  --stv-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
  --stv-shadow-soft: 0 12px 24px rgba(10, 2, 17, 0.22);
  --stv-radius-xl: 34px;
  --stv-radius-lg: 26px;
  --stv-radius-md: 18px;
  --stv-gap: clamp(1rem, 2vw, 1.5rem);
  --stv-sidebar-width: min(18.75rem, 26vw);
  --stv-content-max: 1240px;
  --stv-hero-mobile-fallback: url("source/hero-banners/stellare-hero-bonus-mobile.jpeg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at top right, rgba(154, 92, 255, 0.24), transparent 24%),
    radial-gradient(circle at 14% 10%, rgba(255, 201, 40, 0.08), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(255, 123, 67, 0.08), transparent 19%),
    linear-gradient(180deg, #07010d 0%, #090313 36%, #05010a 100%);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--stv-text);
  background: transparent;
  font-family: "Trebuchet Local", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.stv-page {
  min-height: 100vh;
}

.stv-shell {
  min-height: 100vh;
}

.stv-content-shell {
  width: min(100%, calc(var(--stv-content-max) + var(--stv-gap) * 2));
  margin: 0 auto;
  padding: var(--stv-gap);
  display: flex;
  flex-direction: column;
}

.stv-main {
  display: flex;
  flex-direction: column;
  gap: var(--stv-gap);
}

.stv-main > section,
.stv-main > article,
.stv-main > div {
  animation: stv-rise 0.6s ease both;
}

.stv-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--stv-sidebar-width);
  height: 100vh;
  background: var(--stv-sidebar);
  padding: 1.45rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) rgba(9, 3, 19, 0.22);
  box-shadow: 18px 0 40px rgba(4, 0, 10, 0.28);
}

.stv-sidebar::-webkit-scrollbar {
  width: 0.72rem;
}

.stv-sidebar::-webkit-scrollbar-track {
  background: rgba(9, 3, 19, 0.18);
}

.stv-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(9, 3, 19, 0.08);
  background: rgba(255, 255, 255, 0.28);
}

.stv-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.stv-sidebar-logo,
.stv-mobile-shell-logo {
  display: inline-flex;
  justify-content: center;
}

.stv-mobile-shell-logo {
  width: 100%;
  margin: 0 auto;
}

.stv-sidebar-logo img {
  width: min(100%, 12.75rem);
  height: auto;
  object-fit: contain;
}

.stv-sidebar-actions {
  display: grid;
  gap: 0.65rem;
}

.stv-sidebar-utility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

.stv-sidebar-utility a {
  min-height: 2.42rem;
  padding: 0.5rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.stv-sidebar-utility a:hover,
.stv-sidebar-utility a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.stv-sidebar-utility a.is-current {
  background: rgba(255, 201, 40, 0.18);
  color: #ffe680;
  box-shadow: inset 0 0 0 1px rgba(255, 201, 40, 0.18);
}

.stv-sidebar-nav {
  display: grid;
  gap: 0.45rem;
  padding: 0.2rem 0;
}

.stv-sidebar-nav a {
  padding: 0.66rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  transition: transform 0.22s ease, background 0.22s ease;
}

.stv-sidebar-nav a:hover,
.stv-sidebar-nav a:focus-visible {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.2);
}

.stv-sidebar-note {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.stv-body--content .stv-shell,
.stv-body--service .stv-shell {
  margin-left: var(--stv-sidebar-width);
}

.stv-mobile-shell {
  display: none;
}

.stv-primary-link,
.stv-secondary-link {
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.stv-primary-link {
  min-width: 13rem;
  background: linear-gradient(180deg, #ffd44a 0%, #ffbf0f 100%);
  color: #21120a;
  box-shadow: 0 14px 28px rgba(255, 182, 0, 0.24);
}

.stv-primary-link:hover,
.stv-primary-link:focus-visible,
.stv-secondary-link:hover,
.stv-secondary-link:focus-visible,
.stv-slot-action:hover,
.stv-slot-action:focus-visible,
.stv-inline-link:hover,
.stv-inline-link:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.stv-secondary-link {
  min-width: 10rem;
  border: 2px solid rgba(255, 255, 255, 0.74);
  color: var(--stv-text);
  background: rgba(255, 255, 255, 0.04);
}

.stv-primary-link--block,
.stv-secondary-link--block {
  width: 100%;
}

.stv-primary-link--hero {
  min-width: 14rem;
}

.stv-primary-link--wide,
.stv-primary-link--button {
  width: 100%;
}

.stv-inline-link {
  color: #ffe16b;
  text-decoration: underline;
  text-decoration-color: rgba(255, 225, 107, 0.4);
  text-underline-offset: 0.15em;
}

.stv-hero,
.stv-promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--stv-radius-xl);
  border: 1px solid rgba(193, 152, 255, 0.12);
  box-shadow: var(--stv-shadow);
  background:
    radial-gradient(circle at top right, rgba(255, 209, 88, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(28, 11, 48, 0.98), rgba(14, 5, 24, 1));
}

.stv-hero::before,
.stv-promo-banner::before,
.stv-hero::after,
.stv-promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stv-hero::before,
.stv-promo-banner::before {
  inset: auto auto -12% -14%;
  width: 54%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 56, 0.24), transparent 72%);
  z-index: 1;
}

.stv-hero::after,
.stv-promo-banner::after {
  background:
    linear-gradient(90deg, rgba(7, 2, 14, 0.58) 0%, rgba(7, 2, 14, 0.16) 42%, rgba(7, 2, 14, 0.68) 100%),
    linear-gradient(180deg, rgba(7, 2, 14, 0.08) 0%, rgba(7, 2, 14, 0.18) 52%, rgba(7, 2, 14, 0.78) 100%);
  z-index: 1;
}

.stv-hero {
  min-height: clamp(19rem, 36vw, 31rem);
}

.stv-hero--service {
  min-height: clamp(17rem, 30vw, 23rem);
}

.stv-hero-image,
.stv-promo-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center;
}

.stv-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Shift source frame up to remove black strip on top edge. */
  object-position: center 58%;
  transform: scale(1.12) translate3d(0, -3%, 0);
}

.stv-promo-banner > img {
  position: relative;
  z-index: 0;
  transform: scale(1.04);
}

.stv-hero-card,
.stv-promo-banner-card {
  position: absolute;
  z-index: 2;
  max-width: min(29rem, calc(100% - 2.4rem));
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.25rem, 2.7vw, 1.9rem) clamp(1.6rem, 3.2vw, 2.25rem);
  border-radius: calc(var(--stv-radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(12, 4, 22, 0.88), rgba(24, 10, 40, 0.92));
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow:
    0 26px 52px rgba(6, 1, 12, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stv-hero-card {
  left: clamp(1rem, 4vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
}

.stv-hero-card--service {
  max-width: min(42rem, calc(100% - 2.4rem));
}

.stv-hero-card--service .stv-hero-bonus {
  max-width: 58ch;
}

.stv-hero h1,
.stv-page-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.stv-hero-bonus {
  margin: 0.8rem 0 0;
  color: var(--stv-text-soft);
  font-size: 1.02rem;
}

.stv-hero-card .stv-primary-link {
  margin-top: 1.15rem;
}

.stv-nav-accordion {
  border-radius: var(--stv-radius-lg);
  background: linear-gradient(180deg, rgba(114, 67, 196, 0.92), rgba(98, 54, 178, 0.92));
  box-shadow: var(--stv-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.stv-nav-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--stv-text);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.stv-nav-accordion-icon {
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.stv-nav-accordion-list {
  list-style: none;
  margin: 0;
  padding: 0 1.1rem 1rem;
  display: grid;
  gap: 0.45rem;
}

.stv-nav-accordion-list a {
  display: block;
  padding: 0.72rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
}

.stv-slot-grid {
  position: relative;
  padding: clamp(0.2rem, 1.2vw, 0.5rem);
  border-radius: var(--stv-radius-xl);
  border: 1px solid rgba(181, 137, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 201, 40, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(28, 11, 48, 0.7), rgba(15, 6, 25, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(6, 1, 12, 0.26);
}

.stv-slot-grid::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8, 2, 14, 0.3));
  pointer-events: none;
}

.stv-slot-grid-inner {
  position: relative;
  z-index: 1;
}

.stv-slot-grid-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1rem);
}

.stv-slot-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--stv-radius-lg);
  background: linear-gradient(180deg, rgba(28, 12, 47, 0.96), rgba(18, 7, 31, 0.98));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
  min-height: 0;
}

.stv-slot-card:hover,
.stv-slot-card:focus-within,
.stv-slot-card.is-active {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.44);
}

.stv-slot-media {
  width: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.stv-slot-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 432 / 580;
  object-fit: contain;
  background: #12061d;
}

.stv-slot-reveal,
.stv-slot-actions {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.stv-slot-reveal {
  z-index: 2;
  width: 4rem;
  height: 4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.stv-slot-reveal-icon {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.1rem solid white;
}

.stv-slot-actions {
  z-index: 1;
  width: calc(100% - 1rem);
  display: grid;
  gap: 0.55rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.stv-slot-actions * {
  pointer-events: none;
}

.stv-slot-action {
  min-height: 2.85rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.stv-slot-action--play {
  background: linear-gradient(180deg, #ffd44a 0%, #ffbf0f 100%);
  color: #21120a;
}

.stv-slot-action--demo {
  background: linear-gradient(180deg, rgba(46, 22, 75, 0.96), rgba(24, 9, 39, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--stv-text);
  cursor: pointer;
}

.stv-slot-card.is-active .stv-slot-reveal,
.stv-slot-card:hover .stv-slot-reveal,
.stv-slot-card:focus-within .stv-slot-reveal {
  background: rgba(255, 255, 255, 0.36);
}

.stv-slot-card.is-active .stv-slot-actions {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stv-slot-card.is-active .stv-slot-actions * {
  pointer-events: auto;
}

.stv-slot-card.is-active .stv-slot-reveal {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.stv-section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.stv-section-heading h2,
.stv-page-intro-eyebrow {
  margin: 0;
}

.stv-section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.stv-section-heading h2::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd44a 0%, #ff911f 100%);
  box-shadow: 0 0 0 6px rgba(255, 201, 40, 0.12);
}

.stv-section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 211, 75, 0.22), rgba(255, 255, 255, 0));
}

.stv-overview,
.stv-article-section,
.stv-page-intro,
.stv-author-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border-radius: var(--stv-radius-lg);
  border: 1px solid rgba(166, 121, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 215, 92, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(34, 15, 56, 0.98) 0%, rgba(20, 8, 36, 0.99) 58%, rgba(13, 5, 24, 1) 100%);
  box-shadow:
    0 20px 38px rgba(6, 1, 12, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.stv-overview::before,
.stv-article-section::before,
.stv-page-intro::before,
.stv-author-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 225, 107, 0.42), rgba(255, 255, 255, 0));
}

.stv-overview:hover,
.stv-article-section:hover,
.stv-page-intro:hover,
.stv-author-card:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 178, 255, 0.22);
  box-shadow:
    0 24px 44px rgba(6, 1, 12, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stv-author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.stv-author-card-media img,
.stv-author-profile-hero img {
  border-radius: 50%;
}

.stv-author-card-media img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.stv-author-card-body p,
.stv-author-profile-hero p {
  margin: 0;
}

.stv-author-card-eyebrow,
.stv-page-intro-eyebrow,
.stv-promo-banner-eyebrow,
.stv-modal-eyebrow,
.stv-footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffdf74;
  font-size: 0.78rem;
}

.stv-author-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.15rem 0 0.4rem;
}

.stv-page-intro p,
.stv-article-section p,
.stv-promo-banner p,
.stv-footer p,
.stv-faq-answer p {
  margin: 0.78rem 0 0;
  color: var(--stv-text-soft);
}

.stv-page-intro p a,
.stv-page-intro li a,
.stv-article-section p a,
.stv-article-section li a,
.stv-faq-answer a {
  color: #ffe680;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  text-decoration-color: rgba(255, 214, 92, 0.52);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.stv-page-intro p a:hover,
.stv-page-intro p a:focus-visible,
.stv-page-intro li a:hover,
.stv-page-intro li a:focus-visible,
.stv-article-section p a:hover,
.stv-article-section p a:focus-visible,
.stv-article-section li a:hover,
.stv-article-section li a:focus-visible,
.stv-faq-answer a:hover,
.stv-faq-answer a:focus-visible {
  color: #fff1af;
  text-decoration-color: rgba(255, 235, 150, 0.92);
}

.stv-page-intro p:first-of-type,
.stv-article-section p:first-of-type {
  margin-top: 0.8rem;
}

.stv-table-wrap {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 24px;
  border: 1px solid rgba(182, 140, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(31, 12, 53, 0.96), rgba(16, 6, 28, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 30px rgba(5, 1, 10, 0.26);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(173, 129, 255, 0.34) rgba(13, 5, 24, 0.14);
}

.stv-table-wrap::-webkit-scrollbar {
  height: 0.52rem;
}

.stv-table-wrap::-webkit-scrollbar-track {
  background: rgba(13, 5, 24, 0.16);
  border-radius: 999px;
}

.stv-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(173, 129, 255, 0.36);
  border-radius: 999px;
}

.stv-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.stv-table th,
.stv-table td {
  padding: 0.85rem 0.95rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--stv-line);
  overflow-wrap: anywhere;
}

.stv-table th {
  color: #ffe071;
  font-weight: 700;
}

.stv-table--overview th {
  width: 31%;
}

.stv-table td {
  color: var(--stv-text-soft);
}

.stv-table:not(.stv-table--overview):not(.stv-table--payments) {
  border-collapse: separate;
  border-spacing: 0 0.52rem;
}

.stv-table:not(.stv-table--overview):not(.stv-table--payments) thead th {
  padding: 0 0.95rem 0.62rem;
  border-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}

.stv-table:not(.stv-table--overview):not(.stv-table--payments) tbody td {
  padding: 0.88rem 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(43, 18, 69, 0.94), rgba(22, 9, 38, 0.98));
  transition: background 0.22s ease, border-color 0.22s ease;
}

.stv-table:not(.stv-table--overview):not(.stv-table--payments) tbody tr:hover td {
  background: linear-gradient(180deg, rgba(53, 23, 84, 0.98), rgba(27, 11, 46, 1));
  border-color: rgba(255, 255, 255, 0.1);
}

.stv-table:not(.stv-table--overview):not(.stv-table--payments) tbody td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px 0 0 18px;
  color: var(--stv-text);
  font-weight: 700;
}

.stv-table:not(.stv-table--overview):not(.stv-table--payments) tbody td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 18px 18px 0;
}

.stv-table--overview {
  border-collapse: separate;
  border-spacing: 0 0.58rem;
}

.stv-table--overview th,
.stv-table--overview td {
  padding: 0.9rem 1rem;
  border: 0;
  vertical-align: middle;
}

.stv-table--overview th {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, rgba(62, 27, 101, 0.96), rgba(31, 13, 51, 0.98));
  color: #ffe48c;
}

.stv-table--overview td {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(180deg, rgba(36, 15, 58, 0.96), rgba(19, 7, 31, 0.98));
  color: var(--stv-text);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.04);
}

.stv-table--bonus-pack th:first-child,
.stv-table--bonus-pack td:first-child {
  white-space: nowrap;
}

.stv-table--payments {
  border-collapse: separate;
  border-spacing: 0 0.72rem;
}

.stv-table--payments thead th {
  padding: 0 1rem 0.48rem;
  border-bottom: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stv-table--payments tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(42, 18, 67, 0.92), rgba(24, 9, 39, 0.98));
  transition: background 0.22s ease, border-color 0.22s ease;
}

.stv-table--payments tbody tr:hover td {
  background: linear-gradient(180deg, rgba(52, 23, 82, 0.96), rgba(28, 11, 46, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
}

.stv-table--payments tbody td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px 0 0 20px;
}

.stv-table--payments tbody td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 20px 20px 0;
}

.stv-table--payments th:nth-child(2),
.stv-table--payments th:nth-child(3),
.stv-table--payments td:nth-child(2),
.stv-table--payments td:nth-child(3) {
  text-align: center;
}

.stv-table-method {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--stv-text);
  font-weight: 700;
}

.stv-table-method::before {
  content: "";
  width: 0.68rem;
  height: 0.68rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--stv-accent) 0%, #ff991a 100%);
  box-shadow: 0 0 0 5px rgba(255, 201, 40, 0.12);
}

.stv-table-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #2fcf64 0%, #149d49 100%);
  color: #f7fff9;
  font-size: 1rem;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 22px rgba(20, 157, 73, 0.3);
}

.stv-table-time,
.stv-table-pill,
.stv-table-fee {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.stv-table-time {
  padding: 0.42rem 0.72rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--stv-text);
}

.stv-table-pill {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(129, 78, 213, 0.18);
  color: #f4edff;
}

.stv-table-fee {
  padding: 0.42rem 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  color: #dfd0ff;
}

.stv-list {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  color: var(--stv-text-soft);
}

.stv-list li + li {
  margin-top: 0.48rem;
}

.stv-article-section h3 {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  color: #ffdf74;
}

.stv-faq-item {
  margin-top: 0.72rem;
  border: 1px solid rgba(190, 150, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(44, 18, 72, 0.95), rgba(20, 8, 33, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 28px rgba(5, 1, 10, 0.18);
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.stv-faq-item:first-of-type {
  margin-top: 0;
}

.stv-faq-item:hover {
  border-color: rgba(255, 222, 112, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(7, 2, 14, 0.24);
  transform: translateY(-1px);
}

.stv-faq-item[open] {
  border-color: rgba(255, 220, 104, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(180deg, rgba(53, 22, 86, 0.98), rgba(22, 9, 37, 1));
}

.stv-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--stv-text);
  line-height: 1.28;
  padding: 1rem 1.2rem;
  transition: color 0.22s ease, background 0.22s ease;
}

.stv-faq-item summary::-webkit-details-marker {
  display: none;
}

.stv-faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.78rem;
  height: 0.78rem;
  margin-right: 0.1rem;
  border-right: 2px solid #ffdf74;
  border-bottom: 2px solid #ffdf74;
  transform: rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.stv-faq-item summary:hover {
  color: #fff3bf;
}

.stv-faq-item summary:focus-visible {
  outline: 2px solid rgba(255, 223, 116, 0.4);
  outline-offset: -2px;
}

.stv-faq-item[open] summary::after {
  transform: rotate(-135deg) translateY(-0.06rem);
  border-color: #fff0a8;
}

.stv-faq-answer {
  padding: 0 1.2rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 6, 28, 0), rgba(16, 6, 28, 0.34));
}

.stv-faq-answer p:first-child {
  margin-top: 0.9rem;
}

.stv-promo-banner {
  min-height: clamp(17rem, 34vw, 25rem);
}

.stv-promo-banner-card {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(30rem, calc(100% - 2.4rem));
  text-align: center;
}

.stv-promo-banner-card h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.1;
}

.stv-promo-banner-card .stv-primary-link {
  margin-top: 1rem;
}

.stv-page-intro {
  padding-bottom: clamp(1.25rem, 2.5vw, 1.7rem);
}

.stv-author-profile-hero {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.stv-author-profile-hero img {
  width: clamp(8rem, 16vw, 10rem);
  height: clamp(8rem, 16vw, 10rem);
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.stv-contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.stv-contact-form label {
  display: grid;
  gap: 0.35rem;
}

.stv-contact-form input,
.stv-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--stv-text);
}

.stv-contact-form-status {
  color: #ffe071;
}

.stv-footer {
  margin-top: var(--stv-gap);
  padding: clamp(1.2rem, 2.2vw, 1.55rem);
  border-radius: var(--stv-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 201, 40, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(17, 7, 28, 0.98), rgba(10, 3, 18, 0.98));
  box-shadow: var(--stv-shadow-soft);
}

.stv-floating-banner-active .stv-footer {
  padding-bottom: clamp(1.2rem, 2.2vw, 1.55rem);
}

.stv-footer-top,
.stv-footer-bottom {
  display: grid;
  gap: 1rem 1.2rem;
  align-items: start;
}

.stv-footer-top {
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.95fr);
}

.stv-footer-brand-block {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  max-width: 42rem;
}

.stv-footer-copy {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.42;
  max-width: 34rem;
}

.stv-footer-domain {
  width: fit-content;
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--stv-text);
  font-weight: 700;
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.stv-footer-domain:hover,
.stv-footer-domain:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 201, 40, 0.24);
  background: rgba(255, 201, 40, 0.08);
}

.stv-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(32, 14, 51, 0.88), rgba(18, 8, 30, 0.92));
}

.stv-footer-nav a {
  min-height: 3rem;
  padding: 0.72rem 0.92rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffe071;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.stv-footer-nav a:hover,
.stv-footer-nav a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  color: #fff0a9;
}

.stv-footer-nav a:last-child {
  grid-column: 1 / -1;
  justify-content: center;
}

.stv-footer-bottom {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stv-line);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: start;
  gap: 0.75rem;
}

.stv-footer-support {
  min-height: 3.25rem;
  padding: 0.82rem 1rem 0.82rem 1.02rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(111, 67, 190, 0.22), rgba(76, 37, 143, 0.32));
  border: 1px solid rgba(255, 201, 40, 0.16);
  color: #ffe071;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.stv-footer-support::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd54d 0%, #ffb90f 100%);
  box-shadow: 0 0 0 6px rgba(255, 201, 40, 0.12);
}

.stv-footer-support:hover,
.stv-footer-support:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(111, 67, 190, 0.28), rgba(76, 37, 143, 0.4));
  border-color: rgba(255, 201, 40, 0.3);
}

.stv-footer-note {
  margin: 0;
  color: var(--stv-text-muted);
  text-align: left;
  max-width: 34rem;
}

.stv-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 1.2rem;
  background: rgba(3, 0, 6, 0.82);
  backdrop-filter: blur(8px);
}

.stv-modal-dialog {
  width: min(100%, 72rem);
  max-height: min(90vh, 60rem);
  margin: 0 auto;
  background: linear-gradient(180deg, #170a28 0%, #0f061b 100%);
  border-radius: 28px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}

.stv-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--stv-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.stv-modal-header {
  padding-right: 3rem;
}

.stv-modal-header h3 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.stv-modal-frame {
  width: 100%;
  flex: 1 1 auto;
  min-height: 34rem;
  border: 0;
  border-radius: 20px;
  background: #05020b;
}

@media (min-width: 1024px) {
  .stv-modal-header {
    display: none;
  }
}

.stv-floating-banner {
  position: fixed;
  z-index: 50;
  right: 1.1rem;
  bottom: 1.1rem;
  width: min(24rem, calc(100vw - 1.2rem));
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(112, 67, 195, 0.97), rgba(79, 35, 149, 0.97));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0.8rem;
  align-items: center;
}

.stv-floating-banner-text {
  margin: 0;
  color: #fff9ff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 8px 20px rgba(28, 6, 66, 0.28);
}

.stv-floating-banner-cta {
  grid-column: 1 / -1;
  min-height: 2.95rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd44a 0%, #ffbf0f 100%);
  color: #241508;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.stv-floating-banner-close {
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--stv-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 16px rgba(22, 5, 46, 0.18);
  cursor: pointer;
}

.stv-mobile-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.stv-mobile-utility a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  text-align: center;
}

.stv-mobile-utility a.is-current {
  background: rgba(255, 201, 40, 0.18);
  color: #ffe680;
  box-shadow: inset 0 0 0 1px rgba(255, 201, 40, 0.18);
}

@keyframes stv-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .stv-sidebar {
    display: none;
  }

  .stv-body--content .stv-shell,
  .stv-body--service .stv-shell {
    margin-left: 0;
  }

  .stv-mobile-shell {
    display: block;
    margin: 0 auto;
    width: min(100%, var(--stv-content-max));
    padding: var(--stv-gap) var(--stv-gap) 0;
  }

  .stv-mobile-shell-logo img {
    width: min(100%, 12.6rem);
    height: auto;
    margin: 0 auto;
  }

  .stv-mobile-shell-actions {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .stv-mobile-shell-actions .stv-primary-link,
  .stv-mobile-shell-actions .stv-secondary-link {
    min-width: 0;
    width: 100%;
  }

  .stv-content-shell {
    padding-top: var(--stv-gap);
  }

  .stv-slot-grid-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stv-footer-top,
  .stv-footer-bottom,
  .stv-author-card,
  .stv-author-profile-hero {
    grid-template-columns: 1fr;
  }

  .stv-author-card-media {
    display: flex;
    justify-content: center;
  }

  .stv-author-card-media,
  .stv-author-profile-hero img {
    justify-self: center;
  }

  .stv-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stv-footer-nav a:last-child {
    grid-column: 1 / -1;
  }

  .stv-footer-note {
    text-align: left;
    white-space: normal;
  }

  .stv-modal {
    padding: 0;
  }

  .stv-modal-dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    padding: 1rem;
  }

  .stv-modal-frame {
    min-height: 52vh;
  }
}

@media (max-width: 820px) {
  .stv-hero {
    display: grid;
    place-items: center;
    min-height: clamp(24rem, 108vw, 30rem);
    padding: 0;
    background-color: #14091f;
    background-image: var(--stv-hero-bg-mobile-image, var(--stv-hero-bg-image, var(--stv-hero-mobile-fallback)));
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .stv-hero::before {
    display: none;
  }

  .stv-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 2, 14, 0.16) 0%, rgba(7, 2, 14, 0.28) 28%, rgba(7, 2, 14, 0.52) 62%, rgba(7, 2, 14, 0.84) 100%);
    z-index: 1;
  }

  .stv-hero picture,
  .stv-hero-image {
    display: block;
  }

  .stv-hero-card {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    max-width: none;
    width: auto;
    margin: 0;
    z-index: 3;
  }

  .stv-promo-banner-card {
    width: calc(100% - 2rem);
  }

  .stv-table th,
  .stv-table td {
    padding: 0.72rem 0.7rem;
    font-size: 0.95rem;
  }

  .stv-table--payments {
    border-spacing: 0 0.48rem;
  }

  .stv-table--payments thead th {
    padding: 0 0.72rem 0.35rem;
    font-size: 0.74rem;
  }

  .stv-table--payments tbody td {
    padding: 0.8rem 0.72rem;
  }

  .stv-table-method {
    gap: 0.55rem;
  }

  .stv-table-indicator {
    width: 1.82rem;
    height: 1.82rem;
    font-size: 0.92rem;
  }

  .stv-table-time,
  .stv-table-pill,
  .stv-table-fee {
    padding: 0.35rem 0.58rem;
    font-size: 0.86rem;
  }

  .stv-floating-banner {
    left: 0.6rem;
    right: 0.6rem;
    width: auto;
    bottom: 0.6rem;
  }
}

@media (max-width: 720px) {
  .stv-table-wrap {
    padding: 0.72rem;
    padding-bottom: 0.28rem;
  }

  .stv-table {
    min-width: var(--stv-table-min-width, 34rem);
  }

  .stv-table th,
  .stv-table td {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    white-space: normal;
  }

  .stv-table th:first-child,
  .stv-table td:first-child {
    min-width: 8.5rem;
  }

  .stv-table--payments {
    border-spacing: 0 0.48rem;
  }

  .stv-table--payments th:first-child,
  .stv-table--payments td:first-child {
    min-width: 8.25rem;
  }

  .stv-table--bonus-pack {
    min-width: 33rem;
  }

  .stv-table--bonus-pack th,
  .stv-table--bonus-pack td {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  .stv-table--bonus-pack th:first-child,
  .stv-table--bonus-pack td:first-child {
    min-width: 4.5rem;
  }

  .stv-table--bonus-pack th:nth-child(2),
  .stv-table--bonus-pack td:nth-child(2) {
    min-width: 10.5rem;
  }

  .stv-table--bonus-pack th:nth-child(3),
  .stv-table--bonus-pack td:nth-child(3) {
    min-width: 9rem;
  }

  .stv-table--bonus-pack th:nth-child(4),
  .stv-table--bonus-pack td:nth-child(4) {
    min-width: 5rem;
  }

  .stv-table-method {
    gap: 0.58rem;
    align-items: center;
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .stv-table-indicator {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }

  .stv-table-time,
  .stv-table-pill,
  .stv-table-fee {
    padding: 0.52rem 0.72rem;
    border-radius: 18px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .stv-slot-card {
    cursor: pointer;
  }

  .stv-slot-card.is-active {
    outline: 1px solid rgba(255, 211, 75, 0.18);
  }

  .stv-modal.is-mobile-demo {
    padding: 0;
    background: rgba(2, 0, 6, 0.94);
  }

  .stv-modal.is-mobile-demo .stv-modal-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    padding: 0 0.7rem calc(0.72rem + env(safe-area-inset-bottom, 0px));
    background: #05020b;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: minmax(0, 1fr) auto;
    column-gap: 0.65rem;
    row-gap: 0.72rem;
    isolation: isolate;
  }

  .stv-modal.is-mobile-demo .stv-modal-header {
    display: none;
  }

  .stv-modal.is-mobile-demo .stv-modal-close {
    position: relative;
    width: 3rem;
    height: 3rem;
    top: auto;
    right: auto;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    z-index: 7;
    pointer-events: auto;
    background: rgba(8, 3, 15, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
  }

  .stv-modal.is-mobile-demo .stv-modal-frame {
    grid-column: 1 / -1;
    grid-row: 1;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    border-radius: 0;
  }

  .stv-modal.is-mobile-demo .stv-primary-link--wide {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 3.15rem;
    min-width: 0;
    margin: 0;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 4;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 560px) {
  .stv-content-shell {
    padding: 0.85rem;
  }

  .stv-mobile-shell {
    padding: 0.85rem 0.85rem 0;
  }

  .stv-mobile-shell-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .stv-footer {
    padding: 1rem;
  }

  .stv-floating-banner-active .stv-footer {
    padding-bottom: 9rem;
  }

  .stv-footer-nav {
    grid-template-columns: 1fr;
  }

  .stv-footer-nav a:last-child {
    grid-column: auto;
    justify-content: flex-start;
  }

  .stv-footer-support {
    width: 100%;
  }

  .stv-primary-link,
  .stv-secondary-link {
    width: 100%;
  }

  .stv-mobile-shell-actions .stv-primary-link,
  .stv-mobile-shell-actions .stv-secondary-link {
    min-height: 3rem;
    min-width: 0;
    padding: 0.78rem 0.78rem;
    font-size: 0.96rem;
    white-space: nowrap;
  }

  .stv-slot-reveal {
    width: 3.35rem;
    height: 3.35rem;
  }

  .stv-slot-action {
    min-height: 2.6rem;
    font-size: 0.95rem;
  }

  .stv-promo-banner-card,
  .stv-hero-card {
    padding: 1.15rem 1rem 1.3rem;
  }

  .stv-hero {
    min-height: clamp(23rem, 104vw, 28rem);
  }

  .stv-hero-card {
    left: 0.7rem;
    right: 0.7rem;
  }

  .stv-hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
  }

  .stv-promo-banner {
    min-height: 19.5rem;
  }

  .stv-promo-banner-card h3 {
    font-size: 1.45rem;
  }

  .stv-promo-banner p {
    margin-top: 0.65rem;
    font-size: 1rem;
    line-height: 1.4;
  }

  .stv-floating-banner {
    grid-template-columns: auto 1fr;
    column-gap: 0.78rem;
    row-gap: 0.72rem;
    padding: 0.9rem;
  }

  .stv-floating-banner-text {
    font-size: 1.02rem;
  }

  .stv-floating-banner-cta {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .stv-slot-card:hover .stv-slot-actions,
  .stv-slot-card:focus-within .stv-slot-actions {
    z-index: 3;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .stv-slot-card:hover .stv-slot-actions *,
  .stv-slot-card:focus-within .stv-slot-actions * {
    pointer-events: auto;
  }

  .stv-slot-card:hover .stv-slot-reveal,
  .stv-slot-card:focus-within .stv-slot-reveal {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }
}
