* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  --s2-shell-max: 680px;
  --s2-ink: #0b1f1a;
  --s2-pine: #0f3d34;
  --s2-teal: #0d9488;
  --s2-mint: #5eead4;
  --s2-amber: #fbbf24;
  --s2-cream: #f4faf8;
  --s2-surface: #ecfdf8;
}
body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Candara, system-ui, sans-serif;
  color: var(--s2-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 148, 136, .45), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(251, 191, 36, .28), transparent 50%),
    linear-gradient(165deg, #064e3b 0%, #0f172a 48%, #134e4a 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
body.lang-hi { font-family: "Noto Sans Devanagari", "Segoe UI", system-ui, sans-serif; }
.s2-shell {
  --s2-shell-max: 680px;
  width: min(100%, var(--s2-shell-max));
  max-width: var(--s2-shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #06261f 0%, #0a332b 120px, var(--s2-cream) 120px, #f8fffc 100%);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, .18), 0 18px 60px rgba(0, 0, 0, .35);
  border-radius: 0;
}
.s2-wrap { max-width: none; margin: 0 auto; padding: 0 1.25rem; }
img,
video {
  max-width: 100%;
  height: auto;
}
.s2-dim { color: #5b736c; }
.s2-center { text-align: center; }
.s2-box {
  background: #fff;
  border-radius: 6px 18px 6px 18px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 8px 24px rgba(6, 78, 59, .08);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(13, 148, 136, .14);
}

/* Header */
.s2-topbar {
  background: linear-gradient(90deg, #042f2e 0%, #0f766e 55%, #115e59 100%);
  color: #ecfdf5;
  padding: 0.35rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 0 rgba(251, 191, 36, .55), 0 8px 24px rgba(0,0,0,.22);
}

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

/* Breadcrumb bar (below header) */
.s2-crumb {
  background: #f8fafc;
  border-bottom: 1px solid rgba(148, 163, 184, .2);
}
.s2-crumb-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.6rem;
}
.s2-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;
}
.s2-crumb-item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  color: #64748b;
}
.s2-crumb-item:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: #cbd5e1;
  font-weight: 400;
  flex-shrink: 0;
}
.s2-crumb-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.28rem 0.4rem;
  margin: -0.28rem -0.4rem;
  border-radius: 6px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.s2-crumb-link:hover {
  color: #1d4ed8;
  background: rgba(37, 99, 235, .08);
  text-decoration: none;
}
.s2-crumb-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 1px;
  background: rgba(37, 99, 235, .08);
}
.s2-crumb-now {
  display: inline;
  color: #0f172a;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.s2-crumb-item.s2-now {
  flex: 1 1 auto;
  min-width: 0;
}

/* Header actions: lang switch + menu */
.s2-topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}
.s2-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 2px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}
.s2-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  color: rgba(255,255,255,.78);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  transition: background .15s ease, color .15s ease;
}
.s2-lang-link:hover,
.s2-lang-link:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.14);
  outline: none;
}
.s2-lang-link.s2-lang-on {
  color: #0f172a;
  background: #fff;
}

