* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  --s3-shell-max: 740px;
  --s3-ink: #1a1520;
  --s3-navy: #1e293b;
  --s3-slate: #334155;
  --s3-copper: #c45c26;
  --s3-gold: #d4a017;
  --s3-cream: #f7f4ef;
  --s3-surface: #fffdf9;
  --s3-line: rgba(30, 41, 59, .12);
}
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  color: var(--s3-ink);
  background:
    radial-gradient(1000px 520px at 85% -5%, rgba(196, 92, 38, .35), transparent 55%),
    radial-gradient(800px 480px at 0% 10%, rgba(212, 160, 23, .22), transparent 50%),
    linear-gradient(160deg, #0f172a 0%, #1e293b 42%, #31271f 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
body.lang-hi { font-family: "Noto Sans Devanagari", "Source Sans 3", system-ui, sans-serif; }
.s3-shell {
  --s3-shell-max: 740px;
  width: min(100%, var(--s3-shell-max));
  max-width: var(--s3-shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #1e293b 0%, #243447 100px, var(--s3-cream) 100px, #faf8f4 100%);
  box-shadow: 0 0 0 1px rgba(212, 160, 23, .2), 0 22px 56px rgba(0, 0, 0, .4);
  border-radius: 0 0 12px 12px;
}
.s3-wrap { max-width: none; margin: 0 auto; padding: 0 1.15rem; }
img,
video {
  max-width: 100%;
  height: auto;
}
.s3-dim { color: #6b635a; }
.s3-center { text-align: center; }
.s3-box {
  background: var(--s3-surface);
  border-radius: 2px 14px 2px 14px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 4px 0 rgba(196, 92, 38, .12), 0 10px 28px rgba(15, 23, 42, .06);
  margin-bottom: 1.05rem;
  border: 1px solid var(--s3-line);
}

/* Header */
.s3-topbar {
  background: linear-gradient(95deg, #0f172a 0%, #1e293b 48%, #3b2a1c 100%);
  color: #f8fafc;
  padding: 0.4rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 3px 0 rgba(196, 92, 38, .75), 0 10px 28px rgba(0,0,0,.28);
}

.s3-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 58px;
}
.s3-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
  margin-left: -0.15rem;
}
.s3-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) */
.s3-crumb {
  background: #f3efe8;
  border-bottom: 1px solid rgba(148, 120, 90, .22);
}
.s3-crumb-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.6rem;
}
.s3-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;
}
.s3-crumb-item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  color: #7a6f63;
}
.s3-crumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 0.45rem;
  color: #c4b5a0;
  font-weight: 600;
  flex-shrink: 0;
}
.s3-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: #c45c26;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.s3-crumb-link:hover {
  color: #9a4418;
  background: rgba(196, 92, 38, .1);
  text-decoration: none;
}
.s3-crumb-link:focus-visible {
  outline: 2px solid #c45c26;
  outline-offset: 1px;
  background: rgba(196, 92, 38, .1);
}
.s3-crumb-now {
  display: inline;
  color: #1e293b;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.s3-crumb-item.s3-now {
  flex: 1 1 auto;
  min-width: 0;
}

/* Menu toggle */
.s3-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(212, 160, 23, .55);
  border-radius: 4px;
  background: rgba(196, 92, 38, .25);
  cursor: pointer;
  flex-shrink: 0;
}
.s3-burger-bar {
  display: block;
  width: 18px;
  height: 2.5px;
  margin: 0 auto;
  background: #fde68a;
  border-radius: 0;
  transition: transform .2s, opacity .2s;
}
body.s3-panel-open .s3-burger-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.s3-panel-open .s3-burger-bar:nth-child(2) { opacity: 0; }
body.s3-panel-open .s3-burger-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Slide drawer — pin to measured .s3-shell bounds (--s3-shell-left / --s3-shell-width from JS) */
.s3-panel-root {
  position: fixed;
  top: 0;
  bottom: 0;
  left: var(--s3-shell-left, 0px);
  width: var(--s3-shell-width, 100%);
  max-width: var(--s3-shell-max, 740px);
  z-index: 60;
  overflow: hidden;
  pointer-events: none;
  box-sizing: border-box;
}
body.s3-panel-open .s3-panel-root {
  pointer-events: auto;
}
.s3-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.s3-panel-open .s3-panel-mask {
  opacity: 1;
  pointer-events: auto;
}
.s3-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 86%);
  max-width: 100%;
  height: 100%;
  background: linear-gradient(185deg, #0f172a 0%, #1e293b 55%, #2a1f16 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 #c45c26;
}
body.s3-panel-open { overflow: hidden; }
body.s3-panel-open .s3-panel { transform: translateX(0); }
.s3-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(212, 160, 23, .28);
}
.s3-panel-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex: 1;
  min-width: 0;
}
.s3-panel-logo {
  height: 48px;
  max-height: 48px;
}
.s3-panel-x {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 160, 23, .4);
  border-radius: 4px;
  background: rgba(196, 92, 38, .3);
  color: #fde68a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.s3-panel-nav {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
  overflow-y: auto;
}
.s3-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;
}
.s3-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(212, 160, 23, 0.14);
  color: #fbbf24;
  transition: background .15s, color .15s;
}
.s3-panel-ico svg {
  display: block;
}
.s3-panel-lbl {
  min-width: 0;
  line-height: 1.3;
}
.s3-panel-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.s3-panel-link:hover .s3-panel-ico {
  background: rgba(196, 92, 38, 0.35);
  color: #fde68a;
}
.s3-panel-cta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 160, 23, .28);
}
.s3-panel-cta .s3-action { width: 100%; }

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

/* Buttons — squared copper / gold system */
.s3-action {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.15rem; border-radius: 3px; text-decoration: none;
  font-family: "Outfit", "Source Sans 3", sans-serif;
  font-weight: 700; letter-spacing: .02em;
  border: 2px solid transparent; transition: transform .15s, box-shadow .15s, background .15s;
}
.s3-action:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(196, 92, 38, .28); }
.s3-action-sm { padding: .42rem .8rem; font-size: .85rem; border-radius: 3px; }
.s3-action-lg { padding: .9rem 1.4rem; font-size: 1.05rem; min-width: 160px; }
.s3-action-main { background: #c45c26; color: #fff; border-color: #9a4418; }
.s3-action-alt { background: transparent; color: #fde68a; border-color: rgba(212, 160, 23, .65); }
.s3-action-alt:hover { background: rgba(212, 160, 23, .15); }
.s3-action-accent { background: #d4a017; color: #1a1520; border-color: #a67c0f; }
.s3-action-line { background: #fff; color: #c45c26; border-color: #e8b89a; }
.s3-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 — flat bars with cut corners feel */
.s3-hero-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
}
@media (max-width: 420px) {
  .s3-hero-cta { grid-template-columns: 1fr; }
}
a.s3-cta,
.s3-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  padding: 0.5rem 0.65rem;
  border-radius: 3px;
  border: 2px solid transparent;
  font-family: "Outfit", "Source Sans 3", 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;
}
a.s3-cta:hover,
.s3-cta:hover {
  transform: translateY(-2px);
}
a.s3-cta:active,
.s3-cta:active {
  transform: translateY(0);
}
a.s3-cta:focus-visible,
.s3-cta:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 2px;
}
.s3-cta-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.12);
}
.s3-cta-ico svg {
  display: block;
}
.s3-cta-lbl {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.s3-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: 2px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(0, 0, 0, 0.12);
}
a.s3-cta-login,
.s3-cta-login {
  color: #fff !important;
  background: #c45c26;
  border-color: #9a4418;
  box-shadow: 0 4px 0 #7a3512;
}
a.s3-cta-login:hover,
.s3-cta-login:hover {
  color: #fff !important;
  background: #d46830;
  box-shadow: 0 5px 0 #7a3512;
}
a.s3-cta-reg,
.s3-cta-reg {
  color: #1a1520 !important;
  background: #f0c14b;
  border-color: #c9a227;
  box-shadow: 0 4px 0 #a67c0f;
}
a.s3-cta-reg:hover,
.s3-cta-reg:hover {
  color: #1a1520 !important;
  background: #f5cc62;
  box-shadow: 0 5px 0 #a67c0f;
}
.s3-cta-reg .s3-cta-ico,
.s3-cta-reg .s3-cta-arrow {
  background: rgba(26, 21, 32, 0.1);
  color: #1a1520;
}

