﻿* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  --s4-shell-max: 700px;
  --s4-ink: #0f172a;
  --s4-navy: #0b1220;
  --s4-slate: #334155;
  --s4-cyan: #06b6d4;
  --s4-magenta: #e11d48;
  --s4-mist: #f0f5fa;
  --s4-surface: #f0f5fa;
  --s4-line: rgba(6, 182, 212, .18);
}
body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--s4-ink);
  background:
    radial-gradient(900px 480px at 90% -8%, rgba(6, 182, 212, .28), transparent 55%),
    radial-gradient(700px 420px at 0% 15%, rgba(12, 74, 110, .45), transparent 50%),
    linear-gradient(165deg, #0b1220 0%, #0f172a 45%, #0c4a6e 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
body.lang-hi { font-family: "Noto Sans Devanagari", "IBM Plex Sans", system-ui, sans-serif; }
.s4-shell {
  --s4-shell-max: 700px;
  --s4-header-band: 72px;
  width: min(100%, var(--s4-shell-max));
  max-width: var(--s4-shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(
      180deg,
      #0b1220 0%,
      #0f172a var(--s4-header-band),
      var(--s4-mist) var(--s4-header-band),
      #e8eef5 100%
    );
  box-shadow: 0 0 0 1px rgba(6, 182, 212, .22), 0 22px 56px rgba(0, 0, 0, .45);
  border-radius: 0 0 8px 8px;
}
.s4-wrap { max-width: none; margin: 0 auto; padding: 0 1.15rem; }
img,
video {
  max-width: 100%;
  height: auto;
}
.s4-dim { color: #64748b; }
.s4-center { text-align: center; }
.s4-box {
  background: var(--s4-surface);
  border-radius: 6px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 4px 18px rgba(11, 18, 32, .08);
  margin-bottom: 1.05rem;
  border: 1px solid var(--s4-line);
  border-left: 3px solid var(--s4-cyan);
}

/* Header */
.s4-topbar {
  background: #0b1220;
  color: #f8fafc;
  padding: 0.4rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(6, 182, 212, .65), 0 8px 24px rgba(0, 0, 0, .32);
}

.s4-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 58px;
}
.s4-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
  margin-left: -0.15rem;
}
.s4-logo {
  display: block;
  height: 54px;
  width: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  image-rendering: auto;
}

/* Breadcrumb bar (below header) */
.s4-crumb {
  background: #e8eef5;
  border-bottom: 1px solid rgba(6, 182, 212, .2);
}
.s4-crumb-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.6rem;
}
.s4-crumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}
.s4-crumb-item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  color: #64748b;
}
.s4-crumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 0.45rem;
  color: #94a3b8;
  font-weight: 600;
  flex-shrink: 0;
}
.s4-crumb-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.28rem 0.4rem;
  margin: -0.28rem -0.4rem;
  border-radius: 4px;
  color: #0891b2;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.s4-crumb-link:hover {
  color: #0e7490;
  background: rgba(6, 182, 212, .12);
  text-decoration: none;
}
.s4-crumb-link:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 1px;
  background: rgba(6, 182, 212, .12);
}
.s4-crumb-now {
  display: inline;
  color: #1e293b;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.s4-crumb-item.s4-now {
  flex: 1 1 auto;
  min-width: 0;
}

/* Menu toggle — 2x2 grid dots */
.s4-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(6, 182, 212, .55);
  border-radius: 4px;
  background: rgba(11, 18, 32, .55);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.s4-burger:hover {
  border-color: #06b6d4;
  background: rgba(12, 74, 110, .45);
}
.s4-burger-grid {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 4px;
  transition: transform .2s ease, opacity .2s ease;
}
.s4-burger-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #06b6d4;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
body.s4-panel-open .s4-burger-grid {
  transform: rotate(45deg);
}
body.s4-panel-open .s4-burger-dot:nth-child(2),
body.s4-panel-open .s4-burger-dot:nth-child(3) {
  opacity: 0;
}

/* Slide drawer — pin to measured .s4-shell bounds (--s4-shell-left / --s4-shell-width from JS) */
.s4-panel-root {
  position: fixed;
  top: 0;
  bottom: 0;
  left: var(--s4-shell-left, 0px);
  width: var(--s4-shell-width, 100%);
  max-width: var(--s4-shell-max, 700px);
  z-index: 60;
  overflow: hidden;
  pointer-events: none;
  box-sizing: border-box;
}
body.s4-panel-open .s4-panel-root {
  pointer-events: auto;
}
.s4-panel-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .6);
  z-index: 1;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
body.s4-panel-open .s4-panel-mask {
  opacity: 1;
  pointer-events: auto;
}
.s4-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 86%);
  max-width: 100%;
  height: 100%;
  background: linear-gradient(185deg, #0b1220 0%, #0f172a 55%, #0c4a6e 100%);
  color: #fff;
  z-index: 2;
  transform: translateX(100%);
  transition: transform .28s ease;
  box-shadow: -10px 0 36px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  padding: 1rem 1.15rem 1.4rem;
  pointer-events: auto;
  box-sizing: border-box;
  border-left: 3px solid #06b6d4;
}
body.s4-panel-open { overflow: hidden; }
body.s4-panel-open .s4-panel { transform: translateX(0); }
.s4-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(6, 182, 212, .28);
}
.s4-panel-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex: 1;
  min-width: 0;
}
.s4-panel-logo {
  height: 48px;
  max-height: 48px;
}
.s4-panel-x {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(6, 182, 212, .45);
  border-radius: 4px;
  background: rgba(12, 74, 110, .45);
  color: #67e8f9;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s4-panel-nav {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
  overflow-y: auto;
}
.s4-panel-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  padding: .72rem .9rem;
  border-radius: 4px;
  transition: background .15s, color .15s, transform .15s;
}
.s4-panel-ico {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(6, 182, 212, 0.14);
  color: #06b6d4;
  transition: background .15s, color .15s;
}
.s4-panel-ico svg {
  display: block;
}
.s4-panel-lbl {
  min-width: 0;
  line-height: 1.3;
}
.s4-panel-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.s4-panel-link:hover .s4-panel-ico {
  background: rgba(6, 182, 212, 0.28);
  color: #a5f3fc;
}
.s4-panel-cta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(6, 182, 212, .28);
}
.s4-panel-cta .s4-action { width: 100%; }

.s4-main {
  padding-top: 1.35rem;
  padding-bottom: 3rem;
  min-width: 0;
}
body.s4-is-home .s4-main {
  padding-top: 1.15rem;
}

/* Buttons 鈥?indigo / cyan / magenta system */
.s4-action {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.15rem; border-radius: 4px; text-decoration: none;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-weight: 700; letter-spacing: .02em;
  border: 2px solid transparent; transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
}
.s4-action:hover { transform: translateX(3px); box-shadow: 0 6px 16px rgba(225, 29, 72, .22); }
.s4-action-sm { padding: .42rem .8rem; font-size: .85rem; border-radius: 4px; }
.s4-action-lg { padding: .9rem 1.4rem; font-size: 1.05rem; min-width: 160px; }
.s4-action-main { background: #e11d48; color: #fff; border-color: #be123c; }
.s4-action-alt { background: transparent; color: #67e8f9; border-color: rgba(6, 182, 212, .65); }
.s4-action-alt:hover { background: rgba(6, 182, 212, .12); }
.s4-action-accent { background: #06b6d4; color: #0b1220; border-color: #0891b2; }
.s4-action-line { background: #fff; color: #0891b2; border-color: rgba(6, 182, 212, .45); }
.s4-action-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.cta-row-lg { margin-top: 1.25rem; }

/* Home CTAs 鈥?full-width rectangular bars */
.s4-hero-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.65rem;
  margin-bottom: 1rem;
}
@media (max-width: 420px) {
  .s4-hero-cta { grid-template-columns: 1fr; }
}
a.s4-cta,
.s4-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  border: 2px solid transparent;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
a.s4-cta:hover,
.s4-cta:hover {
  transform: translateX(4px);
}
a.s4-cta:active,
.s4-cta:active {
  transform: translateX(2px);
}
a.s4-cta:focus-visible,
.s4-cta:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}
.s4-cta-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}
.s4-cta-ico svg {
  display: block;
}
.s4-cta-lbl {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.s4-cta-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-left: auto;
  border-radius: 4px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.14);
}
a.s4-cta-login,
.s4-cta-login {
  color: #fff !important;
  background: #e11d48;
  border-color: #be123c;
  box-shadow: 0 3px 0 #9f1239;
}
a.s4-cta-login:hover,
.s4-cta-login:hover {
  color: #fff !important;
  background: #f43f5e;
  border-color: #e11d48;
}
a.s4-cta-reg,
.s4-cta-reg {
  color: #0b1220 !important;
  background: transparent;
  border-color: #06b6d4 !important;
  box-shadow: none;
}
a.s4-cta-reg:hover,
.s4-cta-reg:hover {
  color: #0b1220 !important;
  background: rgba(6, 182, 212, .12);
  border-color: #22d3ee !important;
}
.s4-cta-reg .s4-cta-ico,
.s4-cta-reg .s4-cta-arrow {
  background: rgba(6, 182, 212, 0.14);
  color: #0891b2;
}