/* Menu toggle */
.s2-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  flex-shrink: 0;
}
.s2-burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
body.s2-panel-open .s2-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.s2-panel-open .s2-burger-bar:nth-child(2) { opacity: 0; }
body.s2-panel-open .s2-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide drawer — pin to measured .s2-shell bounds (--s2-shell-left / --s2-shell-width from JS) */
.s2-panel-root {
  position: fixed;
  top: 0;
  bottom: 0;
  left: var(--s2-shell-left, 0px);
  width: var(--s2-shell-width, 100%);
  max-width: var(--s2-shell-max, 620px);
  z-index: 60;
  overflow: hidden;
  pointer-events: none;
  box-sizing: border-box;
}
body.s2-panel-open .s2-panel-root {
  pointer-events: auto;
}
.s2-panel-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  z-index: 1;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
body.s2-panel-open .s2-panel-mask {
  opacity: 1;
  pointer-events: auto;
}
.s2-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88%);
  max-width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
  z-index: 2;
  transform: translateX(100%);
  transition: transform .28s ease;
  box-shadow: -8px 0 32px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  pointer-events: auto;
  box-sizing: border-box;
}
body.s2-panel-open { overflow: hidden; }
body.s2-panel-open .s2-panel { transform: translateX(0); }
.s2-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.s2-panel-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex: 1;
  min-width: 0;
}
.s2-panel-logo {
  height: 48px;
  max-height: 48px;
}
.s2-panel-x {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.s2-panel-nav {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
  overflow-y: auto;
}
.s2-panel-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: .8rem 1rem;
  border-radius: 10px;
  transition: background .15s, color .15s, transform .15s;
}
.s2-panel-ico {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
  transition: background .15s, color .15s;
}
.s2-panel-ico svg {
  display: block;
}
.s2-panel-lbl {
  min-width: 0;
  line-height: 1.3;
}
.s2-panel-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.s2-panel-link:hover .s2-panel-ico {
  background: rgba(147, 197, 253, 0.22);
  color: #bfdbfe;
}
.s2-panel-cta {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.s2-panel-cta .s2-action { width: 100%; }

.s2-main {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  min-width: 0;
}
body.s2-is-home .s2-main {
  padding-top: 1.625rem;
}

/* Buttons */
.s2-action {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .72rem 1.2rem; border-radius: 10px; text-decoration: none;
  font-weight: 700; border: 2px solid transparent; transition: transform .15s, box-shadow .15s;
}
.s2-action:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37, 99, 235, .25); }
.s2-action-sm { padding: .45rem .85rem; font-size: .85rem; border-radius: 8px; }
.s2-action-lg { padding: .95rem 1.5rem; font-size: 1.05rem; min-width: 160px; }
.s2-action-main { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; }
.s2-action-alt { background: #0f766e; color: #fff; }
.s2-action-accent { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.s2-action-line { background: #fff; color: #1d4ed8; border-color: #93c5fd; }
.s2-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; }

/* Spinoff s2-fallback-hero CTAs — action row with icon + label + chevron */
.s2-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.15rem;
  margin-bottom: 1.15rem;
}
a.s2-cta,
.s2-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0.55rem 0.55rem 0.55rem 0.7rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.25;
  letter-spacing: 0.005em;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
a.s2-cta:hover,
.s2-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
a.s2-cta:active,
.s2-cta:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
a.s2-cta:focus-visible,
.s2-cta:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.s2-cta-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.14);
}
.s2-cta-ico svg {
  display: block;
}
.s2-cta-lbl {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.s2-cta-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-left: auto;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  background: rgba(0, 0, 0, 0.14);
}
a.s2-cta-login,
.s2-cta-login {
  color: #fff !important;
  background: linear-gradient(165deg, #ef5350 0%, #e53935 42%, #c62828 100%);
  border-color: rgba(183, 28, 28, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 16px rgba(198, 40, 40, 0.28);
}
a.s2-cta-login:hover,
.s2-cta-login:hover {
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 22px rgba(198, 40, 40, 0.34);
}
a.s2-cta-reg,
.s2-cta-reg {
  color: #2c1810 !important;
  background: linear-gradient(165deg, #ffe082 0%, #ffca28 45%, #ffb300 100%);
  border-color: rgba(245, 127, 23, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 16px rgba(255, 179, 0, 0.28);
}
a.s2-cta-reg:hover,
.s2-cta-reg:hover {
  color: #2c1810 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 22px rgba(255, 179, 0, 0.36);
}
.s2-cta-reg .s2-cta-ico,
.s2-cta-reg .s2-cta-arrow {
  background: rgba(44, 24, 16, 0.12);
  color: #2c1810;
}

/* Home s2-fallback-hero / trust s2-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 .s2-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; }
.s2-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.s2-modal-open { overflow: hidden; }

.s2-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;
}
.s2-ticker-ico {
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 14px;
  line-height: 1;
}
.s2-ticker-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.s2-ticker-text {
  display: inline-block;
  white-space: nowrap;
  animation: announcement-marquee 12s linear infinite;
}
.s2-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;
}
.s2-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) {
  .s2-ticker-text { animation: none; }
}

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

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

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

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

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

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

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

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

/* Entrance banner */
.entrance-section.s2-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;
}
.s2-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;
}
.s2-enter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.s2-enter-ico {
  display: inline-flex;
  flex-shrink: 0;
}
.s2-enter-lbl { white-space: nowrap; }
.s2-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;
}
.s2-enter-official {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
}
.s2-enter-official .s2-enter-arrow {
  background: rgba(0,0,0,.18);
  color: #fff;
}
.s2-enter-apk {
  background: linear-gradient(180deg, #fde047, #facc15);
  color: #2c1810;
}
.s2-enter-apk .s2-enter-arrow {
  background: rgba(44,24,16,.12);
  color: #2c1810;
}
.s2-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;
}
.s2-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; }
.s2-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;
}
.s2-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 */
.s2-reviews-list { display: grid; gap: .75rem; }
.s2-review {
  padding: 1rem 1.1rem; background: #f8fafc; border-radius: 12px; border-left: 4px solid #2563eb;
}
.s2-review-stars { color: #fbbf24; margin-bottom: .35rem; }
.s2-review footer { margin-top: .65rem; font-size: .85rem; color: #64748b; }

/* Big win records (polling ticker) */
.s2-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);
}
.s2-wins-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}
.s2-wins-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.02em;
}
.s2-wins-deco {
  color: #64748b;
  font-size: 0.5rem;
  line-height: 1;
}
.s2-wins-panel {
  overflow: hidden;
}
.s2-wins-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}
.s2-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;
}
.s2-win-item.s2-updating {
  opacity: .35;
  transform: scale(.98);
}
.s2-win-item.s2-fresh {
  animation: bigWinPop .42s ease;
}
@keyframes bigWinPop {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.s2-win-thumb {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #0f172a;
}
.s2-win-body {
  min-width: 0;
  font-size: 0.72rem;
  line-height: 1.35;
}
.s2-win-user {
  margin: 0 0 0.12rem;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s2-win-congrats {
  color: #4ade80;
  font-weight: 700;
  margin-right: 0.12rem;
}
.s2-win-id {
  font-weight: 600;
}
.s2-win-amount {
  margin: 0;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s2-win-verb {
  margin-right: 0.12rem;
}
.s2-win-value {
  color: #fbbf24;
  font-weight: 800;
  font-size: 0.8rem;
}

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

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

.s2-totop {
  /* Align to measured content column right edge (--s2-shell-left / --s2-shell-width set by site.js) */
  --back-to-top-inset: 1rem;
  position: fixed;
  right: auto;
  left: calc(
    var(--s2-shell-left, 0px) + var(--s2-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;
}
.s2-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;
}
.s2-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;
}
.s2-totop.s2-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.s2-totop.s2-show .s2-totop-glow {
  opacity: 1;
  transform: scale(1);
}
.s2-totop:hover .s2-totop-core,
.s2-totop:focus-visible .s2-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);
}
.s2-totop:active .s2-totop-core {
  transform: translateY(0) scale(.96);
}
.s2-totop:focus-visible {
  outline: none;
}
.s2-totop-ico {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .28));
}

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

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

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

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


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