/* Home s3-fallback-hero / trust s3-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, #f5d76e, #d4a017);
  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: #fbbf24;
  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 .s3-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; }
.s3-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.s3-modal-open { overflow: hidden; }

.s3-ticker {
  display: flex;
  align-items: center;
  background: #fff7e6;
  color: #fa8c16;
  font-size: 13px;
  font-weight: 600;
  height: 36px;
  overflow: hidden;
  padding: 0 12px;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  border: 1px solid #ffe7ba;
}
.s3-ticker-ico {
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 14px;
  line-height: 1;
}
.s3-ticker-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.s3-ticker-text {
  display: inline-block;
  white-space: nowrap;
  animation: announcement-marquee 12s linear infinite;
}
.s3-ticker-go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border-radius: 8px;
  color: #fa8c16;
  background: rgba(255, 255, 255, .65);
  border: 1px solid #ffd591;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.s3-ticker-go:hover {
  color: #d46b08;
  background: #fff;
  border-color: #fa8c16;
}
@keyframes announcement-marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .s3-ticker-text { animation: none; }
}

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

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

/* Download page */
.s3-dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}
.s3-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;
}
.s3-dl-app {
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(165deg, #fff9e6 0%, #ffeec2 45%, #f5d78a 100%);
  border: 2px solid #d4af37;
  box-shadow:
    0 10px 28px rgba(180, 130, 20, .18),
    inset 0 1px 0 rgba(255, 255, 255, .65);
}
.s3-dl-app-layout {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 0.85rem;
}
.s3-dl-app-title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 900;
  color: #3d2e0a;
  letter-spacing: 0.01em;
}
.s3-dl-specs {
  margin: 0 0 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.s3-dl-spec-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.82rem;
}
.s3-dl-spec-row dt {
  min-width: 4.8rem;
  margin: 0;
  color: #78716c;
  font-weight: 700;
}
.s3-dl-spec-row dd {
  margin: 0;
  color: #1c1917;
  font-weight: 800;
}
.s3-dl-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.s3-dl-store-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  transition: transform .12s ease, opacity .12s ease;
}
.s3-dl-store-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.s3-dl-store-badge {
  display: block;
  height: 1.85rem;
  width: auto;
  max-width: none;
  max-height: 1.85rem;
  object-fit: contain;
  flex-shrink: 0;
}
.s3-dl-icon-wrap {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, .45);
  box-shadow: 0 4px 12px rgba(90, 70, 10, .12);
}
.s3-dl-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s3-dl-app-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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), inset 0 1px 0 rgba(255, 255, 255, .25);
  border: 1px solid #166534;
  transition: transform .15s ease, box-shadow .15s ease;
}
.s3-dl-app-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(22, 163, 74, .4);
}
.s3-dl-cta-down {
  font-size: 1.15rem;
  line-height: 1;
}
.s3-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));
}
.s3-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);
}
.s3-dl-h {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.45;
  color: #7c2d12;
}
.s3-dl-h-audit {
  text-align: center;
  font-size: 0.95rem;
}
.s3-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);
}
.s3-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);
}
.s3-dl-audit-list {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.s3-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;
}
.s3-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;
}
.s3-dl-audit-acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.s3-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;
}
.s3-dl-audit-cta:hover { transform: translateY(-1px); }
.s3-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);
}
.s3-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);
}
.s3-dl-audit-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: #9a3412;
  text-align: center;
  opacity: 0.92;
}
.s3-dl-banner {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, .35);
  background: #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .25);
  overflow: hidden;
  text-decoration: none;
}
.s3-dl-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.s3-dl-banner .download-slot-label {
  color: rgba(253, 230, 138, .55);
}
.s3-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);
}
.s3-dl-center-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 900;
  color: #3d4f1f;
  text-align: center;
}
.s3-dl-steps-h {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
}
.s3-dl-steps-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.s3-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);
}
.s3-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);
}
.s3-dl-step p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #334155;
  padding-top: 0.15rem;
}
.s3-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);
}
.s3-dl-faq .s3-dl-h {
  color: #3d4f1f;
  text-align: center;
  margin-bottom: 0.85rem;
}
.s3-dl-faq-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #c9b86a;
  background: #fff;
}
.s3-dl-faq-tabs {
  display: flex;
  flex-direction: column;
}
.s3-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;
}
.s3-dl-faq-tab:hover {
  background: #fef3c7;
  color: #422006;
}
.s3-dl-faq-tab.s3-on {
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 100%);
  color: #422006;
  border-bottom-color: #d97706;
}
.s3-dl-faq-tab:last-child {
  border-bottom: 0;
}
.s3-dl-faq-tab:focus-visible {
  outline: 2px solid #b45309;
  outline-offset: -2px;
  z-index: 1;
}
.s3-dl-faq-body {
  padding: 0.95rem 1rem 1.1rem;
  background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
  border-top: 2px solid #f59e0b;
  min-height: 4.5rem;
}
.s3-dl-faq-ans {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #475569;
}
.s3-dl-faq-ans[hidden] {
  display: none;
}