/* Home s4-fallback-hero / trust s4-box */
.home-hero { padding: 1.25rem 1.5rem 1.5rem; }
.trust-card { display: flex; flex-direction: column; gap: 1.1rem; }
.trust-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #faf3e3 0%, #f0e2c8 100%);
  border: 1px solid #e2d0b0;
}
.trust-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  flex: 1;
}
.trust-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(145deg, #67e8f9, #06b6d4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 2px 6px rgba(120,80,10,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}
.trust-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.trust-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1e293b;
  letter-spacing: -.01em;
}
.trust-score-block {
  text-align: center;
  background: linear-gradient(160deg, #9a6b42, #7a5230);
  color: #fff;
  border-radius: 10px;
  padding: .4rem .85rem .35rem;
  box-shadow: 0 2px 8px rgba(90,55,20,.25);
  flex-shrink: 0;
}
.trust-score {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}
.trust-score-stars {
  color: #06b6d4;
  font-size: .72rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: .15rem;
}
.trust-score-stars .star-half {
  opacity: .45;
}
.trust-info {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #94a3b8;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 0;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.trust-info:hover { color: #7a5230; border-color: #d4b896; }
.trust-body h1 {
  margin: 0 0 .6rem;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.3;
  color: #0f172a;
}
.trust-body .s4-lead { color: #475569; margin: 0; font-size: .95rem; }
.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .9rem;
}
.trust-tag {
  background: #f5efe4;
  color: #5c4033;
  border: 1px solid #e8dcc8;
  padding: .4rem .75rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}
.trust-link {
  display: block;
  width: 100%;
  text-align: center;
  color: #8b5e3c;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.trust-link:hover { color: #6b4423; }
.s4-lead { color: #475569; margin: 0; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(2px);
}
.modal-overlay[hidden] { display: none; }
.modal-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem 1.75rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, .25);
  border: 1px solid rgba(148, 163, 184, .2);
}
.modal-dialog h2 {
  margin: 0 2rem 1rem 0;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #0f172a;
}
.modal-dialog p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}
.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: #e2e8f0; color: #0f172a; }
body.s4-modal-open { overflow: hidden; }

.s4-ticker {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #0b1220, #0c4a6e);
  color: #a5f3fc;
  font-size: 13px;
  font-weight: 600;
  height: 38px;
  overflow: hidden;
  padding: 0 12px;
  margin-bottom: 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(6, 182, 212, .35);
}
.s4-ticker-ico {
  flex-shrink: 0;
  margin-right: 8px;
  color: #06b6d4;
  line-height: 1;
  display: inline-flex;
}
.s4-ticker-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.s4-ticker-text {
  display: inline-block;
  white-space: nowrap;
  animation: announcement-marquee 12s linear infinite;
}
.s4-ticker-go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border-radius: 4px;
  color: #67e8f9;
  background: rgba(6, 182, 212, .18);
  border: 1px solid rgba(6, 182, 212, .45);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.s4-ticker-go:hover {
  color: #fff;
  background: rgba(6, 182, 212, .35);
  border-color: #22d3ee;
  transform: translateX(2px);
}
@keyframes announcement-marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .s4-ticker-text { animation: none; }
}

.s4-notice { padding: 1.25rem 1.35rem; }
.s4-notice-head { margin-bottom: .75rem; }
.s4-notice-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.s4-notice-ico { font-size: 1rem; line-height: 1; }
.s4-notice-list { display: flex; flex-direction: column; }
.s4-notice-item {
  font-size: .9rem;
  color: #475569;
  line-height: 1.65;
  padding: .75rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.s4-notice-item:last-child { border-bottom: none; padding-bottom: 0; }
.s4-notice-item:first-child { padding-top: 0; }

/* Messages */
.s4-msgs {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
}

/* Download page */
.s4-dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}
.s4-dl-lead {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 700;
  color: #1e293b;
  background: rgba(255, 255, 255, .92);
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, .25);
  box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
}
.download-media-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: repeating-linear-gradient(
    -45deg,
    rgba(148, 163, 184, .08),
    rgba(148, 163, 184, .08) 8px,
    rgba(148, 163, 184, .04) 8px,
    rgba(148, 163, 184, .04) 16px
  );
  border: 2px dashed rgba(100, 116, 139, .35);
  border-radius: 10px;
  color: #94a3b8;
}
.download-slot-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-align: center;
  padding: 0.35rem;
  line-height: 1.35;
}
.s4-dl-app {
  padding: 1.05rem 1rem 1.1rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(6, 182, 212, .22);
  border-left: 3px solid #06b6d4;
  box-shadow: 0 4px 16px rgba(11, 18, 32, .06);
}
.s4-dl-app-layout {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  min-width: 0;
}
.s4-dl-app-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.s4-dl-app-title {
  margin: 0;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.s4-dl-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}
.s4-dl-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.5rem 0.55rem;
  background: #f0f5fa;
  border: 1px solid rgba(6, 182, 212, .18);
  border-radius: 4px;
}
.s4-dl-meta-k {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0891b2;
  font-weight: 700;
  line-height: 1.2;
}
.s4-dl-meta-v {
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}
.s4-dl-specs {
  margin: 0 0 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.s4-dl-spec-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.82rem;
}
.s4-dl-spec-row dt {
  min-width: 4.8rem;
  margin: 0;
  color: #64748b;
  font-weight: 700;
}
.s4-dl-spec-row dd {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}
.s4-dl-stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.s4-dl-store-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  transition: transform .12s ease, opacity .12s ease;
}
.s4-dl-store-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.s4-dl-store-badge {
  display: block;
  height: 1.85rem;
  width: auto;
  max-width: none;
  max-height: 1.85rem;
  object-fit: contain;
  flex-shrink: 0;
}
.s4-dl-icon-wrap {
  flex: 0 0 5.25rem;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 10px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(6, 182, 212, .35);
  box-shadow: 0 4px 12px rgba(11, 18, 32, .14);
}
.s4-dl-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s4-dl-app-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  background: #e11d48;
  color: #fff;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 3px 0 #9f1239;
  border: 2px solid #be123c;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.s4-dl-app-cta:hover {
  transform: translateX(3px);
  background: #f43f5e;
  box-shadow: 0 3px 0 #9f1239, 0 8px 18px rgba(225, 29, 72, .25);
}
.s4-dl-cta-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s4-dl-cta-text {
  min-width: 0;
}
.s4-dl-cta-down {
  line-height: 1;
}
.s4-dl-cta-gift {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .2));
}
.s4-dl-audit {
  padding: 1rem 1rem 0.85rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #fdba74;
  box-shadow: 0 8px 24px rgba(234, 88, 12, .12);
}
.s4-dl-h {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.45;
  color: #7c2d12;
}
.s4-dl-h-audit {
  text-align: center;
  font-size: 0.95rem;
}
.s4-dl-audit-panel {
  padding: 0.85rem 0.9rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fb923c 0%, #f97316 100%);
  border: 1px solid #ea580c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
}
.s4-dl-audit-hi {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(124, 45, 18, .25);
}
.s4-dl-audit-list {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.s4-dl-audit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
}
.s4-dl-audit-dot {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 900;
}
.s4-dl-audit-acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.s4-dl-audit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.4rem;
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform .12s ease;
}
.s4-dl-audit-cta:hover { transform: translateY(-1px); }
.s4-dl-audit-main {
  background: linear-gradient(180deg, #fff 0%, #fef3c7 100%);
  color: #9a3412;
  border: 1px solid #fed7aa;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}
.s4-dl-audit-bonus {
  background: linear-gradient(180deg, #fde047 0%, #facc15 100%);
  color: #713f12;
  border: 1px solid #eab308;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}
.s4-dl-audit-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: #9a3412;
  text-align: center;
  opacity: 0.92;
}
.s4-dl-banner {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(6, 182, 212, .35);
  background: #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .25);
  overflow: hidden;
  text-decoration: none;
}
.s4-dl-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.s4-dl-banner .download-slot-label {
  color: rgba(253, 230, 138, .55);
}
.s4-dl-steps {
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffbea 0%, #fef9c3 100%);
  border: 2px solid #eadf9a;
  box-shadow: 0 6px 20px rgba(90, 70, 10, .08);
}
.s4-dl-center-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 900;
  color: #3d4f1f;
  text-align: center;
}
.s4-dl-steps-h {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
}
.s4-dl-steps-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.s4-dl-step {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(201, 162, 39, .28);
}
.s4-dl-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(37, 99, 235, .3);
}
.s4-dl-step p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #334155;
  padding-top: 0.15rem;
}
.s4-dl-faq {
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffbea 0%, #fef9c3 100%);
  border: 2px solid #d4af37;
  box-shadow: 0 6px 20px rgba(90, 70, 10, .1);
}
.s4-dl-faq .s4-dl-h {
  color: #3d4f1f;
  text-align: center;
  margin-bottom: 0.85rem;
}
.s4-dl-faq-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #c9b86a;
  background: #fff;
}
.s4-dl-faq-tabs {
  display: flex;
  flex-direction: column;
}
.s4-dl-faq-tab {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-bottom: 1px solid rgba(217, 119, 6, .35);
  border-radius: 0;
  background: #fff8e7;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  color: #57534e;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.s4-dl-faq-tab:hover {
  background: rgba(6, 182, 212, .12);
  color: #0b1220;
}
.s4-dl-faq-tab.s4-on {
  background: linear-gradient(180deg, #67e8f9 0%, #06b6d4 100%);
  color: #0b1220;
  border-bottom-color: #0891b2;
}
.s4-dl-faq-tab:last-child {
  border-bottom: 0;
}
.s4-dl-faq-tab:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: -2px;
  z-index: 1;
}
.s4-dl-faq-body {
  padding: 0.95rem 1rem 1.1rem;
  background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
  border-top: 2px solid #06b6d4;
  min-height: 4.5rem;
}
.s4-dl-faq-ans {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #475569;
}
.s4-dl-faq-ans[hidden] {
  display: none;
}