/* ===== spinoff_002 skin overrides (distinct from spinoff) ===== */
.s2-topbar-inner { min-height: 52px; flex-direction: row-reverse; }
.s2-topbar-actions { margin-left: 0; gap: 0.75rem; }
.s2-logo { height: 48px; max-height: 48px; }
.s2-burger { border: 1px solid rgba(251,191,36,.55); border-radius: 10px; background: rgba(0,0,0,.2); }
.s2-burger-bar { background: #fbbf24; }
.s2-lang { border-color: rgba(251,191,36,.55); background: rgba(0,0,0,.2); }
.s2-lang-link { color: rgba(251,191,36,.85); }
.s2-lang-link:hover,
.s2-lang-link:focus-visible { color: #fbbf24; background: rgba(251,191,36,.12); }
.s2-lang-link.s2-lang-on { color: #042f2e; background: #fbbf24; }
body.s2-panel-open .s2-burger-bar:nth-child(1),
body.s2-panel-open .s2-burger-bar:nth-child(3) { background: #5eead4; }
.s2-crumb {
  background: #d1fae5;
  border-bottom: 2px solid rgba(13,148,136,.25);
}
.s2-panel {
  background: linear-gradient(180deg, #042f2e 0%, #0b3d38 100%);
  color: #ecfdf5;
  border-left: 3px solid #fbbf24;
}
.s2-panel-link { color: #ecfdf5; border-radius: 8px; }
.s2-panel-link:hover { background: rgba(94,234,212,.12); color: #fbbf24; }
.s2-panel-ico { color: #5eead4; }
.s2-action-main {
  background: linear-gradient(135deg, #0d9488, #047857);
  border-color: transparent;
  border-radius: 999px;
}
.s2-action-alt {
  background: #fbbf24;
  color: #042f2e;
  border-color: transparent;
  border-radius: 999px;
}
.s2-cta {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(4, 47, 46, .18);
}
.s2-cta-login {
  background: linear-gradient(135deg, #0f766e, #115e59) !important;
}
.s2-cta-reg {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #111 !important;
}
.s2-hero-title {
  color: #ecfdf5;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  letter-spacing: .02em;
}
.s2-facts {
  border-left: 4px solid #0d9488;
  border-radius: 4px 16px 4px 16px;
}
.s2-facts-table th {
  color: #0f766e;
  width: 38%;
}
.s2-ticker {
  background: linear-gradient(90deg, #042f2e, #134e4a);
  color: #ecfdf5;
  border-radius: 999px;
  border: 1px solid rgba(94,234,212,.35);
}
.s2-hot {
  background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%);
}
.s2-hot-badge {
  background: #f59e0b;
  color: #111;
  border-radius: 4px;
}
.s2-faq-item {
  border-radius: 10px;
  border-color: rgba(13,148,136,.2);
}
.s2-faq-more {
  background: #0f766e;
  color: #fff;
  border-radius: 999px;
}
.s2-trust {
  background: #042f2e;
  color: #ecfdf5;
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.s2-trust-title { color: #fbbf24; }
.s2-trust-note { color: #99f6e4; }
.s2-foot {
  background: #021a17;
  color: #99f6e4;
  border-top: 2px solid rgba(251,191,36,.4);
}
.s2-totop {
  background: linear-gradient(135deg, #0d9488, #047857);
  border: 2px solid #fbbf24;
}
.s2-wins-head { color: #0f766e; }
.s2-carousel-dot.s2-on { background: #fbbf24; }
.s2-carousel-cap {
  background: linear-gradient(transparent, rgba(4,47,46,.85));
}
/* ===== spinoff_002 content-style patterns (grid / accordion / rail) ===== */
.s2-page-hero { margin: 0 0 1rem; text-align: center; }
.s2-page-title {
  margin: 0 0 .4rem;
  font-size: 1.55rem;
  line-height: 1.25;
  color: #042f2e;
}
.s2-page-sub { margin: 0; color: #3f6b63; font-size: .95rem; }
.s2-sec-h {
  margin: 0 0 .85rem;
  font-size: 1.15rem;
  color: #0f766e;
}

/* Facts chips */
.s2-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}
.s2-facts-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.s2-fact {
  background: linear-gradient(180deg, #f0fdfa, #fff);
  border: 1px solid rgba(13,148,136,.18);
  border-radius: 12px;
  padding: .75rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}
.s2-fact-wide { grid-column: 1 / -1; }
.s2-fact-k {
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0f766e;
  font-weight: 700;
}
.s2-fact-v {
  font-size: .95rem;
  color: #042f2e;
  font-weight: 700;
  word-break: break-word;
}
.s2-facts .s2-facts-table { display: none; }

/* Hot games 3-col grid */
.s2-hot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}
.s2-hot-grid .s2-hot-card {
  width: auto;
  min-width: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #042f2e;
  box-shadow: 0 6px 16px rgba(4,47,46,.16);
}
.s2-hot-grid .s2-hot-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ecfdf5;
}
.s2-hot-grid .s2-hot-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.s2-hot-name {
  display: block;
  padding: .45rem .4rem .55rem;
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  background: rgba(4,47,46,.92);
}
.s2-hot-row,
.s2-hot-scrollhint { display: none !important; }

/* Accordion */
.s2-acc { display: flex; flex-direction: column; gap: .55rem; }
.s2-acc-item {
  border: 1px solid rgba(13,148,136,.22);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.s2-acc-sum {
  list-style: none;
  cursor: pointer;
  padding: .85rem 1rem;
  font-weight: 700;
  color: #042f2e;
  position: relative;
  padding-right: 2.2rem;
}
.s2-acc-sum::-webkit-details-marker { display: none; }
.s2-acc-sum::after {
  content: "+";
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0d9488;
  font-size: 1.2rem;
  font-weight: 700;
}
.s2-acc-item[open] .s2-acc-sum {
  background: #ecfdf5;
  border-bottom: 1px solid rgba(13,148,136,.15);
}
.s2-acc-item[open] .s2-acc-sum::after { content: "–"; }
.s2-acc-body {
  padding: .85rem 1rem 1rem;
  color: #33574f;
  font-size: .92rem;
}
.s2-acc-body p { margin: 0 0 .65rem; }
.s2-acc-go {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
}
.s2-acc-go:hover { background: #115e59; }

/* Quote stack reviews */
.s2-quote-stack { display: flex; flex-direction: column; gap: .75rem; }
.s2-quote {
  margin: 0;
  padding: .9rem 1rem .9rem 1.1rem;
  border-left: 4px solid #fbbf24;
  background: linear-gradient(90deg, #ecfdf5, #fff);
  border-radius: 0 12px 12px 0;
}
.s2-quote p { margin: 0 0 .5rem; color: #1f3d37; }
.s2-quote footer { font-size: .82rem; color: #5b736c; }
.s2-quote-stars { color: #f59e0b; margin-right: .25rem; }
.s2-reviews-list { display: none; }

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

/* Horizontal progress rail */
.s2-rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  counter-reset: none;
}
.s2-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;
}
.s2-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;
}
.s2-rail-item p,
.s2-rail-item span { margin: 0; color: #244843; }
.s2-rail-item strong { display: block; margin-bottom: .2rem; color: #042f2e; }

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

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

/* Register check rows */
.s2-check-rows {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: .75rem 0;
}
.s2-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;
}
.s2-check-head {
  background: #0f766e;
  color: #ecfdf5;
  font-weight: 700;
  border-color: transparent;
}

/* About/guides story cards */
.s2-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  margin-bottom: 1rem;
}
.s2-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);
}
.s2-story-card p { margin: 0; color: #244843; }
.s2-story-card-wide { border-left-color: #fbbf24; }

/* Activities masonry-ish grid */
.s2-acts-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.s2-acts-grid .s2-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);
}
.s2-acts-grid .s2-act-media {
  /* Let the banner's intrinsic ratio drive height — never force fill/stretch */
  aspect-ratio: auto;
  overflow: hidden;
  background: #0f172a;
  line-height: 0;
}
.s2-acts-grid .s2-act-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: unset;
  vertical-align: top;
}
.s2-acts-grid .s2-act-cap {
  position: static; /* cancel poster-style absolute overlay */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .75rem .9rem;
  background: none;
  pointer-events: auto;
}
.s2-acts-grid .s2-act-title {
  color: #042f2e;
  text-shadow: none;
}
.s2-acts-grid .s2-act-title { margin: 0; font-size: .95rem; color: #042f2e; }
.s2-act-go { color: #0d9488; font-weight: 800; font-size: 1.1rem; }
.s2-acts-list { display: none; }

/* Messages timeline */
.s2-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid #0d9488;
  margin: .5rem 0 0 .4rem;
  padding-left: 0;
}
.s2-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;
}
.s2-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 layout tweak */
.s2-dl .s2-dl-app-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.s2-dl .s2-facts-grid { text-align: left; margin: .75rem 0; }

@media (max-width: 420px) {
  .s2-hot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .s2-facts-grid-3 { grid-template-columns: 1fr; }
  .s2-tile-grid,
  .s2-split,
  .s2-wins-board .s2-wins-grid { grid-template-columns: 1fr; }
}

/* ===== spinoff_002 buttons + surface atmosphere ===== */
.s2-shell {
  --s2-btn-cut: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  --s2-surface-grid:
    repeating-linear-gradient(0deg, rgba(15, 118, 110, .045) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, rgba(15, 118, 110, .045) 0 1px, transparent 1px 14px);
  --s2-surface-wash: linear-gradient(165deg, rgba(240, 253, 250, .96) 0%, rgba(255, 255, 255, .88) 48%, rgba(236, 253, 245, .94) 100%);
  --s2-surface-wash-alt: linear-gradient(165deg, rgba(236, 253, 245, .98) 0%, rgba(254, 252, 232, .72) 55%, rgba(240, 253, 250, .95) 100%);
}

/* Generic content surfaces — leave pure white */
.s2-box,
.s2-story-card,
.s2-tile,
.s2-rail-item,
.s2-quote,
.s2-timeline-item,
.s2-fact,
.s2-acc-item,
.s2-act {
  background-image: var(--s2-surface-grid), var(--s2-surface-wash) !important;
  background-color: #ecfdf5 !important;
  border: 1px solid rgba(13, 148, 136, .2) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .7) inset,
    0 10px 28px rgba(4, 47, 46, .08) !important;
}
.s2-box {
  border-radius: 4px 14px 4px 14px !important;
  position: relative;
}
.s2-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #fbbf24, #0d9488);
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}
.s2-main > .s2-box:nth-child(even),
.s2-login > .s2-box:nth-child(even),
.s2-reg > .s2-box:nth-child(even),
.s2-dl > .s2-box:nth-child(even) {
  background-image: var(--s2-surface-grid), var(--s2-surface-wash-alt) !important;
}
.s2-sec-h,
.s2-page-title {
  display: inline-block;
  padding: .2rem .55rem .2rem .45rem;
  margin-bottom: .75rem;
  background: linear-gradient(90deg, rgba(13, 148, 136, .14), transparent);
  border-left: 3px solid #fbbf24;
  border-radius: 0 6px 6px 0;
}
.s2-page-hero {
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  background-image: var(--s2-surface-grid), linear-gradient(135deg, #042f2e 0%, #0f766e 100%);
  border: 1px solid rgba(251, 191, 36, .35);
  border-radius: 4px 14px;
  box-shadow: 0 8px 24px rgba(4, 47, 46, .2);
}
.s2-page-hero .s2-page-title,
.s2-page-hero .s2-page-sub {
  color: #ecfdf5;
  background: none;
  border: 0;
  padding: 0;
  display: block;
}
.s2-page-hero .s2-page-sub { color: #99f6e4; }
.s2-page-hero .s2-notice-ico { filter: drop-shadow(0 0 4px rgba(251,191,36,.5)); }

.s2-story-card { border-left: 4px solid #0d9488 !important; border-radius: 0 12px 12px 0 !important; }
.s2-story-card-wide { border-left-color: #fbbf24 !important; }
.s2-quote {
  border-left: 4px solid #fbbf24 !important;
  border-radius: 0 12px 12px 0 !important;
}
.s2-acc-item { border-radius: 4px 10px !important; overflow: hidden; }
.s2-acc-sum {
  background: linear-gradient(90deg, #0f766e, #115e59) !important;
  color: #ecfdf5 !important;
}
.s2-acc-sum::after { color: #fbbf24 !important; }
.s2-acc-item[open] .s2-acc-sum {
  background: linear-gradient(90deg, #042f2e, #0f766e) !important;
  border-bottom: 1px solid rgba(251, 191, 36, .35) !important;
}
.s2-acc-body {
  background-image: var(--s2-surface-grid), linear-gradient(180deg, #f0fdfa, #fff) !important;
}
.s2-hot {
  background-image: var(--s2-surface-grid), linear-gradient(180deg, #ecfdf5, #fff8eb) !important;
}
.s2-intro,
.s2-details,
.s2-legal,
.s2-faq,
.s2-reviews {
  background-image: var(--s2-surface-grid), var(--s2-surface-wash) !important;
}
.s2-wins-board {
  padding: .85rem;
  background-image: var(--s2-surface-grid), linear-gradient(180deg, #042f2e, #0b3d38);
  border: 1px solid rgba(251, 191, 36, .4);
  border-radius: 4px 14px;
}
.s2-wins-board .s2-wins-head { color: #fbbf24; }
.s2-wins-board .s2-win-item {
  background-image: var(--s2-surface-grid), linear-gradient(180deg, #f0fdfa, #fff) !important;
}

/* —— Buttons: hard cut corners + amber edge —— */
.s2-action,
.s2-cta,
.s2-login-btn,
.s2-reg-btn,
.s2-invite-copy,
.s2-login-steps-cta,
.s2-reg-steps-cta,
.s2-login-app,
.s2-reg-dl,
.s2-dl-app-cta,
.s2-dl-audit-cta,
.s2-acc-go,
.s2-faq-more,
.s2-hot-all,
.s2-reg-cmp-pill {
  border-radius: 0 !important;
  clip-path: var(--s2-btn-cut);
  font-weight: 800 !important;
  letter-spacing: .03em;
  text-transform: none;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease !important;
}
.s2-action:hover,
.s2-cta:hover,
.s2-login-btn:hover,
.s2-reg-btn:hover,
.s2-invite-copy:hover,
.s2-login-steps-cta:hover,
.s2-reg-steps-cta:hover,
.s2-dl-app-cta:hover,
.s2-dl-audit-cta:hover,
.s2-acc-go:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.05);
}

.s2-action-main,
.s2-login-btn-in,
.s2-reg-btn-in,
.s2-login-steps-cta,
.s2-reg-steps-cta,
.s2-dl-audit-main,
.s2-acc-go,
.s2-faq-more {
  background: linear-gradient(135deg, #0f766e 0%, #047857 55%, #065f46 100%) !important;
  color: #ecfdf5 !important;
  border: 2px solid #fbbf24 !important;
  box-shadow: 0 6px 0 #064e3b, 0 10px 20px rgba(4, 47, 46, .25) !important;
}
.s2-action-alt,
.s2-login-btn-up,
.s2-reg-btn-up,
.s2-dl-audit-bonus,
.s2-reg-cmp-pill,
.s2-hot-all {
  background: transparent !important;
  color: #0f766e !important;
  border: 2px solid #0d9488 !important;
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, .45), 0 4px 12px rgba(4, 47, 46, .08) !important;
}
.s2-action-alt:hover,
.s2-login-btn-up:hover,
.s2-reg-btn-up:hover,
.s2-dl-audit-bonus:hover,
.s2-hot-all:hover {
  background: rgba(13, 148, 136, .12) !important;
  color: #042f2e !important;
}

a.s2-cta,
.s2-cta {
  border: 2px solid #fbbf24 !important;
  box-shadow: 0 6px 0 rgba(4, 47, 46, .45), 0 12px 22px rgba(4, 47, 46, .22) !important;
}
a.s2-cta-login,
.s2-cta-login {
  background: linear-gradient(120deg, #042f2e, #0f766e 60%, #14b8a6) !important;
  color: #ecfdf5 !important;
}
a.s2-cta-reg,
.s2-cta-reg {
  background: linear-gradient(120deg, #b45309, #f59e0b 55%, #fde68a) !important;
  color: #1c1917 !important;
  border-color: #0f766e !important;
}
.s2-cta-reg .s2-cta-ico,
.s2-cta-reg .s2-cta-arrow { color: #1c1917 !important; }

.s2-invite-copy,
.s2-dl-app-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #1c1917 !important;
  border: 2px solid #042f2e !important;
  box-shadow: 0 6px 0 #92400e, 0 12px 20px rgba(146, 64, 14, .28) !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;
}
.s2-login-app,
.s2-reg-dl {
  background: linear-gradient(90deg, #042f2e, #134e4a) !important;
  color: #ecfdf5 !important;
  border: 2px solid rgba(251, 191, 36, .65) !important;
  box-shadow: 0 4px 14px rgba(4, 47, 46, .2) !important;
}

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

/* Back to top — console square, no orb glow */
.s2-totop {
  width: 48px !important;
  height: 48px !important;
  border-radius: 4px !important;
  left: calc(
    var(--s2-shell-left, 0px) + var(--s2-shell-width, 100%) - var(--back-to-top-inset) - 48px
  ) !important;
}
.s2-totop-glow { display: none !important; }
.s2-totop-core {
  border-radius: 4px !important;
  clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  color: #fbbf24 !important;
  background:
    linear-gradient(145deg, #0f766e 0%, #042f2e 100%) !important;
  border: 2px solid #fbbf24 !important;
  box-shadow:
    0 4px 0 #022c22,
    0 8px 18px rgba(4, 47, 46, .4) !important;
}
.s2-totop:hover .s2-totop-core,
.s2-totop:focus-visible .s2-totop-core {
  color: #fff !important;
  border-color: #fde68a !important;
  box-shadow:
    0 5px 0 #022c22,
    0 10px 22px rgba(4, 47, 46, .5) !important;
  transform: translateY(-2px) !important;
}

/* Panel CTAs follow same language */
.s2-panel-cta .s2-action {
  clip-path: var(--s2-btn-cut);
  border-radius: 0 !important;
}

/* Home hero title: vertically center in the dark shell band */
body.s2-is-home .s2-main {
  padding-top: 0 !important;
}
.s2-hero-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 4.25rem;
  margin: 0 0 0.85rem !important;
  padding: 0.85rem 0.5rem !important;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3 !important;
}