/* Register */
.s3-reg {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s3-reg-hero {
  padding: 0.15rem 0.15rem 0.35rem;
}
.s3-reg-title {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
  color: #6b3f12;
}
.s3-reg-sub {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  color: #92400e;
}
.s3-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;
}
.s3-reg-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
}
.s3-reg-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.s3-reg-auth,
.s3-login-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.s3-reg-btn,
.s3-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;
}
.s3-reg-btn:hover,
.s3-login-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.s3-reg-btn-in,
.s3-login-btn-in {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .28);
}
.s3-reg-btn-up,
.s3-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);
}
.s3-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;
}
.s3-reg-dl:hover {
  filter: brightness(1.05);
}
.s3-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;
}
.s3-reg-dl-note {
  margin: -0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s3-reg-h {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.4;
  color: #5b3a14;
}
.s3-reg-h-mid {
  text-align: center;
}
.s3-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);
}
.s3-reg-steps-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.s3-reg-steps-list::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 2px;
  background: linear-gradient(180deg, #f59e0b, #d97706);
  opacity: .55;
}
.s3-reg-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  position: relative;
}
.s3-reg-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbbf24, #d97706);
  color: #422006;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(180, 83, 9, .25);
  z-index: 1;
}
.s3-reg-step p {
  margin: 0;
  padding-top: 0.3rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #44403c;
  font-weight: 700;
}
.s3-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;
}
.s3-reg-steps-cta:hover {
  transform: translateY(-1px);
}
.s3-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);
}
.s3-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;
}
.s3-reg-cmp .s3-reg-cmp-pill {
  display: flex;
  width: fit-content;
}
.s3-reg-cmp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e7e5e4;
  background: #fff;
}
.s3-reg-cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
  font-size: 0.78rem;
}
.s3-reg-cmp-table th,
.s3-reg-cmp-table td {
  padding: 0.65rem 0.55rem;
  border-bottom: 1px solid #f5f5f4;
  text-align: center;
  vertical-align: middle;
}
.s3-reg-cmp-table thead th {
  background: #fff7ed;
  color: #9a3412;
  font-weight: 900;
}
.s3-reg-cmp-table tbody th {
  text-align: left;
  font-weight: 700;
  color: #44403c;
  width: 46%;
}
.s3-reg-cmp-table tbody tr:last-child th,
.s3-reg-cmp-table tbody tr:last-child td {
  border-bottom: 0;
}
.s3-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;
}
.s3-reg-yes {
  background: #dcfce7;
  color: #15803d;
}
.s3-reg-no {
  background: #fee2e2;
  color: #b91c1c;
}
.s3-reg-cmp-note {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #78716c;
  text-align: center;
}
.s3-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);
}
.s3-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;
}
.s3-reg-rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.s3-reg-reward {
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #bbf7d0;
}
.s3-reg-reward h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 900;
  color: #166534;
}
.s3-reg-reward p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #475569;
}
.s3-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);
}
.s3-reg-faq-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #c9b86a;
  background: #fff;
}
.s3-reg-faq-tabs {
  display: flex;
  flex-direction: column;
}
.s3-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;
}
.s3-reg-faq-tab:hover {
  background: #fef3c7;
  color: #422006;
}
.s3-reg-faq-tab.s3-on {
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 100%);
  color: #422006;
}
.s3-reg-faq-tab:last-child {
  border-bottom: 0;
}
.s3-reg-faq-tab:focus-visible {
  outline: 2px solid #b45309;
  outline-offset: -2px;
  z-index: 1;
}
.s3-reg-faq-body {
  padding: 0.95rem 1rem 1.1rem;
  background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
  border-top: 2px solid #f59e0b;
  min-height: 4.5rem;
}
.s3-reg-faq-ans {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #475569;
}
.s3-reg-faq-ans[hidden] {
  display: none;
}

/* Login */
.s3-login {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s3-login-title {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
  color: #6b3f12;
}
.s3-login-sub {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  color: #92400e;
}
.s3-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;
}
.s3-login-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  vertical-align: middle;
}
.s3-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, #d4a017 0%, #b8860b 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;
}
.s3-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;
}
.s3-login-app-note {
  margin: -0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s3-login-h {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.4;
  color: #5b3a14;
}
.s3-login-h-mid {
  text-align: center;
}
.s3-login-steps,
.s3-login-cmp,
.s3-login-sec,
.s3-login-faq {
  padding: 1rem;
  border-radius: 16px;
  border: 2px solid #d4af37;
  box-shadow: 0 6px 20px rgba(90, 70, 10, .1);
}
.s3-login-steps {
  background: linear-gradient(180deg, #fffaf0 0%, #f5e6c8 100%);
}
.s3-login-steps-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.s3-login-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
}
.s3-login-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbbf24, #d97706);
  color: #422006;
  font-weight: 900;
  font-size: 0.9rem;
}
.s3-login-step p {
  margin: 0;
  padding-top: 0.3rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #44403c;
  font-weight: 700;
}
.s3-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;
}
.s3-login-cmp {
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  border-color: #fdba74;
}
.s3-login-cmp-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
}
.s3-login-cmp-card {
  padding: 0.75rem 0.65rem;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.45;
}
.s3-login-cmp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}
.s3-login-cmp-card ul {
  margin: 0;
  padding-left: 1rem;
}
.s3-login-cmp-card li {
  margin-bottom: 0.35rem;
}
.s3-login-cmp-bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.s3-login-cmp-good {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.s3-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, #fde68a, #f59e0b);
  color: #422006;
  font-size: 0.7rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(180, 83, 9, .25);
}
.s3-login-sec {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f4 100%);
  border-color: #d6d3d1;
}
.s3-login-sec-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.s3-login-sec-row {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e7e5e4;
}
.s3-login-sec-row h3 {
  margin: 0 0 0.3rem;
  font-size: 0.85rem;
  font-weight: 900;
  color: #44403c;
}
.s3-login-sec-row p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #57534e;
}
.s3-login-faq {
  background: linear-gradient(180deg, #fffbea 0%, #fef9c3 100%);
}
.s3-login-faq-panel {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #c9b86a;
  background: #fff;
}
.s3-login-faq-tabs {
  display: flex;
  flex-direction: column;
}
.s3-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;
}
.s3-login-faq-tab.s3-on {
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 100%);
  color: #422006;
}
.s3-login-faq-tab:last-child {
  border-bottom: 0;
}
.s3-login-faq-body {
  padding: 0.95rem 1rem 1.1rem;
  background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
  border-top: 2px solid #f59e0b;
  min-height: 4.5rem;
}
.s3-login-faq-ans {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #475569;
}
.s3-login-faq-ans[hidden] {
  display: none;
}
@media (max-width: 480px) {
  .s3-login-cmp-vs {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .s3-login-cmp-badge {
    justify-self: center;
  }
}

.s3-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);
}
.s3-trust-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: #3d4f1f;
  text-align: center;
}
.s3-cert-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.85rem;
}
.s3-cert {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  flex: 0 1 auto;
}
.s3-cert-age {
  height: 2.4rem;
  max-width: 2.4rem;
}
.s3-trust-note {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
}
@media (max-width: 750px) {
  .s3-cert {
    height: 2.35rem;
    max-width: 6.5rem;
  }
  .s3-cert-age {
    height: 2.1rem;
    max-width: 2.1rem;
  }
  .s3-dl-app-layout {
    grid-template-columns: 4.75rem minmax(0, 1fr);
  }
  .s3-dl-icon-wrap {
    width: 4.75rem;
    height: 4.75rem;
  }
  .s3-dl-audit-acts {
    grid-template-columns: 1fr;
  }
}

/* Hot games carousel */
.s3-hot.s3-box {
  background: #FFFDEA;
  border-color: rgba(201, 162, 39, .22);
  padding: 1rem 0 1.1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  min-width: 0;
}
.s3-hot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 0 1rem .75rem;
}
.s3-hot-title {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
}
.s3-hot-flame {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}
.s3-hot-title h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: .01em;
}
.s3-hot-all {
  flex-shrink: 0;
  color: #64748b;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color .15s;
}
.s3-hot-all:hover { color: #0f172a; }
.s3-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;
}
.s3-hot-row::-webkit-scrollbar { display: none; }
.s3-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);
}
.s3-hot-link {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}
.s3-hot-cover {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  background: #2a2a2a;
}
.s3-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;
}
.s3-hot-fav:hover { background: rgba(0, 0, 0, .65); transform: scale(1.05); }
.s3-hot-fav.s3-on {
  color: #fbbf24;
  background: rgba(0, 0, 0, .6);
}
.s3-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);
}
.s3-hot-badge::before {
  content: "🔥";
  font-size: .58rem;
  line-height: 1;
}
.s3-hot-scrollhint {
  display: flex;
  justify-content: center;
  padding: .7rem 1rem 0;
}
.s3-hot-track {
  position: relative;
  width: min(7.5rem, 42%);
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .12);
  overflow: hidden;
}
.s3-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;
}
.s3-hot-scrollhint.s3-hidden {
  opacity: 0;
  pointer-events: none;
}

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