/* Register */
.s4-reg {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s4-reg-hero {
  padding: 0.15rem 0.15rem 0.35rem;
}
.s4-reg-title {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
  color: #6b3f12;
}
.s4-reg-sub {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  color: #92400e;
}
.s4-reg-banner {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .25);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .1);
  transition: transform .15s ease, box-shadow .15s ease;
}
.s4-reg-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
}
.s4-reg-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.s4-reg-auth,
.s4-login-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.s4-reg-btn,
.s4-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s, filter .15s;
}
.s4-reg-btn:hover,
.s4-login-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.s4-reg-btn-in,
.s4-login-btn-in {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .28);
}
.s4-reg-btn-up,
.s4-login-btn-up {
  background: linear-gradient(180deg, #4ade80 0%, #16a34a 55%, #15803d 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(22, 163, 74, .32);
}
.s4-reg-dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #8b5a2b 0%, #6b3f12 55%, #4a2c0a 100%);
  color: #fff8e7;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(74, 44, 10, .28);
  border: 1px solid #3f2a12;
}
.s4-reg-dl:hover {
  filter: brightness(1.05);
}
.s4-reg-dl-arrow {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .16);
  font-size: 1.05rem;
}
.s4-reg-dl-note {
  margin: -0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s4-reg-h {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.4;
  color: #5b3a14;
}
.s4-reg-h-mid {
  text-align: center;
}
.s4-reg-steps {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffaf0 0%, #f5e6c8 100%);
  border: 2px solid #d4af37;
  box-shadow: 0 6px 20px rgba(90, 70, 10, .1);
}
.s4-reg-steps-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.s4-reg-steps-list::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 2px;
  background: linear-gradient(180deg, #f59e0b, #0891b2);
  opacity: .55;
}
.s4-reg-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  position: relative;
}
.s4-reg-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #06b6d4, #0891b2);
  color: #0b1220;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(180, 83, 9, .25);
  z-index: 1;
}
.s4-reg-step p {
  margin: 0;
  padding-top: 0.3rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #44403c;
  font-weight: 700;
}
.s4-reg-steps-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #4ade80 0%, #16a34a 55%, #15803d 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(22, 163, 74, .35);
  border: 1px solid #166534;
}
.s4-reg-steps-cta:hover {
  transform: translateY(-1px);
}
.s4-reg-cmp {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  border: 2px solid #fdba74;
  box-shadow: 0 6px 20px rgba(234, 88, 12, .1);
}
.s4-reg-cmp-pill {
  display: inline-flex;
  margin: 0 auto 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid #ef4444;
  color: #b91c1c;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  background: #fff;
}
.s4-reg-cmp .s4-reg-cmp-pill {
  display: flex;
  width: fit-content;
}
.s4-reg-cmp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e7e5e4;
  background: #fff;
}
.s4-reg-cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
  font-size: 0.78rem;
}
.s4-reg-cmp-table th,
.s4-reg-cmp-table td {
  padding: 0.65rem 0.55rem;
  border-bottom: 1px solid #f5f5f4;
  text-align: center;
  vertical-align: middle;
}
.s4-reg-cmp-table thead th {
  background: #fff7ed;
  color: #9a3412;
  font-weight: 900;
}
.s4-reg-cmp-table tbody th {
  text-align: left;
  font-weight: 700;
  color: #44403c;
  width: 46%;
}
.s4-reg-cmp-table tbody tr:last-child th,
.s4-reg-cmp-table tbody tr:last-child td {
  border-bottom: 0;
}
.s4-reg-mark {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
}
.s4-reg-yes {
  background: #dcfce7;
  color: #15803d;
}
.s4-reg-no {
  background: #fee2e2;
  color: #b91c1c;
}
.s4-reg-cmp-note {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #78716c;
  text-align: center;
}
.s4-reg-rewards {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 2px solid #86efac;
  box-shadow: 0 6px 20px rgba(22, 163, 74, .1);
}
.s4-reg-rewards-sub {
  margin: -0.35rem 0 0.9rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #3f6212;
  font-weight: 700;
}
.s4-reg-rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.s4-reg-reward {
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #bbf7d0;
}
.s4-reg-reward h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 900;
  color: #166534;
}
.s4-reg-reward p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #475569;
}
.s4-reg-faq {
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffbea 0%, #fef9c3 100%);
  border: 2px solid #d4af37;
  box-shadow: 0 6px 20px rgba(90, 70, 10, .1);
}
.s4-reg-faq-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #c9b86a;
  background: #fff;
}
.s4-reg-faq-tabs {
  display: flex;
  flex-direction: column;
}
.s4-reg-faq-tab {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-bottom: 1px solid rgba(217, 119, 6, .35);
  border-radius: 0;
  background: #fff8e7;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  color: #57534e;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.s4-reg-faq-tab:hover {
  background: rgba(6, 182, 212, .12);
  color: #0b1220;
}
.s4-reg-faq-tab.s4-on {
  background: linear-gradient(180deg, #67e8f9 0%, #06b6d4 100%);
  color: #0b1220;
}
.s4-reg-faq-tab:last-child {
  border-bottom: 0;
}
.s4-reg-faq-tab:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: -2px;
  z-index: 1;
}
.s4-reg-faq-body {
  padding: 0.95rem 1rem 1.1rem;
  background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
  border-top: 2px solid #06b6d4;
  min-height: 4.5rem;
}
.s4-reg-faq-ans {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #475569;
}
.s4-reg-faq-ans[hidden] {
  display: none;
}