/* Entrance banner */
.entrance-section.s3-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;
}
.s3-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;
}
.s3-enter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.s3-enter-ico {
  display: inline-flex;
  flex-shrink: 0;
}
.s3-enter-lbl { white-space: nowrap; }
.s3-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;
}
.s3-enter-official {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
}
.s3-enter-official .s3-enter-arrow {
  background: rgba(0,0,0,.18);
  color: #fff;
}
.s3-enter-apk {
  background: linear-gradient(180deg, #fde047, #facc15);
  color: #2c1810;
}
.s3-enter-apk .s3-enter-arrow {
  background: rgba(44,24,16,.12);
  color: #2c1810;
}
.s3-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;
}
.s3-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 #fbbf24;
  outline-offset: 3px;
  border-radius: 16px;
}
.bonus-banner-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #fde68a, #f59e0b 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(251, 191, 36, .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(251, 191, 36, .12), rgba(245, 158, 11, .06));
  border: 1px solid rgba(251, 191, 36, .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, #fbbf24, #d97706);
  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: #fbbf24;
  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: #fbbf24;
  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; }
.s3-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;
}
.s3-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, #0f766e, #115e59);
  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, #fde68a 0%, #fbbf24 55%, #d97706 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 */
.s3-reviews-list { display: grid; gap: .75rem; }
.s3-review {
  padding: 1rem 1.1rem; background: #f8fafc; border-radius: 12px; border-left: 4px solid #2563eb;
}
.s3-review-stars { color: #fbbf24; margin-bottom: .35rem; }
.s3-review footer { margin-top: .65rem; font-size: .85rem; color: #64748b; }

/* Big win records (polling ticker) */
.s3-wins {
  margin-bottom: 1.25rem;
  padding: 1rem 0.85rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #0d141e 0%, #121a26 100%);
  border: 1px solid rgba(96, 165, 250, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.s3-wins-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}
.s3-wins-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.02em;
}
.s3-wins-deco {
  color: #64748b;
  font-size: 0.5rem;
  line-height: 1;
}
.s3-wins-panel {
  overflow: hidden;
}
.s3-wins-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}
.s3-win-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.5rem;
  border-radius: 9px;
  background: #1a222d;
  border: 1px solid rgba(148, 163, 184, .22);
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease;
}
.s3-win-item.s3-updating {
  opacity: .35;
  transform: scale(.98);
}
.s3-win-item.s3-fresh {
  animation: bigWinPop .42s ease;
}
@keyframes bigWinPop {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.s3-win-thumb {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #0f172a;
}
.s3-win-body {
  min-width: 0;
  font-size: 0.72rem;
  line-height: 1.35;
}
.s3-win-user {
  margin: 0 0 0.12rem;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s3-win-congrats {
  color: #4ade80;
  font-weight: 700;
  margin-right: 0.12rem;
}
.s3-win-id {
  font-weight: 600;
}
.s3-win-amount {
  margin: 0;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s3-win-verb {
  margin-right: 0.12rem;
}
.s3-win-value {
  color: #fbbf24;
  font-weight: 800;
  font-size: 0.8rem;
}

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

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

.s3-totop {
  /* Align to measured content column right edge (--s3-shell-left / --s3-shell-width set by s3-ui.js) */
  --back-to-top-inset: 1rem;
  position: fixed;
  right: auto;
  left: calc(
    var(--s3-shell-left, 0px) + var(--s3-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;
}
.s3-totop-glow {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(251, 191, 36, .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;
}
.s3-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(251, 191, 36, .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;
}
.s3-totop.s3-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.s3-totop.s3-show .s3-totop-glow {
  opacity: 1;
  transform: scale(1);
}
.s3-totop:hover .s3-totop-core,
.s3-totop:focus-visible .s3-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(251, 191, 36, .18),
    0 0 18px rgba(250, 204, 21, .28),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}
.s3-totop:active .s3-totop-core {
  transform: translateY(0) scale(.96);
}
.s3-totop:focus-visible {
  outline: none;
}
.s3-totop-ico {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .28));
}

@media (max-width: 750px) {
  .s3-totop {
    --back-to-top-inset: 0.85rem;
    bottom: max(5rem, calc(env(safe-area-inset-bottom, 0px) + 4rem));
    width: 50px;
    height: 50px;
  }
  .s3-crumb-inner {
    padding-top: 0.5rem;
    padding-bottom: 0.55rem;
  }
  .s3-crumb-list {
    font-size: 0.875rem;
  }
  .s3-crumb-link {
    min-height: 40px;
    padding: 0.42rem 0.45rem;
    margin: -0.42rem -0.45rem;
  }
  body.s3-is-home .s3-main {
    padding-top: 1.5rem;
  }
  .s3-wrap { padding: 0 1rem; }
  .s3-box { padding: 1.1rem 1.15rem; }
  .home-hero { padding: 1rem 1.1rem 1.15rem; }
  .s3-hot.s3-box { padding: 0.85rem 0 0.95rem; }
  .s3-hot-head,
  .s3-hot-row { padding-left: 0.75rem; padding-right: 0.75rem; }
  .entrance-section.s3-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;
  }
  .s3-enter-btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
  .s3-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.s3-box {
    padding: 1rem 1rem 1.1rem;
  }
  .entrance-banner-grid {
    min-height: 0;
  }
  .s3-enter-visual {
    min-height: 200px;
    max-height: 280px;
  }
  .entrance-visual-media,
  .s3-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; }
  .s3-wins { padding: 0.85rem 0.75rem 0.95rem; }
  .s3-win-thumb { width: 2.2rem; height: 2.2rem; }
  .s3-win-body { font-size: 0.68rem; }
}
@media (max-width: 560px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .s3-enter-visual .entrance-actions {
    gap: 0.4rem;
    padding: 0 0.5rem 0.65rem;
  }
  .s3-enter-visual .s3-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 */
.s3-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(.s3-about) .s3-main {
  padding-bottom: 16px;
}
.s3-about-title {
  margin: 0 0 0.45rem;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
  color: #1e293b;
  text-align: center;
}
.s3-about-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s3-about-banner {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}
.s3-about-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}
.s3-about-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.15rem 0.1rem;
}
.s3-about-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #334155;
  text-align: left;
}
.s3-about-support {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.s3-about-support:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}
.s3-about-support-ico {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
}
.s3-about-support-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.s3-about-support-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}
.s3-about-support-sub {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}
.s3-about-support-arrow {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #94a3b8;
  line-height: 1;
}

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