/* Login */
.s4-login {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s4-login-title {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
  color: #6b3f12;
}
.s4-login-sub {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  color: #92400e;
}
.s4-login-banner {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .25);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .1);
  background: #0b1f14;
}
.s4-login-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  vertical-align: middle;
}
.s4-login-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #0c4a6e 0%, #0b1220 45%, #8b6914 100%);
  color: #fff8e7;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(139, 105, 20, .28);
  border: 1px solid #7a5c10;
}
.s4-login-app-arrow {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .16);
  font-size: 1.05rem;
}
.s4-login-app-note {
  margin: -0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s4-login-h {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.4;
  color: #5b3a14;
}
.s4-login-h-mid {
  text-align: center;
}
.s4-login-steps,
.s4-login-cmp,
.s4-login-sec,
.s4-login-faq {
  padding: 1rem;
  border-radius: 16px;
  border: 2px solid #d4af37;
  box-shadow: 0 6px 20px rgba(90, 70, 10, .1);
}
.s4-login-steps {
  background: linear-gradient(180deg, #fffaf0 0%, #f5e6c8 100%);
}
.s4-login-steps-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.s4-login-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
}
.s4-login-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #06b6d4, #0891b2);
  color: #0b1220;
  font-weight: 900;
  font-size: 0.9rem;
}
.s4-login-step p {
  margin: 0;
  padding-top: 0.3rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #44403c;
  font-weight: 700;
}
.s4-login-steps-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, .35);
  border: 1px solid #1e40af;
}
.s4-login-cmp {
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  border-color: #fdba74;
}
.s4-login-cmp-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
}
.s4-login-cmp-card {
  padding: 0.75rem 0.65rem;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.45;
}
.s4-login-cmp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}
.s4-login-cmp-card ul {
  margin: 0;
  padding-left: 1rem;
}
.s4-login-cmp-card li {
  margin-bottom: 0.35rem;
}
.s4-login-cmp-bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.s4-login-cmp-good {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.s4-login-cmp-badge {
  align-self: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #67e8f9, #06b6d4);
  color: #0b1220;
  font-size: 0.7rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(180, 83, 9, .25);
}
.s4-login-sec {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f4 100%);
  border-color: #d6d3d1;
}
.s4-login-sec-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.s4-login-sec-row {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e7e5e4;
}
.s4-login-sec-row h3 {
  margin: 0 0 0.3rem;
  font-size: 0.85rem;
  font-weight: 900;
  color: #44403c;
}
.s4-login-sec-row p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #57534e;
}
.s4-login-faq {
  background: linear-gradient(180deg, #fffbea 0%, #fef9c3 100%);
}
.s4-login-faq-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #c9b86a;
  background: #fff;
}
.s4-login-faq-tabs {
  display: flex;
  flex-direction: column;
}
.s4-login-faq-tab {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-bottom: 1px solid rgba(217, 119, 6, .35);
  border-radius: 0;
  background: #fff8e7;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  color: #57534e;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.s4-login-faq-tab.s4-on {
  background: linear-gradient(180deg, #67e8f9 0%, #06b6d4 100%);
  color: #0b1220;
}
.s4-login-faq-tab:last-child {
  border-bottom: 0;
}
.s4-login-faq-body {
  padding: 0.95rem 1rem 1.1rem;
  background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
  border-top: 2px solid #06b6d4;
  min-height: 4.5rem;
}
.s4-login-faq-ans {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #475569;
}
.s4-login-faq-ans[hidden] {
  display: none;
}
@media (max-width: 480px) {
  .s4-login-cmp-vs {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .s4-login-cmp-badge {
    justify-self: center;
  }
}

.s4-trust {
  margin: 0 0 1rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffbea 0%, #fff8dc 100%);
  border: 2px solid #d4af37;
  box-shadow: 0 6px 20px rgba(90, 70, 10, .1);
}
.s4-trust-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: #3d4f1f;
  text-align: center;
}
.s4-cert-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.85rem;
}
.s4-cert {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  flex: 0 1 auto;
}
.s4-cert-age {
  height: 2.4rem;
  max-width: 2.4rem;
}
.s4-trust-note {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
}
@media (max-width: 750px) {
  .s4-cert {
    height: 2.35rem;
    max-width: 6.5rem;
  }
  .s4-cert-age {
    height: 2.1rem;
    max-width: 2.1rem;
  }
  .s4-dl-app-layout {
    gap: 0.7rem;
  }
  .s4-dl-icon-wrap {
    flex-basis: 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .s4-dl-meta {
    grid-template-columns: 1fr;
  }
  .s4-dl-meta-item {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.65rem;
  }
  .s4-dl-audit-acts {
    grid-template-columns: 1fr;
  }
}

/* Hot games carousel */
.s4-hot {
  background: linear-gradient(180deg, #f0f5fa 0%, #e8eef5 100%);
  border: 1px solid rgba(6, 182, 212, .18);
  border-radius: 6px;
  padding: 1rem 0 1.1rem;
  margin-bottom: 1.05rem;
  box-shadow: 0 4px 16px rgba(11, 18, 32, .06);
  min-width: 0;
  overflow: hidden;
}
.s4-hot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 0 1rem .75rem;
}
.s4-hot-title {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
}
.s4-hot-flame {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}
.s4-hot-title h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: .01em;
}
.s4-hot-all {
  flex-shrink: 0;
  color: #64748b;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color .15s;
}
.s4-hot-all:hover { color: #0f172a; }
.s4-hot-row {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding: 0 1rem .15rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
}
.s4-hot-row::-webkit-scrollbar { display: none; }
.s4-hot-card {
  position: relative;
  flex: 0 0 calc((100% - 1.3rem) / 3);
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #1e1e1e;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}
.s4-hot-link {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}
.s4-hot-cover {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  background: #2a2a2a;
}
.s4-hot-fav {
  position: absolute;
  top: .4rem;
  right: .4rem;
  z-index: 2;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, .45);
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, transform .15s;
}
.s4-hot-fav:hover { background: rgba(0, 0, 0, .65); transform: scale(1.05); }
.s4-hot-fav.s4-on {
  color: #06b6d4;
  background: rgba(0, 0, 0, .6);
}
.s4-hot-badge {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .12rem .38rem .12rem .28rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(220, 38, 38, .45);
}
.s4-hot-badge::before {
  content: "⚡";
  font-size: .58rem;
  line-height: 1;
}
.s4-hot-scrollhint {
  display: flex;
  justify-content: center;
  padding: .7rem 1rem 0;
}
.s4-hot-track {
  position: relative;
  width: min(7.5rem, 42%);
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .12);
  overflow: hidden;
}
.s4-hot-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fb923c, #ef4444);
  transition: transform .12s ease-out, width .12s ease-out;
}
.s4-hot-scrollhint.s4-hidden {
  opacity: 0;
  pointer-events: none;
}

.guides-section h2,
.security-section h2, .s4-reviews h2, .payment-section h2, .faq-section h2 {
  margin-top: 0; font-size: 1.25rem;
}

/* Entrance banner */
.entrance-section.s4-box {
  padding: 1.25rem 1.35rem 1.35rem;
}
.entrance-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.entrance-star {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}
.entrance-star svg {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(30, 58, 95, .12));
}
.entrance-heading {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f5c4a;
  letter-spacing: 0.01em;
}
.entrance-banner {
  border: 2px solid #c9a227;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92) 0%, rgba(255,249,230,.95) 45%, rgba(245,230,184,.9) 100%),
    repeating-linear-gradient(45deg, rgba(201,162,39,.06) 0 8px, transparent 8px 16px);
  box-shadow: 0 10px 28px rgba(120, 90, 20, .12);
  overflow: hidden;
}
.entrance-banner-grid {
  display: block;
  min-height: 220px;
}
.entrance-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0 0.75rem 0.9rem;
}
.s4-enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem 0.55rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1;
  min-height: 42px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform .15s, box-shadow .15s;
}
.s4-enter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.s4-enter-ico {
  display: inline-flex;
  flex-shrink: 0;
}
.s4-enter-lbl { white-space: nowrap; }
.s4-enter-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.s4-enter-official {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
}
.s4-enter-official .s4-enter-arrow {
  background: rgba(0,0,0,.18);
  color: #fff;
}
.s4-enter-apk {
  background: linear-gradient(180deg, #fde047, #facc15);
  color: #2c1810;
}
.s4-enter-apk .s4-enter-arrow {
  background: rgba(44,24,16,.12);
  color: #2c1810;
}
.s4-enter-visual {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.entrance-visual-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.s4-enter-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

/* Games */
.games-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
}
.game-tile {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: 1rem .5rem; background: #f1f5f9; border-radius: 12px;
  font-size: .85rem; font-weight: 600; text-align: center;
  border: 1px solid #e2e8f0; transition: background .15s;
}
.game-tile:hover { background: #e0e7ff; }
.game-icon { font-size: 1.5rem; }

/* Bonus */
.bonus-section {
  margin-bottom: 1.25rem;
}
.bonus-section-label {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  color: #6b5a1a;
  letter-spacing: 0.01em;
}
.bonus-section-label::after {
  content: ":";
}
.bonus-card {
  position: relative;
  margin-top: 0.45rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 14px;
  background: #fffbea;
  border: 1px solid #eadf9a;
  box-shadow: 0 6px 18px rgba(90, 70, 10, .08);
}
.bonus-card::before,
.bonus-card::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 5px;
  border-radius: 10px 10px 0 0;
  background: #f7f0d6;
  border: 1px solid #eadf9a;
  border-bottom: none;
  pointer-events: none;
}
.bonus-card::before {
  top: -9px;
  opacity: 0.75;
}
.bonus-card::after {
  top: -5px;
  opacity: 0.92;
}
.bonus-card-title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  color: #3d4f1f;
}
.bonus-banner-promo {
  display: block;
  margin-bottom: 0.9rem;
  text-decoration: none;
  color: inherit;
}
.bonus-banner-frame {
  position: relative;
  padding: 0.45rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #1e3a5f 0%, #0f172a 45%, #1a2744 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 8px 22px rgba(15, 23, 42, .28),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.bonus-banner-promo:hover .bonus-banner-frame,
.bonus-banner-promo:focus-visible .bonus-banner-frame {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, .34),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}
.bonus-banner-promo:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 3px;
  border-radius: 16px;
}
.bonus-banner-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #67e8f9, #06b6d4 40%, #c9b86a 70%, #fde68a);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.bonus-banner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  padding: 0 0.15rem;
}
.bonus-banner-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(37, 99, 235, .35);
}
.bonus-banner-live {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(220, 38, 38, .18);
  border: 1px solid rgba(248, 113, 113, .45);
  color: #fecaca;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bonus-banner-live::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
  animation: bonusLivePulse 1.4s ease-in-out infinite;
}
@keyframes bonusLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.bonus-banner-viewport {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, .2);
}
.bonus-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.bonus-banner-promo:hover .bonus-banner-img {
  transform: scale(1.03);
  filter: brightness(1.06) saturate(1.08);
}
.bonus-banner-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .35) 0%, transparent 28%, transparent 72%, rgba(15, 23, 42, .55) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(15, 23, 42, .25) 100%);
  pointer-events: none;
}
.bonus-banner-shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, .14) 48%,
    transparent 58%
  );
  transform: translateX(-120%);
  animation: bonusBannerShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bonusBannerShine {
  0%, 72% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.bonus-banner-overlay-title {
  position: absolute;
  left: 0.55rem;
  bottom: 0.45rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(15, 23, 42, .72);
  border: 1px solid rgba(6, 182, 212, .35);
  color: #fde68a;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}
.bonus-banner-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.45rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(6, 182, 212, .12), rgba(245, 158, 11, .06));
  border: 1px solid rgba(6, 182, 212, .22);
}
.bonus-banner-strip-text {
  flex: 1;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bonus-banner-strip-cta {
  flex-shrink: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #06b6d4, #0891b2);
  color: #1a1205;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(217, 119, 6, .35);
}
.bonus-banner-corner {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-color: #06b6d4;
  border-style: solid;
  opacity: .85;
  pointer-events: none;
}
.bonus-banner-corner-tl { top: 0.2rem; left: 0.2rem; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.bonus-banner-corner-tr { top: 0.2rem; right: 0.2rem; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.bonus-banner-corner-bl { bottom: 0.2rem; left: 0.2rem; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.bonus-banner-corner-br { bottom: 0.2rem; right: 0.2rem; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }
@media (prefers-reduced-motion: reduce) {
  .bonus-banner-shine,
  .bonus-banner-live::before {
    animation: none;
  }
  .bonus-banner-promo:hover .bonus-banner-img {
    transform: none;
    filter: none;
  }
}
.bonus-analyst {
  margin-bottom: 0.95rem;
}
.bonus-analyst-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}
.bonus-analyst-avatar,
.bonus-review-avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #d4c4a8, #a89070);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(90, 70, 10, .15);
  overflow: hidden;
}
.bonus-analyst-avatar img,
.bonus-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bonus-analyst-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}
.bonus-analyst-badge::before {
  content: "✓";
  font-weight: 800;
}
.bonus-analyst-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.65rem;
}
.bonus-recommended {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #2e7d32;
  font-size: 0.82rem;
  font-weight: 700;
}
.bonus-recommended::before {
  content: "✓";
}
.bonus-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #6b5a3a, #4a3d28);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}
.bonus-rating-stars {
  color: #06b6d4;
  letter-spacing: 0.5px;
}
.bonus-rating-stars .star-half {
  opacity: 0.45;
}
.bonus-analyst-quote {
  margin: 0 0 0.85rem;
  color: #4a4520;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.65;
}
.bonus-actions {
  display: flex;
  margin-top: 0.15rem;
}
.bonus-actions-end { justify-content: flex-end; }
.bonus-actions-center { justify-content: center; }
.s4-bonus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d4a853 0%, #9a6b42 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(120, 80, 20, .25);
  transition: transform .15s, box-shadow .15s;
}
.s4-bonus-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(120, 80, 20, .3);
}
.bonus-review-card {
  padding: 0.85rem 0.85rem 0.95rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
  margin-bottom: 0.85rem;
}
.bonus-review-heading {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #5c5424;
}
.bonus-review-icon {
  font-size: 1rem;
  line-height: 1;
}
.bonus-review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}
.bonus-review-name {
  font-size: 0.88rem;
  color: #5c5424;
}
.bonus-review-date {
  font-size: 0.78rem;
  color: #94a3b8;
  white-space: nowrap;
}
.bonus-review-text {
  margin: 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.6;
}
.bonus-footer-note {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #5c5424;
  line-height: 1.5;
}
.section-head { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.tag { font-size: .75rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px; }
.tag-hot { background: #fee2e2; color: #b91c1c; }
.byline { color: #64748b; font-size: .9rem; margin: 0 0 .75rem; }
.text-link { color: #2563eb; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* Guides */
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin: 1rem 0; }
.guide-card {
  display: flex; align-items: center; gap: .65rem; padding: 1rem;
  background: #f8fafc; border-radius: 12px; text-decoration: none; color: #0f172a;
  font-weight: 600; border: 1px solid #e2e8f0; transition: border-color .15s, background .15s;
}
.guide-card:hover { background: #eff6ff; border-color: #93c5fd; }
.guide-card span { font-size: 1.25rem; }

/* Experts */
.experts-section {
  margin-bottom: 1.25rem;
}
.experts-section-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.experts-section-accent {
  width: 4px;
  height: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  flex-shrink: 0;
}
.experts-section-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
.experts-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.expert-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .05);
  border-left: 4px solid #93c5fd;
}
.expert-profile-avatar {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #dbeafe, #93c5fd);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, .15);
  overflow: hidden;
}
.expert-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-profile-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.expert-profile-name-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}
.expert-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.expert-profile-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.expert-profile-role {
  display: inline-flex;
  align-self: flex-start;
  max-width: 100%;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #0c4a6e, #0b1220);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}
.partners-panel {
  padding: 0.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #67e8f9 0%, #06b6d4 55%, #0891b2 100%);
  box-shadow: 0 4px 14px rgba(180, 120, 10, .18);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.partner-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 4.5rem;
  padding: 0.55rem 0.45rem;
  border-radius: 10px;
  background: rgba(255, 251, 235, .92);
  border: 1px solid rgba(255, 255, 255, .65);
  text-align: center;
}
.partner-chip-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: #fff;
  color: #92400e;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(120, 80, 10, .12);
}
.partner-chip-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #5c4a1f;
  line-height: 1.35;
}