/* Invite friends page */
.s3-invite {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-top: 0.35rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(.s3-invite) .s3-main {
  padding-bottom: 16px;
}
.s3-invite-title {
  margin: 0 0 0.45rem;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.35;
  color: #1e293b;
  text-align: center;
}
.s3-invite-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s3-invite-banner {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}
.s3-invite-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}
.s3-invite-rules {
  margin: 0;
  padding: 0 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.s3-invite-rules li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
}
.s3-invite-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.s3-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;
}
.s3-invite-copy:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.s3-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;
}
.s3-invite-toast.s3-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Activities page — poster-style banner: image + title overlay as one unit */
.s3-acts {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s3-acts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.s3-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;
}
.s3-act:hover,
.s3-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;
}
.s3-act:focus-visible {
  outline: 2px solid #fde68a;
  outline-offset: 2px;
}
.s3-act-media {
  display: block;
  width: 100%;
  line-height: 0;
}
.s3-act-img {
  display: block;
  width: 100%;
  height: auto;
}
.s3-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;
}
.s3-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;
}
.s3-act-tap svg {
  display: block;
}
.s3-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);
  }
}
.s3-act.s3-textonly {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 55%, #0f172a 100%);
}
.s3-act.s3-textonly .s3-act-cap {
  position: static;
  padding: 1.15rem 1.1rem;
  background: transparent;
}
.s3-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) {
  .s3-act,
  .s3-act:hover,
  .s3-act:focus-visible {
    transition: none;
    transform: none;
  }
  .s3-act-tap,
  .s3-acts-grid .s3-act-arrow,
  .s3-carousel .s3-act-arrow,
  .s3-acts-grid .s3-act-chev,
  .s3-carousel .s3-act-chev {
    animation: none;
  }
}


/* ========== Spinoff home (landing) ========== */
.s3-hero {
  margin-bottom: 1.1rem;
  text-align: center;
}
.s3-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;
}
.s3-hero-media {
  position: relative;
  width: 100%;
  margin: 0 0 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
  aspect-ratio: 730 / 320;
}
.s3-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s3-hero-img[hidden] + .s3-hero-ph,
.s3-hero-ph {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, #1e293b 0%, #0f172a 45%, #334155 100%);
}
.s3-hero-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(251, 191, 36, 0.35), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(234, 179, 8, 0.2), transparent 40%),
    radial-gradient(circle at 80% 65%, rgba(248, 250, 252, 0.12), transparent 35%);
}

/* Home activity carousel (same banners as /activities, 1024×296) */
.s3-carousel {
  position: relative;
  width: 100%;
  margin: 0 0 0.95rem;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  aspect-ratio: auto;
  box-shadow: none;
}
.s3-carousel-track {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 296;
  overflow: hidden;
  border-radius: 4px;
  background: #0f172a;
}
.s3-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}
.s3-carousel-slide.s3-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.s3-carousel-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.s3-carousel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.s3-carousel-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 55%, #0f172a 100%);
}
.s3-carousel-link.s3-textonly .s3-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;
}
.s3-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;
}
.s3-carousel-dots {
  position: static;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
  padding: 0;
  pointer-events: none;
}
.s3-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;
}
.s3-carousel-dot.s3-on {
  background: #fff;
  transform: scale(1.15);
}
.s3-carousel-dot:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .s3-carousel-slide {
    transition: none;
  }
}
.s3-facts {
  padding: 0;
  overflow: hidden;
}
.s3-facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.s3-facts-table th,
.s3-facts-table td {
  padding: 0.7rem 1rem;
  border: 1px solid #93c5fd;
  text-align: left;
  vertical-align: top;
}
.s3-facts-table th {
  width: 42%;
  font-weight: 600;
  color: #1e3a5f;
  background: #f8fafc;
}
.s3-facts-table td {
  color: #0f172a;
  word-break: break-word;
}
.s3-facts-table a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.s3-facts-table a:hover {
  color: #1d4ed8;
}
.s3-intro p {
  margin: 0 0 0.85rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
}
.s3-intro p:last-child {
  margin-bottom: 0;
}
.s3-faq h2,
.s3-details h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1.3;
}
.s3-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
a.s3-faq-item,
.s3-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.s3-faq-item:hover,
.s3-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.s3-faq-item:focus-visible,
.s3-faq-item:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.s3-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;
}
.s3-faq-ico svg {
  display: block;
}
.s3-faq-lbl {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
/* display:flex on .s3-faq-item overrides the HTML [hidden] UA rule — control extras via class */
.s3-faq-item.s3-more,
a.s3-faq-item.s3-more[hidden] {
  display: none !important;
}
.s3-faq.is-expanded .s3-faq-item.s3-more,
.s3-faq.is-expanded a.s3-faq-item.s3-more {
  display: flex !important;
}
.s3-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;
}
.s3-faq-more:hover {
  color: #4e342e;
}
.s3-faq-more:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 6px;
}
.s3-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;
}
.s3-faq.is-expanded .s3-faq-caret {
  transform: translateY(-1px) rotate(180deg);
}
.s3-details p {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
}
.s3-legal h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e3a5f;
}
.s3-legal p {
  margin: 0 0 0.75rem;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}
.s3-thanks {
  margin: 1rem 0 0 !important;
  text-align: center;
  font-weight: 700;
  color: #0f172a !important;
  font-size: 1rem !important;
}
@media (max-width: 480px) {
  .s3-hero-title {
    font-size: 1.28rem;
  }
  a.s3-cta,
  .s3-cta {
    font-size: 0.84rem;
    min-height: 46px;
    padding: 0.5rem 0.5rem 0.5rem 0.6rem;
    border-radius: 12px;
    gap: 0.45rem;
  }
  .s3-cta-ico {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 8px;
  }
  .s3-cta-arrow {
    width: 1.4rem;
    height: 1.4rem;
  }
  .s3-facts-table th,
  .s3-facts-table td {
    padding: 0.6rem 0.75rem;
    font-size: 0.86rem;
  }
  .s3-facts-table th {
    width: 38%;
  }
}