/* Reviews */
.s4-reviews-list { display: grid; gap: .75rem; }
.s4-review {
  padding: 1rem 1.1rem; background: #f8fafc; border-radius: 12px; border-left: 4px solid #2563eb;
}
.s4-review-stars { color: #06b6d4; margin-bottom: .35rem; }
.s4-review footer { margin-top: .65rem; font-size: .85rem; color: #64748b; }

/* Big win records (polling ticker) */
.s4-wins {
  margin-bottom: 1.25rem;
  padding: 1rem 0.9rem 1.05rem;
  border-radius: 6px;
  background: linear-gradient(165deg, #0b1220 0%, #0f172a 55%, #0c4a6e 100%);
  border: 1px solid rgba(6, 182, 212, .35);
  box-shadow: 0 8px 24px rgba(11, 18, 32, .28);
}
.s4-wins-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: #67e8f9;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
}
.s4-wins-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ecfeff;
  letter-spacing: 0.02em;
}
.s4-wins-deco {
  color: #06b6d4;
  font-size: 0.55rem;
  line-height: 1;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s4-wins-deco svg { display: block; }
.s4-wins-panel {
  overflow: hidden;
}
.s4-wins-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.s4-win-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.55rem;
  border-radius: 6px;
  background: rgba(15, 23, 42, .72);
  border: 1px solid rgba(6, 182, 212, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease;
  min-width: 0;
}
.s4-win-item.s4-updating {
  opacity: .35;
  transform: scale(.98);
}
.s4-win-item.s4-fresh {
  animation: bigWinPop .42s ease;
  border-color: rgba(6, 182, 212, .65);
}
@keyframes bigWinPop {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.s4-win-thumb {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  background: #0b1220;
  border: 1px solid rgba(6, 182, 212, .25);
}
.s4-win-body {
  min-width: 0;
  font-size: 0.72rem;
  line-height: 1.35;
}
.s4-win-user {
  margin: 0 0 0.18rem;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s4-win-congrats {
  color: #4ade80;
  font-weight: 700;
  margin-right: 0.2rem;
}
.s4-win-id {
  color: #f8fafc;
  font-weight: 800;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px rgba(103, 232, 249, .25);
}
.s4-win-amount {
  margin: 0;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s4-win-verb {
  margin-right: 0.18rem;
  color: #cbd5e1;
}
.s4-win-value {
  color: #fb7185;
  font-weight: 800;
  font-size: 0.82rem;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
}

/* Inner pages */
.s4-fallback-hero h1 { margin-top: 0; }
.content { padding: 1.5rem 1.75rem; }

/* Footer */
.s4-foot {
  background: #0f172a; color: #94a3b8; padding: 1.75rem 0; font-size: .9rem; margin-top: 1rem;
}
.s4-foot-note {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  font-size: 0.82rem;
  color: #cbd5e1;
}
.s4-foot .s4-dim {
  margin: 0;
  font-size: 0.78rem;
}

.s4-totop {
  /* Align to measured content column right edge (--s4-shell-left / --s4-shell-width set by s4-ui.js) */
  --back-to-top-inset: 1rem;
  position: fixed;
  right: auto;
  left: calc(
    var(--s4-shell-left, 0px) + var(--s4-shell-width, 100%) - var(--back-to-top-inset) - 54px
  );
  bottom: max(4.25rem, calc(env(safe-area-inset-bottom, 0px) + 3.5rem));
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.9);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease, left .2s ease;
}
.s4-totop-glow {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(6, 182, 212, .34) 0%, rgba(34, 197, 94, .16) 42%, transparent 72%);
  opacity: 0;
  transform: scale(.92);
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}
.s4-totop-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  color: #fef9c3;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .22) 0%, transparent 42%),
    linear-gradient(155deg, #15803d 0%, #0f5132 52%, #052e16 100%);
  border: 1.5px solid rgba(253, 224, 71, .78);
  box-shadow:
    0 10px 24px rgba(5, 46, 22, .42),
    0 0 0 4px rgba(6, 182, 212, .12),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.s4-totop.s4-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.s4-totop.s4-show .s4-totop-glow {
  opacity: 1;
  transform: scale(1);
}
.s4-totop:hover .s4-totop-core,
.s4-totop:focus-visible .s4-totop-core {
  transform: translateY(-2px);
  color: #fff7cc;
  border-color: #fde047;
  box-shadow:
    0 14px 28px rgba(5, 46, 22, .48),
    0 0 0 5px rgba(6, 182, 212, .18),
    0 0 18px rgba(250, 204, 21, .28),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}
.s4-totop:active .s4-totop-core {
  transform: translateY(0) scale(.96);
}
.s4-totop:focus-visible {
  outline: none;
}
.s4-totop-ico {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .28));
}

@media (max-width: 750px) {
  .s4-totop {
    --back-to-top-inset: 0.85rem;
    bottom: max(5rem, calc(env(safe-area-inset-bottom, 0px) + 4rem));
    width: 50px;
    height: 50px;
  }
  .s4-crumb-inner {
    padding-top: 0.5rem;
    padding-bottom: 0.55rem;
  }
  .s4-crumb-list {
    font-size: 0.875rem;
  }
  .s4-crumb-link {
    min-height: 40px;
    padding: 0.42rem 0.45rem;
    margin: -0.42rem -0.45rem;
  }
  body.s4-is-home .s4-main {
    padding-top: 1.5rem;
  }
  .s4-wrap { padding: 0 1rem; }
  .s4-box { padding: 1.1rem 1.15rem; }
  .home-hero { padding: 1rem 1.1rem 1.15rem; }
  .s4-hot.s4-box { padding: 0.85rem 0 0.95rem; }
  .s4-hot-head,
  .s4-hot-row { padding-left: 0.75rem; padding-right: 0.75rem; }
  .entrance-section.s4-box { padding: 1rem 0.85rem 1.05rem; }
  .bonus-card { padding: 0.85rem 0.85rem 0.95rem; }
  .bonus-card-title { font-size: 0.98rem; }
  .entrance-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .s4-enter-btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
  .s4-enter-lbl {
    white-space: normal;
    text-align: center;
  }
  .trust-name { font-size: 1rem; }
  .trust-score { font-size: 1.15rem; }
}

@media (max-width: 900px) {
  .trust-header { flex-wrap: wrap; }
  .trust-score-block { margin-left: auto; }
  .trust-info { margin-left: auto; }
  .entrance-section.s4-box {
    padding: 1rem 1rem 1.1rem;
  }
  .entrance-banner-grid {
    min-height: 0;
  }
  .s4-enter-visual {
    min-height: 200px;
    max-height: 280px;
  }
  .entrance-visual-media,
  .s4-enter-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .entrance-actions {
    padding-bottom: 0.75rem;
  }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expert-profile-role { white-space: normal; }
  .s4-wins { padding: 0.85rem 0.75rem 0.95rem; }
  .s4-win-thumb { width: 2.2rem; height: 2.2rem; }
  .s4-win-body { font-size: 0.68rem; }
}
@media (max-width: 560px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .s4-enter-visual .entrance-actions {
    gap: 0.4rem;
    padding: 0 0.5rem 0.65rem;
  }
  .s4-enter-visual .s4-enter-btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.55rem 0.5rem 0.5rem;
    min-height: 38px;
    flex-shrink: 1;
    min-width: 0;
  }
}

/* About page */
.s4-about {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-top: 0.35rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Tighten gap between about content and shared security block (~16px) */
body:has(.s4-about) .s4-main {
  padding-bottom: 16px;
}
.s4-about-title {
  margin: 0 0 0.45rem;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
  color: #1e293b;
  text-align: center;
}
.s4-about-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s4-about-banner {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}
.s4-about-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}
.s4-about-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.15rem 0.1rem;
}
.s4-about-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #334155;
  text-align: left;
}
.s4-about-support {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(6, 182, 212, .22);
  border-left: 3px solid #06b6d4;
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  font-weight: 400;
  letter-spacing: normal;
}
.s4-about-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.1);
  border-color: rgba(6, 182, 212, .4);
}
.s4-about-support-ico {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b1220;
  color: #67e8f9;
  border: 1px solid rgba(6, 182, 212, .35);
}
.s4-about-support-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.s4-about-support-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}
.s4-about-support-sub {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}
.s4-about-support-arrow {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #94a3b8;
  line-height: 1;
}

/* Guides / getting-started page */
.s4-guides {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-top: 0.35rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(.s4-guides) .s4-main {
  padding-bottom: 16px;
}
.s4-guides-title {
  margin: 0 0 0.45rem;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.35;
  color: #1e293b;
  text-align: center;
}
.s4-guides-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s4-guides-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.15rem 0.1rem;
}
.s4-guides-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #334155;
}
.s4-guides-steps {
  margin: 0;
  padding: 0 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.s4-guides-steps li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
}
.s4-guides-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #1e293b;
}
.s4-guides-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s4-guides-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.s4-guides-cta .s4-action {
  flex: 1 1 10rem;
  text-align: center;
}

/* Invite friends page */
.s4-invite {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-top: 0.35rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(.s4-invite) .s4-main {
  padding-bottom: 16px;
}
.s4-invite-title {
  margin: 0 0 0.45rem;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.35;
  color: #1e293b;
  text-align: center;
}
.s4-invite-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s4-invite-banner {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}
.s4-invite-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}
.s4-invite-rules {
  margin: 0;
  padding: 0 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.s4-invite-rules li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
}
.s4-invite-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s4-invite-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
  transition: filter 0.15s, transform 0.15s;
}
.s4-invite-copy:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.s4-invite-copy-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s4-invite-copy-ico svg { display: block; }
.s4-invite-toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%) translateY(12px);
  z-index: 1200;
  max-width: min(92vw, 360px);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.s4-invite-toast.s4-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Activities page 鈥?poster-style banner: image + title overlay as one unit */
.s4-acts {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s4-acts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.s4-act {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.s4-act:hover,
.s4-act:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.s4-act:focus-visible {
  outline: 2px solid #fde68a;
  outline-offset: 2px;
}
.s4-act-media {
  display: block;
  width: 100%;
  line-height: 0;
}
.s4-act-img {
  display: block;
  width: 100%;
  height: auto;
}
.s4-act-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 2.4rem 1rem 0.9rem;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.55) 42%,
    rgba(15, 23, 42, 0.88) 100%
  );
  pointer-events: none;
}
.s4-act-tap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(253, 230, 138, 0.14);
  box-shadow: 0 0 0 0 rgba(253, 230, 138, 0.35);
  animation: activity-tap-pulse 1.6s ease-out infinite;
}
.s4-act-tap svg {
  display: block;
}
.s4-act-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
@keyframes activity-tap-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 230, 138, 0.4);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(253, 230, 138, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 230, 138, 0);
    transform: scale(1);
  }
}
.s4-act.s4-textonly {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 55%, #0f172a 100%);
}
.s4-act.s4-textonly .s4-act-cap {
  position: static;
  padding: 1.15rem 1.1rem;
  background: transparent;
}
.s4-acts-empty {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #64748b;
}
@media (prefers-reduced-motion: reduce) {
  .s4-act,
  .s4-act:hover,
  .s4-act:focus-visible {
    transition: none;
    transform: none;
  }
  .s4-act-tap {
    animation: none;
  }
}


/* ========== Spinoff home (landing) ========== */
.s4-hero {
  margin-bottom: 1.1rem;
  text-align: center;
}
.s4-hero-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 4.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.s4-hero-media {
  position: relative;
  width: 100%;
  margin: 0 0 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
  aspect-ratio: 730 / 320;
}
.s4-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s4-hero-img[hidden] + .s4-hero-ph,
.s4-hero-ph {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, #1e293b 0%, #0f172a 45%, #334155 100%);
}
.s4-hero-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(6, 182, 212, 0.35), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(12, 74, 110, 0.35), transparent 40%),
    radial-gradient(circle at 80% 65%, rgba(240, 245, 250, 0.12), transparent 35%);
}

/* Home activity carousel — fixed wide banner frame; image never stretches */
.s4-carousel {
  position: relative;
  width: 100%;
  margin: 0 0 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 1024 / 296;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.s4-carousel-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.s4-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}
.s4-carousel-slide.s4-on {
  position: absolute;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.s4-carousel-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.s4-carousel-img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center;
}
.s4-carousel-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 55%, #0f172a 100%);
}
.s4-carousel-link.s4-textonly .s4-carousel-cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: transparent;
  text-align: center;
  font-size: 1.05rem;
}
.s4-carousel-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 1.75rem 0.85rem 1.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.82) 70%);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s4-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.5rem;
  pointer-events: none;
}
.s4-carousel-dot {
  pointer-events: auto;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.s4-carousel-dot.s4-on {
  background: #fff;
  transform: scale(1.15);
}
.s4-carousel-dot:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .s4-carousel-slide {
    transition: none;
  }
}
.s4-facts {
  padding: 0;
  overflow: hidden;
}
.s4-facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.s4-facts-table th,
.s4-facts-table td {
  padding: 0.7rem 1rem;
  border: 1px solid #93c5fd;
  text-align: left;
  vertical-align: top;
}
.s4-facts-table th {
  width: 42%;
  font-weight: 600;
  color: #1e3a5f;
  background: #f8fafc;
}
.s4-facts-table td {
  color: #0f172a;
  word-break: break-word;
}
.s4-facts-table a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.s4-facts-table a:hover {
  color: #1d4ed8;
}
.s4-intro p {
  margin: 0 0 0.85rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
}
.s4-intro p:last-child {
  margin-bottom: 0;
}
.s4-faq h2,
.s4-details h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1.3;
}
.s4-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
a.s4-faq-item,
.s4-faq-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0.6rem 0.85rem 0.6rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 127, 23, 0.35);
  color: #2c1810 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  background: linear-gradient(165deg, #ffe082 0%, #ffca28 45%, #ffb300 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 4px 12px rgba(255, 179, 0, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
a.s4-faq-item:hover,
.s4-faq-item:hover {
  color: #2c1810 !important;
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 18px rgba(255, 179, 0, 0.3);
}
a.s4-faq-item:focus-visible,
.s4-faq-item:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.s4-faq-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  color: #fff;
  background: #2e7d32;
}
.s4-faq-ico svg {
  display: block;
}
.s4-faq-lbl {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
/* display:flex on .s4-faq-item overrides the HTML [hidden] UA rule 鈥?control extras via class */
.s4-faq-item.s4-more,
a.s4-faq-item.s4-more[hidden] {
  display: none !important;
}
.s4-faq.is-expanded .s4-faq-item.s4-more,
.s4-faq.is-expanded a.s4-faq-item.s4-more {
  display: flex !important;
}
.s4-faq-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.35rem 0.5rem;
  border: 0;
  background: transparent;
  color: #6d4c41;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.s4-faq-more:hover {
  color: #4e342e;
}
.s4-faq-more:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 6px;
}
.s4-faq-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transform: translateY(1px);
  transition: transform 0.15s ease;
}
.s4-faq.is-expanded .s4-faq-caret {
  transform: translateY(-1px) rotate(180deg);
}
.s4-details p {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
}
.s4-legal h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e3a5f;
}
.s4-legal p {
  margin: 0 0 0.75rem;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}