/* ===== spinoff_003 skin overrides (navy + copper, distinct from 002) ===== */
.s3-topbar-inner { min-height: 56px; flex-direction: row; }
.s3-logo { height: 52px; max-height: 52px; }
.s3-burger { border: 2px solid rgba(212,160,23,.55); border-radius: 4px; background: rgba(196,92,38,.28); }
.s3-burger-bar { background: #fde68a; }
body.s3-panel-open .s3-burger-bar:nth-child(1),
body.s3-panel-open .s3-burger-bar:nth-child(3) { background: #fbbf24; }
.s3-crumb {
  background: #efe8dc;
  border-bottom: 2px solid rgba(196,92,38,.22);
}
.s3-panel {
  background: linear-gradient(185deg, #0f172a 0%, #1e293b 55%, #2a1f16 100%);
  color: #f8fafc;
  border-left: 3px solid #c45c26;
}
.s3-panel-link { color: #e2e8f0; border-radius: 4px; }
.s3-panel-link:hover { background: rgba(196,92,38,.18); color: #fde68a; }
.s3-panel-ico { color: #fbbf24; }
.s3-action-main {
  background: #c45c26;
  border-color: #9a4418;
  border-radius: 3px;
  color: #fff;
}
.s3-action-alt {
  background: transparent;
  color: #fde68a;
  border-color: rgba(212,160,23,.65);
  border-radius: 3px;
}
.s3-cta {
  border-radius: 3px;
  box-shadow: 0 4px 0 rgba(26, 21, 32, .18);
}
.s3-cta-login {
  background: #c45c26 !important;
  color: #fff !important;
  border-color: #9a4418 !important;
}
.s3-cta-reg {
  background: #f0c14b !important;
  color: #1a1520 !important;
  border-color: #c9a227 !important;
}
.s3-hero {
  text-align: left;
}
.s3-hero-title {
  font-family: "Outfit", "Source Sans 3", sans-serif;
  color: #f8fafc;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
  letter-spacing: .01em;
  text-align: left;
  margin-top: .75rem;
}
.s3-carousel {
  border: none;
  border-radius: 0;
  margin-bottom: .35rem;
  box-shadow: none;
  background: transparent;
}
.s3-carousel-track {
  box-shadow: 0 10px 28px rgba(15,23,42,.28);
  border: 2px solid rgba(212,160,23,.35);
}
.s3-facts {
  border-left: none;
  border-top: 3px solid #c45c26;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #fffdf9, #f7f4ef);
}
.s3-facts-table th {
  color: #c45c26;
  width: 38%;
}
.s3-ticker {
  background: linear-gradient(90deg, #1e293b, #3b2a1c);
  color: #fde68a;
  border-radius: 4px;
  border: 1px solid rgba(212,160,23,.4);
  margin-top: .85rem;
}
.s3-ticker-go {
  color: #fde68a;
  background: rgba(196,92,38,.35);
  border-color: rgba(212,160,23,.45);
}
.s3-hot {
  background: linear-gradient(180deg, #fffdf9 0%, #f3ebe0 100%);
}
.s3-hot-badge {
  background: #c45c26;
  color: #fff;
  border-radius: 2px;
}
.s3-faq-item {
  border-radius: 4px;
  border-color: rgba(196,92,38,.22);
}
.s3-faq-more {
  background: #c45c26;
  color: #fff;
  border-radius: 3px;
}
.s3-trust {
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(212,160,23,.3);
}
.s3-trust-title { color: #f0c14b; }
.s3-trust-note { color: #cbd5e1; }
.s3-foot {
  background: #0f172a;
  color: #94a3b8;
  border-top: 3px solid #c45c26;
}
.s3-totop {
  background: linear-gradient(135deg, #c45c26, #9a4418);
  border: 2px solid #f0c14b;
  border-radius: 4px;
}
.s3-wins-head { color: #c45c26; font-family: "Outfit", sans-serif; }
.s3-carousel-dot {
  border-radius: 2px;
  width: 10px;
  height: 4px;
}
.s3-carousel-dot.s3-on { background: #f0c14b; transform: scaleX(1.3); }
.s3-carousel-link.s3-textonly .s3-carousel-cap {
  background: transparent;
}
/* ===== spinoff_003 content-style patterns ===== */
.s3-page-hero { margin: 0 0 1rem; text-align: left; }
.s3-page-title {
  margin: 0 0 .4rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  line-height: 1.25;
  color: #1e293b;
}
.s3-page-sub { margin: 0; color: #6b635a; font-size: .95rem; }
.s3-sec-h {
  margin: 0 0 .85rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  color: #c45c26;
}

/* Facts as definition rows */
.s3-facts-grid {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.s3-facts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}
.s3-fact {
  background: #fff;
  border: 1px solid rgba(196,92,38,.16);
  border-radius: 3px;
  padding: .55rem .75rem;
  display: grid;
  grid-template-columns: minmax(5.5rem, 34%) 1fr;
  gap: .55rem;
  align-items: center;
  min-width: 0;
}
.s3-fact-wide { grid-column: auto; }
.s3-fact-k {
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #8a5a2b;
  font-weight: 700;
}
.s3-fact-v {
  font-size: .92rem;
  color: #1e293b;
  font-weight: 700;
  word-break: break-word;
  text-align: right;
}
.s3-facts .s3-facts-table { display: none; }

/* Hot games 2-col denser */
.s3-hot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.s3-hot-grid .s3-hot-card {
  width: auto;
  min-width: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #1e293b;
  box-shadow: 0 6px 16px rgba(15,23,42,.18);
  border: 1px solid rgba(212,160,23,.25);
}
.s3-hot-grid .s3-hot-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #f8fafc;
}
.s3-hot-grid .s3-hot-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.s3-hot-name {
  display: block;
  padding: .5rem .45rem .55rem;
  font-size: .78rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
  background: rgba(15,23,42,.94);
  font-family: "Outfit", sans-serif;
}
.s3-hot-row,
.s3-hot-scrollhint { display: none !important; }

/* Accordion — left accent bars */
.s3-acc { display: flex; flex-direction: column; gap: .5rem; }
.s3-acc-item {
  border: 1px solid rgba(196,92,38,.2);
  border-left: 3px solid #c45c26;
  border-radius: 0 4px 4px 0;
  background: #fff;
  overflow: hidden;
}
.s3-acc-sum {
  list-style: none;
  cursor: pointer;
  padding: .8rem 1rem;
  font-weight: 700;
  color: #1e293b;
  position: relative;
  padding-right: 2.2rem;
  font-family: "Outfit", sans-serif;
}
.s3-acc-sum::-webkit-details-marker { display: none; }
.s3-acc-sum::after {
  content: "▾";
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #c45c26;
  font-size: .95rem;
  font-weight: 700;
}
.s3-acc-item[open] .s3-acc-sum {
  background: #faf4ec;
  border-bottom: 1px solid rgba(196,92,38,.12);
}
.s3-acc-item[open] .s3-acc-sum::after { content: "▴"; }
.s3-acc-body {
  padding: .85rem 1rem 1rem;
  color: #4a433c;
  font-size: .92rem;
}
.s3-acc-body p { margin: 0 0 .65rem; }
.s3-acc-go {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem .8rem;
  border-radius: 3px;
  background: #c45c26;
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  border: 2px solid #9a4418;
}
.s3-acc-go:hover { background: #d46830; }

/* Quote stack — horizontal cards feel */
.s3-quote-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
.s3-quote {
  margin: 0;
  padding: .85rem 1rem;
  border-left: none;
  border-top: 3px solid #f0c14b;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
}
.s3-quote p { margin: 0 0 .5rem; color: #334155; }
.s3-quote footer { font-size: .82rem; color: #6b635a; }
.s3-quote-stars { color: #d4a017; margin-right: .25rem; }
.s3-reviews-list { display: none; }

/* Wins board denser 2-col */
.s3-wins-board .s3-wins-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.s3-wins-board .s3-win-item {
  background: #fff;
  border: 1px solid rgba(196,92,38,.16);
  border-radius: 4px;
  padding: .45rem;
}

/* Horizontal progress rail */
.s3-rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  counter-reset: none;
}
.s3-rail-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .75rem;
  align-items: start;
  padding: .75rem .85rem;
  background: #f0fdfa;
  border: 1px solid rgba(13,148,136,.14);
  border-radius: 12px;
}
.s3-rail-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d9488, #047857);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}
.s3-rail-item p,
.s3-rail-item span { margin: 0; color: #244843; }
.s3-rail-item strong { display: block; margin-bottom: .2rem; color: #042f2e; }

/* Split compare */
.s3-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.s3-split-col {
  border-radius: 12px;
  padding: .85rem;
}
.s3-split-col h3 { margin: 0 0 .55rem; font-size: .95rem; }
.s3-split-col ul { margin: 0; padding-left: 1.1rem; font-size: .86rem; }
.s3-split-bad { background: #fff1f2; border: 1px solid #fecdd3; }
.s3-split-good { background: #ecfdf5; border: 1px solid #99f6e4; }

/* Tile grid */
.s3-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}
.s3-tile {
  background: #fff;
  border: 1px solid rgba(13,148,136,.16);
  border-radius: 12px;
  padding: .8rem;
}
.s3-tile h3 { margin: 0 0 .35rem; font-size: .92rem; color: #0f766e; }
.s3-tile p { margin: 0; font-size: .86rem; color: #33574f; }

/* Register check rows */
.s3-check-rows {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: .75rem 0;
}
.s3-check-row {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: .4rem;
  align-items: center;
  padding: .55rem .65rem;
  background: #f8fffc;
  border-radius: 10px;
  border: 1px solid rgba(13,148,136,.12);
  font-size: .82rem;
}
.s3-check-head {
  background: #0f766e;
  color: #ecfdf5;
  font-weight: 700;
  border-color: transparent;
}

/* About/guides story cards */
.s3-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  margin-bottom: 1rem;
}
.s3-story-card {
  background: #fff;
  border-left: 4px solid #0d9488;
  border-radius: 0 12px 12px 0;
  padding: .85rem 1rem;
  box-shadow: 0 4px 14px rgba(4,47,46,.06);
}
.s3-story-card p { margin: 0; color: #244843; }
.s3-story-card-wide { border-left-color: #fbbf24; }

/* Activities masonry-ish grid */
.s3-acts-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.s3-acts-grid .s3-act {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(13,148,136,.16);
  box-shadow: 0 8px 20px rgba(4,47,46,.08);
}
.s3-acts-grid .s3-act-media {
  position: relative;
  aspect-ratio: 1024 / 296;
  overflow: hidden;
}
.s3-acts-grid .s3-act-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.s3-acts-grid .s3-act-arrow,
.s3-carousel .s3-act-arrow {
  position: absolute;
  top: 50%;
  right: .7rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 2.15rem;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  color: #f0c14b;
  background: rgba(15, 23, 42, .42);
  box-shadow: 0 0 0 1px rgba(240, 193, 75, .45), 0 6px 16px rgba(15, 23, 42, .28);
  pointer-events: none;
  animation: s3-act-arrow-nudge 1.15s ease-in-out infinite;
}
.s3-acts-grid .s3-act-arrow svg,
.s3-carousel .s3-act-arrow svg { display: block; overflow: visible; }
.s3-acts-grid .s3-act-chev,
.s3-carousel .s3-act-chev {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .18;
  animation: s3-act-chev-flash 1.15s ease-in-out infinite;
}
.s3-acts-grid .s3-act-chev:nth-child(2),
.s3-carousel .s3-act-chev:nth-child(2) { animation-delay: .16s; }
.s3-acts-grid .s3-act-chev:nth-child(3),
.s3-carousel .s3-act-chev:nth-child(3) { animation-delay: .32s; }
@keyframes s3-act-arrow-nudge {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  18% { transform: translateY(-50%) translateX(5px); }
  36% { transform: translateY(-50%) translateX(0); }
  54% { transform: translateY(-50%) translateX(8px); }
  72% { transform: translateY(-50%) translateX(1px); }
}
@keyframes s3-act-chev-flash {
  0%, 100% { opacity: .16; }
  28% { opacity: 1; filter: drop-shadow(0 0 4px rgba(240, 193, 75, .95)); }
  52% { opacity: .22; }
}
.s3-acts-grid .s3-act.s3-textonly .s3-act-cap {
  position: static;
  display: flex;
  align-items: center;
  padding: .9rem 1rem;
  background: transparent;
}
.s3-acts-grid .s3-act-title { margin: 0; font-size: .95rem; color: #042f2e; }
.s3-acts-list { display: none; }

/* Messages timeline */
.s3-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid #0d9488;
  margin: .5rem 0 0 .4rem;
  padding-left: 0;
}
.s3-timeline-item {
  position: relative;
  margin: 0 0 .75rem 0;
  padding: .85rem 1rem .85rem 1.1rem;
  background: #fff;
  border-radius: 0 12px 12px 0;
  border: 1px solid rgba(13,148,136,.14);
  border-left: none;
  color: #244843;
}
.s3-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 1.1rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: #fbbf24;
  border: 2px solid #0f766e;
}

/* Download app card: icon left, copy right, CTA full width */
.s3-dl .s3-dl-app-layout {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: center;
  gap: .85rem 1rem;
  text-align: left;
  margin-bottom: .9rem;
}
.s3-dl .s3-dl-icon-wrap {
  width: 5.5rem;
  height: 5.5rem;
  justify-self: center;
}
.s3-dl .s3-dl-app-main { min-width: 0; }
.s3-dl .s3-dl-app-title {
  margin: 0 0 .55rem;
  text-align: left;
}
.s3-dl .s3-facts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem;
  margin: 0 0 .65rem;
  text-align: left;
}
.s3-dl .s3-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .12rem;
  padding: .4rem .45rem;
  min-width: 0;
  background: rgba(255, 253, 249, .72) !important;
  box-shadow: none !important;
}
.s3-dl .s3-fact-k,
.s3-dl .s3-fact-v {
  min-width: 0;
  width: 100%;
}
.s3-dl .s3-fact-k { font-size: .62rem; line-height: 1.2; }
.s3-dl .s3-fact-v { font-size: .78rem; line-height: 1.25; }
.s3-dl .s3-dl-stores {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.s3-dl .s3-dl-app-cta { margin-top: 0; }

@media (max-width: 420px) {
  .s3-hot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .s3-facts-grid-3 { grid-template-columns: 1fr; }
  .s3-dl .s3-dl-app-layout {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: .7rem;
  }
  .s3-dl .s3-dl-icon-wrap {
    width: 4.25rem;
    height: 4.25rem;
  }
  .s3-dl .s3-facts-grid-3 { grid-template-columns: 1fr; }
  .s3-tile-grid,
  .s3-split,
  .s3-wins-board .s3-wins-grid { grid-template-columns: 1fr; }
}

/* ===== spinoff_003 buttons + surface atmosphere ===== */
.s3-shell {
  --s3-btn-cut: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  --s3-surface-grid:
    repeating-linear-gradient(0deg, rgba(196, 92, 38, .04) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(90deg, rgba(30, 41, 59, .035) 0 1px, transparent 1px 16px);
  --s3-surface-wash: linear-gradient(165deg, rgba(255, 253, 249, .98) 0%, rgba(247, 244, 239, .92) 50%, rgba(255, 255, 255, .95) 100%);
  --s3-surface-wash-alt: linear-gradient(165deg, rgba(255, 248, 240, .98) 0%, rgba(255, 255, 255, .9) 55%, rgba(243, 235, 224, .95) 100%);
}

.s3-box,
.s3-story-card,
.s3-tile,
.s3-rail-item,
.s3-quote,
.s3-timeline-item,
.s3-fact,
.s3-acc-item,
.s3-act {
  background-image: var(--s3-surface-grid), var(--s3-surface-wash) !important;
  background-color: #fffdf9 !important;
  border: 1px solid rgba(196, 92, 38, .18) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .75) inset,
    0 10px 28px rgba(15, 23, 42, .07) !important;
}
.s3-box {
  border-radius: 2px 12px 2px 12px !important;
  position: relative;
}
.s3-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f0c14b, #c45c26);
  border-radius: 2px 0 0 2px;
  pointer-events: none;
}
.s3-main > .s3-box:nth-child(even),
.s3-login > .s3-box:nth-child(even),
.s3-reg > .s3-box:nth-child(even),
.s3-dl > .s3-box:nth-child(even) {
  background-image: var(--s3-surface-grid), var(--s3-surface-wash-alt) !important;
}
.s3-sec-h,
.s3-page-title {
  display: inline-block;
  padding: .2rem .55rem .2rem .45rem;
  margin-bottom: .75rem;
  background: linear-gradient(90deg, rgba(196, 92, 38, .12), transparent);
  border-left: 3px solid #c45c26;
  border-radius: 0 4px 4px 0;
  color: #1e293b;
}
.s3-page-hero {
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  background-image: var(--s3-surface-grid), linear-gradient(135deg, #1e293b 0%, #3b2a1c 100%);
  border: 1px solid rgba(212, 160, 23, .4);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .22);
}
.s3-page-hero .s3-page-title,
.s3-page-hero .s3-page-sub {
  color: #f8fafc;
  background: none;
  border: 0;
  padding: 0;
  display: block;
}
.s3-page-hero .s3-page-sub { color: #e7d5b5; }

.s3-story-card { border-left: 4px solid #c45c26 !important; border-radius: 0 8px 8px 0 !important; }
.s3-story-card-wide { border-left-color: #f0c14b !important; }
.s3-quote {
  border-left: none !important;
  border-top: 3px solid #f0c14b !important;
  border-radius: 4px !important;
}
.s3-acc-item { border-radius: 0 4px 4px 0 !important; overflow: hidden; }
.s3-acc-sum {
  background: #faf4ec !important;
  color: #1e293b !important;
}
.s3-acc-sum::after { color: #c45c26 !important; }
.s3-acc-item[open] .s3-acc-sum {
  background: #1e293b !important;
  color: #fde68a !important;
  border-bottom: 1px solid rgba(212, 160, 23, .35) !important;
}
.s3-acc-body {
  background-image: var(--s3-surface-grid), linear-gradient(180deg, #fffdf9, #fff) !important;
}
.s3-hot {
  background-image: var(--s3-surface-grid), linear-gradient(180deg, #fffdf9, #f3ebe0) !important;
}
.s3-intro,
.s3-details,
.s3-legal,
.s3-faq,
.s3-reviews {
  background-image: var(--s3-surface-grid), var(--s3-surface-wash) !important;
}
.s3-wins-board {
  padding: .85rem;
  background-image: var(--s3-surface-grid), linear-gradient(180deg, #1e293b, #2a1f16);
  border: 1px solid rgba(212, 160, 23, .4);
  border-radius: 4px;
}
.s3-wins-board .s3-wins-head { color: #f0c14b; }
.s3-wins-board .s3-win-item {
  background-image: var(--s3-surface-grid), linear-gradient(180deg, #fffdf9, #fff) !important;
}

.s3-action,
.s3-cta,
.s3-login-btn,
.s3-reg-btn,
.s3-invite-copy,
.s3-login-steps-cta,
.s3-reg-steps-cta,
.s3-login-app,
.s3-reg-dl,
.s3-dl-app-cta,
.s3-dl-audit-cta,
.s3-acc-go,
.s3-faq-more,
.s3-hot-all,
.s3-reg-cmp-pill {
  border-radius: 3px !important;
  clip-path: none;
  font-family: "Outfit", "Source Sans 3", sans-serif;
  font-weight: 800 !important;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease !important;
}
.s3-action:hover,
.s3-cta:hover,
.s3-login-btn:hover,
.s3-reg-btn:hover,
.s3-invite-copy:hover,
.s3-login-steps-cta:hover,
.s3-reg-steps-cta:hover,
.s3-dl-app-cta:hover,
.s3-dl-audit-cta:hover,
.s3-acc-go:hover {
  transform: translateY(-2px) !important;
}

.s3-action-main,
.s3-login-btn-in,
.s3-reg-btn-in,
.s3-login-steps-cta,
.s3-reg-steps-cta,
.s3-dl-audit-main,
.s3-acc-go,
.s3-faq-more {
  background: #c45c26 !important;
  color: #fff !important;
  border: 2px solid #9a4418 !important;
  box-shadow: 0 4px 0 #7a3512, 0 10px 18px rgba(154, 68, 24, .25) !important;
}
.s3-action-alt,
.s3-login-btn-up,
.s3-reg-btn-up,
.s3-dl-audit-bonus,
.s3-reg-cmp-pill,
.s3-hot-all {
  background: transparent !important;
  color: #c45c26 !important;
  border: 2px solid #c45c26 !important;
  box-shadow: none !important;
}
.s3-action-alt:hover,
.s3-login-btn-up:hover,
.s3-reg-btn-up:hover,
.s3-dl-audit-bonus:hover,
.s3-hot-all:hover {
  background: rgba(196, 92, 38, .1) !important;
  color: #9a4418 !important;
}

a.s3-cta,
.s3-cta {
  border: 2px solid transparent !important;
  box-shadow: 0 4px 0 rgba(26, 21, 32, .25) !important;
}
a.s3-cta-login,
.s3-cta-login {
  background: #c45c26 !important;
  color: #fff !important;
  border-color: #9a4418 !important;
}
a.s3-cta-reg,
.s3-cta-reg {
  background: #f0c14b !important;
  color: #1a1520 !important;
  border-color: #c9a227 !important;
}
.s3-cta-reg .s3-cta-ico,
.s3-cta-reg .s3-cta-arrow { color: #1a1520 !important; }

.s3-invite-copy,
.s3-dl-app-cta {
  background: #f0c14b !important;
  color: #1a1520 !important;
  border: 2px solid #c9a227 !important;
  box-shadow: 0 4px 0 #a67c0f !important;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  text-decoration: none;
  font-weight: 800;
}
.s3-login-app,
.s3-reg-dl {
  background: #1e293b !important;
  color: #fde68a !important;
  border: 2px solid rgba(212, 160, 23, .65) !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .2) !important;
}

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

.s3-totop {
  width: 48px !important;
  height: 48px !important;
  border-radius: 4px !important;
  left: calc(
    var(--s3-shell-left, 0px) + var(--s3-shell-width, 100%) - var(--back-to-top-inset) - 48px
  ) !important;
}
.s3-totop-glow { display: none !important; }
.s3-totop-core {
  border-radius: 4px !important;
  clip-path: none;
  color: #fde68a !important;
  background: #c45c26 !important;
  border: 2px solid #f0c14b !important;
  box-shadow: 0 4px 0 #7a3512, 0 8px 18px rgba(154, 68, 24, .4) !important;
}
.s3-totop:hover .s3-totop-core,
.s3-totop:focus-visible .s3-totop-core {
  color: #fff !important;
  border-color: #fde68a !important;
  background: #d46830 !important;
  transform: translateY(-2px) !important;
}

.s3-panel-cta .s3-action {
  clip-path: none;
  border-radius: 3px !important;
}

body.s3-is-home .s3-main {
  padding-top: 1rem !important;
}
.s3-hero-title {
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
  min-height: 0;
  margin: .75rem 0 .35rem !important;
  padding: 0 !important;
  box-sizing: border-box;
  text-align: left !important;
  line-height: 1.3 !important;
}
.s3-hot-flame {
  color: #c45c26;
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}
.s3-rail-num {
  background: #c45c26 !important;
  border-radius: 4px !important;
}