.s4-thanks {
  margin: 1rem 0 0 !important;
  text-align: center;
  font-weight: 700;
  color: #0f172a !important;
  font-size: 1rem !important;
}
@media (max-width: 480px) {
  .s4-hero-title {
    font-size: 1.28rem;
  }
  a.s4-cta,
  .s4-cta {
    font-size: 0.84rem;
    min-height: 46px;
    padding: 0.5rem 0.5rem 0.5rem 0.6rem;
    border-radius: 12px;
    gap: 0.45rem;
  }
  .s4-cta-ico {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 8px;
  }
  .s4-cta-arrow {
    width: 1.4rem;
    height: 1.4rem;
  }
  .s4-facts-table th,
  .s4-facts-table td {
    padding: 0.6rem 0.75rem;
    font-size: 0.86rem;
  }
  .s4-facts-table th {
    width: 38%;
  }
}



/* ===== spinoff_004 skin — indigo navy + cyan + magenta (distinct from 003) ===== */
.s4-topbar-inner { min-height: 54px; flex-direction: row; }
.s4-logo { height: 50px; max-height: 50px; }

.s4-trust-title {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .85rem;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #67e8f9;
}
.s4-trust-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  background: rgba(6, 182, 212, .18);
  color: #06b6d4;
  flex-shrink: 0;
}

.s4-hero {
  text-align: left;
  margin-bottom: .85rem;
  padding-top: .15rem;
}
.s4-hero-title {
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  color: #0f172a;
  letter-spacing: -.02em;
  text-align: left;
  margin: 0 0 .55rem;
  padding-top: 0;
  font-size: clamp(1.4rem, 4.5vw, 1.85rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.s4-carousel {
  border-radius: 6px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 8px 24px rgba(11, 18, 32, .22);
  border: 1px solid rgba(6, 182, 212, .35);
}
.s4-carousel-dot {
  border-radius: 2px;
  width: 12px;
  height: 4px;
}
.s4-carousel-dot.s4-on {
  background: #06b6d4;
  transform: scaleX(1.2);
}
.s4-carousel-cap {
  background: linear-gradient(transparent, rgba(11, 18, 32, .88));
}

/* Facts — stacked info rows (no horizontal scroll) */
.s4-facts {
  padding: 0.85rem 0.9rem;
  overflow: visible;
}
.s4-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.s4-facts-row {
  display: grid;
  grid-template-columns: 1.75rem minmax(4.5rem, 32%) 1fr;
  align-items: center;
  gap: 0.55rem 0.65rem;
  padding: 0.7rem 0.15rem;
  border-bottom: 1px solid rgba(6, 182, 212, .14);
  min-width: 0;
}
.s4-facts-row:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}
.s4-facts-row:first-child {
  padding-top: 0.15rem;
}
.s4-facts-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 4px;
  background: rgba(6, 182, 212, .12);
  color: #0891b2;
  flex-shrink: 0;
}
.s4-facts-ico svg {
  display: block;
}
.s4-facts-k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.3;
  min-width: 0;
}
.s4-facts-v {
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  text-align: right;
  word-break: break-word;
  min-width: 0;
}
.s4-facts-row-site {
  margin-top: 0.35rem;
  padding: 0.75rem 0.7rem;
  background: #0b1220;
  border: 1px solid rgba(6, 182, 212, .35);
  border-radius: 6px;
  border-bottom: 0;
}
.s4-facts-row-site .s4-facts-ico {
  background: rgba(6, 182, 212, .2);
  color: #67e8f9;
}
.s4-facts-row-site .s4-facts-k {
  color: #94a3b8;
}
.s4-facts-row-site .s4-facts-v {
  color: #a5f3fc;
}

/* Hot games — horizontal snap rail */
.s4-hot {
  background: linear-gradient(180deg, #f0f5fa 0%, #e8eef5 100%);
  border: 1px solid rgba(6, 182, 212, .18);
  border-left: none;
  border-radius: 6px;
  padding: 1rem 0 1.1rem;
  margin-bottom: 1.05rem;
  box-shadow: 0 4px 16px rgba(11, 18, 32, .06);
  overflow: hidden;
}
.s4-hot.s4-box {
  /* Hot is a full-bleed rail section — never inherit card chrome */
  background-image: none !important;
  border-left: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.s4-hot-flame {
  color: #06b6d4;
  display: inline-flex;
  align-items: center;
}
.s4-hot-rail {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding: 0 1rem .25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s4-hot-rail::-webkit-scrollbar { display: none; }
.s4-hot-rail .s4-hot-card {
  flex: 0 0 42%;
  min-width: 130px;
  max-width: 160px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #0b1220;
  box-shadow: 0 6px 16px rgba(11, 18, 32, .22);
  border: 1px solid rgba(6, 182, 212, .28);
}
.s4-hot-rail .s4-hot-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #f0f5fa;
}
.s4-hot-rail .s4-hot-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.s4-hot-name {
  display: block;
  padding: .45rem .5rem .5rem;
  font-size: .76rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
  background: rgba(11, 18, 32, .94);
  font-family: "Sora", sans-serif;
}
.s4-hot-fav.s4-on {
  color: #06b6d4;
  background: rgba(11, 18, 32, .75);
}
.s4-hot-fav.s4-on svg {
  fill: #06b6d4;
  stroke: #06b6d4;
}
.s4-hot-badge {
  background: #e11d48;
  color: #fff;
  border-radius: 4px;
  font-size: .6rem;
}
.s4-hot-badge::before { content: "⚡"; font-size: .58rem; }
.s4-hot-grid,
.s4-hot-row,
.s4-hot-scrollhint { display: none !important; }

.s4-ticker {
  background: linear-gradient(90deg, #0b1220, #0c4a6e);
  color: #a5f3fc;
  border-radius: 6px;
  border: 1px solid rgba(6, 182, 212, .35);
  margin-top: 0;
}
.s4-ticker-go {
  color: #67e8f9;
  background: rgba(6, 182, 212, .18);
  border-color: rgba(6, 182, 212, .45);
  border-radius: 4px;
}

.s4-trust {
  background: #0b1220;
  color: #cbd5e1;
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, .28);
}
.s4-trust-note { color: #94a3b8; }
.s4-foot {
  background: #0b1220;
  color: #94a3b8;
  border-top: 1px solid rgba(6, 182, 212, .45);
}

.s4-totop {
  width: 46px !important;
  height: 46px !important;
  border-radius: 4px !important;
}
.s4-totop-glow {
  display: none !important;
}
.s4-totop-core {
  border-radius: 4px !important;
  color: #fff !important;
  background: #e11d48 !important;
  border: 2px solid #06b6d4 !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, .35) !important;
}
.s4-totop:hover .s4-totop-core,
.s4-totop:focus-visible .s4-totop-core {
  color: #fff !important;
  border-color: #22d3ee !important;
  background: #f43f5e !important;
  transform: translateX(2px) !important;
}

.s4-wins-head {
  color: #67e8f9;
  font-family: "Sora", sans-serif;
}
.s4-wins-board {
  padding: .95rem .9rem 1rem;
  background: linear-gradient(165deg, #0b1220 0%, #0f172a 50%, #0c4a6e 100%);
  border: 1px solid rgba(6, 182, 212, .4);
  border-radius: 6px;
}
.s4-wins-board .s4-wins-head { color: #67e8f9; }
.s4-wins-board .s4-wins-head h2 { color: #ecfeff; }
.s4-wins-board .s4-win-item {
  background: rgba(11, 18, 32, .78) !important;
  border: 1px solid rgba(6, 182, 212, .32) !important;
  border-radius: 6px !important;
  padding: .5rem .55rem !important;
}
.s4-wins-board .s4-win-id {
  color: #f8fafc !important;
  font-weight: 800 !important;
}
.s4-wins-board .s4-win-congrats { color: #4ade80 !important; }
.s4-wins-board .s4-win-value { color: #fb7185 !important; }
.s4-wins-board .s4-win-verb { color: #cbd5e1 !important; }
.s4-wins-board .s4-win-user { color: #e2e8f0 !important; }

/* Inner page heroes + section headings */
.s4-page-hero {
  margin: 0 0 1rem;
  text-align: left;
  padding: .9rem 1rem;
  background: linear-gradient(135deg, #0b1220 0%, #0c4a6e 100%);
  border: 1px solid rgba(6, 182, 212, .35);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(11, 18, 32, .18);
}
.s4-page-title {
  margin: 0 0 .4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #f0f5fa;
}
.s4-page-sub { margin: 0; color: #a5f3fc; font-size: .95rem; }
.s4-sec-h {
  margin: 0 0 .85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  color: #0f172a;
  padding-left: .55rem;
  border-left: 3px solid #06b6d4;
}

/* Facts grid (download etc.) */
.s4-facts-grid {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.s4-facts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}
.s4-fact {
  background: #fff;
  border: 1px solid rgba(6, 182, 212, .2);
  border-left: 3px solid #06b6d4;
  border-radius: 6px;
  padding: .55rem .75rem;
  display: grid;
  grid-template-columns: minmax(5.5rem, 34%) 1fr;
  gap: .55rem;
  align-items: center;
  min-width: 0;
}
.s4-fact-k {
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #0891b2;
  font-weight: 700;
}
.s4-fact-v {
  font-size: .92rem;
  color: #0f172a;
  font-weight: 700;
  word-break: break-word;
  text-align: right;
}

/* Accordion */
.s4-acc { display: flex; flex-direction: column; gap: .5rem; }
.s4-acc-item {
  border: 1px solid rgba(6, 182, 212, .22);
  border-left: 3px solid #06b6d4;
  border-radius: 0 6px 6px 0;
  background: #fff;
  overflow: hidden;
}
.s4-acc-sum {
  list-style: none;
  cursor: pointer;
  padding: .8rem 1rem;
  font-weight: 700;
  color: #0f172a;
  position: relative;
  padding-right: 2.2rem;
  font-family: "Sora", sans-serif;
}
.s4-acc-sum::-webkit-details-marker { display: none; }
.s4-acc-sum::after {
  content: "▾";
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #06b6d4;
  font-size: .95rem;
}
.s4-acc-item[open] .s4-acc-sum {
  background: #0b1220;
  color: #a5f3fc;
  border-bottom: 1px solid rgba(6, 182, 212, .25);
}
.s4-acc-item[open] .s4-acc-sum::after { content: "▴"; color: #67e8f9; }
.s4-acc-body {
  padding: .85rem 1rem 1rem;
  color: #334155;
  font-size: .92rem;
}
.s4-acc-go {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .85rem;
  border-radius: 4px;
  background: #e11d48;
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  border: 2px solid #be123c;
  font-family: "Sora", sans-serif;
  transition: transform .15s, background .15s;
}
.s4-acc-go:hover {
  background: #f43f5e;
  transform: translateX(3px);
}

/* Reviews */
.s4-quote-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
.s4-quote {
  margin: 0;
  padding: .85rem 1rem;
  border-left: 3px solid #06b6d4;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(11, 18, 32, .06);
}
.s4-quote-stars { color: #06b6d4; margin-right: .25rem; }

/* Wins grid */
.s4-wins-board .s4-wins-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

/* Progress rail — cyan accent */
.s4-rail-item {
  background: #f0f5fa;
  border: 1px solid rgba(6, 182, 212, .18);
  border-left: 3px solid #06b6d4;
  border-radius: 6px;
}
.s4-rail-num {
  background: #0c4a6e !important;
  border-radius: 4px !important;
  color: #a5f3fc;
}
.s4-rail-item p,
.s4-rail-item span { color: #334155; }

/* Story cards */
.s4-story-card {
  border-left: 3px solid #06b6d4 !important;
  border-radius: 0 6px 6px 0 !important;
}
.s4-story-card-wide { border-left-color: #e11d48 !important; }

/* ===== spinoff_004 buttons + surface atmosphere ===== */
.s4-shell {
  --s4-surface-grid:
    repeating-linear-gradient(0deg, rgba(6, 182, 212, .03) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(11, 18, 32, .025) 0 1px, transparent 1px 18px);
  --s4-surface-wash: linear-gradient(165deg, rgba(240, 245, 250, .98) 0%, rgba(232, 238, 245, .95) 100%);
}

.s4-box,
.s4-story-card,
.s4-tile,
.s4-quote,
.s4-timeline-item,
.s4-act {
  background-image: var(--s4-surface-grid), var(--s4-surface-wash) !important;
  background-color: #f0f5fa !important;
  border: 1px solid rgba(6, 182, 212, .18) !important;
  border-left: 3px solid #06b6d4 !important;
  box-shadow: 0 4px 16px rgba(11, 18, 32, .06) !important;
  border-radius: 6px !important;
}
.s4-dl-app.s4-box {
  background-image: none !important;
  background-color: #fff !important;
}
/* Nested facts inside a box (download/app meta) — keep light chips, no double chrome */
.s4-box .s4-fact,
.s4-facts-grid .s4-fact {
  background-image: none !important;
  background-color: #fff !important;
  border: 1px solid rgba(6, 182, 212, .2) !important;
  border-left: 2px solid #06b6d4 !important;
  box-shadow: none !important;
  border-radius: 4px !important;
  padding: .55rem .65rem;
}
.s4-acc-item {
  background-image: none !important;
  background-color: #fff !important;
  border: 1px solid rgba(6, 182, 212, .2) !important;
  border-left: 3px solid #06b6d4 !important;
  box-shadow: none !important;
  border-radius: 6px !important;
  overflow: hidden;
}
.s4-box::before { display: none !important; }

.s4-page-hero .s4-page-title,
.s4-page-hero .s4-page-sub {
  background: none;
  border: 0;
  padding: 0;
}

.s4-action,
.s4-cta,
.s4-login-btn,
.s4-reg-btn,
.s4-invite-copy,
.s4-login-steps-cta,
.s4-reg-steps-cta,
.s4-login-app,
.s4-reg-dl,
.s4-dl-app-cta,
.s4-dl-audit-cta,
.s4-acc-go,
.s4-faq-more,
.s4-reg-cmp-pill {
  border-radius: 4px !important;
  font-family: "Sora", "IBM Plex Sans", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease !important;
}
.s4-action:hover,
.s4-cta:hover,
.s4-login-btn:hover,
.s4-reg-btn:hover,
.s4-invite-copy:hover,
.s4-login-steps-cta:hover,
.s4-reg-steps-cta:hover,
.s4-dl-app-cta:hover,
.s4-dl-audit-cta:hover,
.s4-acc-go:hover {
  transform: translateX(3px) !important;
}

.s4-action-main,
.s4-login-btn-in,
.s4-reg-btn-in,
.s4-login-steps-cta,
.s4-reg-steps-cta,
.s4-dl-audit-main,
.s4-acc-go,
.s4-faq-more {
  background: #e11d48 !important;
  color: #fff !important;
  border: 2px solid #be123c !important;
  box-shadow: 0 3px 0 #9f1239 !important;
}
.s4-action-alt,
.s4-login-btn-up,
.s4-reg-btn-up,
.s4-dl-audit-bonus,
.s4-reg-cmp-pill {
  background: transparent !important;
  color: #0891b2 !important;
  border: 2px solid #06b6d4 !important;
  box-shadow: none !important;
}
.s4-action-alt:hover,
.s4-login-btn-up:hover,
.s4-reg-btn-up:hover,
.s4-dl-audit-bonus:hover {
  background: rgba(6, 182, 212, .1) !important;
  color: #0e7490 !important;
}

a.s4-cta-login,
.s4-cta-login {
  background: #e11d48 !important;
  color: #fff !important;
  border-color: #be123c !important;
}
a.s4-cta-reg,
.s4-cta-reg {
  background: transparent !important;
  color: #0b1220 !important;
  border-color: #06b6d4 !important;
}

.s4-invite-copy,
.s4-dl-app-cta {
  background: #e11d48 !important;
  color: #fff !important;
  border: 2px solid #be123c !important;
  box-shadow: 0 3px 0 #9f1239 !important;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  text-decoration: none;
}
.s4-login-app,
.s4-reg-dl {
  background: #0b1220 !important;
  color: #a5f3fc !important;
  border: 2px solid rgba(6, 182, 212, .55) !important;
  box-shadow: 0 4px 14px rgba(11, 18, 32, .2) !important;
}

.s4-login-btn,
.s4-reg-btn {
  min-height: 46px;
  font-size: .92rem;
}

body.s4-is-home .s4-main {
  padding-top: 1.35rem !important;
}

/* Hot "All" — text link, not a bordered button */
.s4-hot-all {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #0891b2 !important;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: .25rem .15rem;
  text-decoration: none;
  transform: none !important;
}
.s4-hot-all:hover {
  color: #0e7490 !important;
  text-decoration: underline;
  transform: none !important;
}

/* About support — card row, never inherit CTA button chrome */
.s4-about-support {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  width: 100%;
  box-sizing: border-box;
  padding: 0.95rem 1rem !important;
  border-radius: 6px !important;
  background: #fff !important;
  border: 1px solid rgba(6, 182, 212, .22) !important;
  border-left: 3px solid #06b6d4 !important;
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.06) !important;
  color: inherit !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-decoration: none !important;
  min-height: 0 !important;
  transform: none !important;
}
.s4-about-support:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.1) !important;
  background: #fff !important;
  color: inherit !important;
}
.s4-about-support-title {
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  color: #0f172a;
}
.s4-about-support-arrow {
  color: #06b6d4;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .s4-facts-grid-3 { grid-template-columns: 1fr; }
  .s4-hot-rail .s4-hot-card { flex-basis: 46%; }
  .s4-facts-row {
    grid-template-columns: 1.75rem 1fr;
    grid-template-areas:
      "ico k"
      "ico v";
    gap: 0.2rem 0.55rem;
  }
  .s4-facts-ico { grid-area: ico; align-self: start; margin-top: 0.1rem; }
  .s4-facts-k { grid-area: k; }
  .s4-facts-v { grid-area: v; text-align: left; }
}
