/* ============================================================
   dddph.homes - Core stylesheet
   Prefix: s1c0-
   Canvas: 320-430px mobile-first, centered on wider screens.
   Palette: #1C2833 / #495057 / #6F4E37 (dark base)
            #FFA500 / #FF8C00 (accent)  #FFCC02 (highlight text)
   ============================================================ */

:root {
  --s1c0-bg:        #1C2833;
  --s1c0-bg-2:      #24323F;
  --s1c0-bg-3:      #2C3A49;
  --s1c0-surface:   #495057;
  --s1c0-coffee:    #6F4E37;
  --s1c0-accent:    #FFA500;
  --s1c0-accent-2:  #FF8C00;
  --s1c0-gold:      #FFCC02;
  --s1c0-text:      #F5F6F8;
  --s1c0-muted:     #B8BFC7;
  --s1c0-line:      rgba(255, 204, 2, .14);
  --s1c0-radius:    14px;
  --s1c0-shadow:    0 6px 22px rgba(0, 0, 0, .38);
  --s1c0-header-h:  58px;
  --s1c0-nav-h:     64px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background: #0F1620;
  color: var(--s1c0-text);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

a { color: var(--s1c0-gold); text-decoration: none; }
a:active { color: var(--s1c0-accent-2); }

h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.3; font-weight: 700; }

.s1c0-wrap {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1C2833 0%, #1B2530 60%, #161F29 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, .4);
  padding-bottom: 0;
}

/* ============ Header ============ */
.s1c0-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--s1c0-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(90deg, #1C2833 0%, #2A3645 50%, #1C2833 100%);
  border-bottom: 1px solid var(--s1c0-line);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.s1c0-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.s1c0-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--s1c0-gold);
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}

.s1c0-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.s1c0-brand-text strong {
  font-size: 17px;
  color: var(--s1c0-gold);
  letter-spacing: .5px;
}

.s1c0-brand-text span {
  font-size: 9px;
  color: var(--s1c0-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.s1c0-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.s1c0-btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  min-height: 36px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s;
  font-family: inherit;
}
.s1c0-btn:active { transform: translateY(1px); }

.s1c0-btn-login {
  background: #fff;
  color: #1C2833;
}

.s1c0-btn-register {
  background: linear-gradient(135deg, var(--s1c0-gold) 0%, var(--s1c0-accent) 50%, var(--s1c0-accent-2) 100%);
  color: #1C2833;
  box-shadow: 0 3px 10px rgba(255, 165, 0, .35);
}

.s1c0-menu-btn {
  background: transparent;
  border: 1px solid var(--s1c0-line);
  color: var(--s1c0-gold);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ Slide-down menu ============ */
.s1c0-menu {
  position: fixed;
  top: var(--s1c0-header-h);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 59;
  background: var(--s1c0-bg-2);
  border-bottom: 1px solid var(--s1c0-line);
  box-shadow: var(--s1c0-shadow);
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.s1c0-menu.open { max-height: 480px; }

.s1c0-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--s1c0-line);
  padding: 1px;
}

.s1c0-menu-grid a {
  background: var(--s1c0-bg-2);
  color: var(--s1c0-text);
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 62px;
  justify-content: center;
  line-height: 1.2;
}

.s1c0-menu-ic {
  width: 22px;
  height: 22px;
  color: var(--s1c0-gold);
}

.s1c0-menu-grid a:active { background: var(--s1c0-bg-3); }

/* ============ Hero / Carousel ============ */
.s1c0-hero {
  position: relative;
  margin: 0 0 14px;
}

.s1c0-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.s1c0-track {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.4, .0, .2, 1);
}

.s1c0-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}

.s1c0-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
}

.s1c0-slide-cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 14px 10px;
  border-radius: 0 0 12px 12px;
}

.s1c0-slide-cap b {
  display: block;
  color: var(--s1c0-gold);
  font-size: 17px;
  margin-bottom: 4px;
}

.s1c0-slide-cap span {
  color: #fff;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

.s1c0-slide-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--s1c0-gold), var(--s1c0-accent-2));
  color: #1C2833;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 14px;
}

.s1c0-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.s1c0-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  display: inline-block;
  transition: background .2s, width .2s;
}

.s1c0-dots i.active {
  background: var(--s1c0-gold);
  width: 18px;
  border-radius: 4px;
}

/* ============ Quick promo strip ============ */
.s1c0-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 12px 12px;
}

.s1c0-strip a {
  background: linear-gradient(135deg, #2C3A49, #324154);
  border: 1px solid var(--s1c0-line);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  color: var(--s1c0-text);
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 56px;
  justify-content: center;
}

.s1c0-strip a b {
  color: var(--s1c0-gold);
  font-size: 13px;
}

/* ============ Section ============ */
.s1c0-section {
  padding: 14px 12px;
}

.s1c0-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.s1c0-section-head h2 {
  font-size: 17px;
  color: var(--s1c0-gold);
  position: relative;
  padding-left: 12px;
}

.s1c0-section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  background: linear-gradient(180deg, var(--s1c0-gold), var(--s1c0-accent-2));
  border-radius: 3px;
}

.s1c0-section-head a {
  font-size: 11px;
  color: var(--s1c0-muted);
}

.s1c0-cat-tag {
  display: inline-block;
  font-size: 9px;
  color: var(--s1c0-bg);
  background: var(--s1c0-gold);
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  vertical-align: middle;
}

/* ============ Game grid ============ */
.s1c0-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (min-width: 380px) {
  .s1c0-grid { grid-template-columns: repeat(5, 1fr); }
}

.s1c0-game {
  background: var(--s1c0-bg-2);
  border: 1px solid var(--s1c0-line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.s1c0-game:active {
  transform: translateY(2px) scale(.98);
  border-color: var(--s1c0-gold);
  box-shadow: 0 4px 12px rgba(255, 165, 0, .25);
}

.s1c0-game-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
}

.s1c0-game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s1c0-game-name {
  font-size: 10px;
  text-align: center;
  padding: 5px 3px;
  color: var(--s1c0-text);
  background: var(--s1c0-bg-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.s1c0-game-hot {
  position: absolute;
  top: 4px;
  right: 4px;
  background: linear-gradient(135deg, #FF3D3D, #FF8C00);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
  letter-spacing: .5px;
}

/* ============ Info cards ============ */
.s1c0-info-card {
  background: var(--s1c0-bg-2);
  border: 1px solid var(--s1c0-line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}

.s1c0-info-card h3 {
  color: var(--s1c0-gold);
  font-size: 14px;
  margin-bottom: 8px;
}

.s1c0-winners {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.s1c0-winners li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--s1c0-muted);
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .06);
}

.s1c0-winners li:last-child { border-bottom: 0; }
.s1c0-winners li b { color: var(--s1c0-gold); }

.s1c0-rtp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--s1c0-muted);
}

.s1c0-bar {
  height: 8px;
  background: rgba(255, 255, 255, .08);
  border-radius: 6px;
  overflow: hidden;
}

.s1c0-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--s1c0-gold), var(--s1c0-accent-2));
}

.s1c0-pay-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.s1c0-pay-row span {
  background: #202B37;
  border: 1px solid var(--s1c0-line);
  border-radius: 8px;
  padding: 8px 4px;
  font-size: 10px;
  text-align: center;
  color: var(--s1c0-muted);
}

/* ============ SEO content ============ */
.s1c0-seo {
  padding: 16px 14px;
  background: var(--s1c0-bg-2);
  border-top: 1px solid var(--s1c0-line);
  border-bottom: 1px solid var(--s1c0-line);
  margin: 12px 0;
}

.s1c0-seo h2 {
  color: var(--s1c0-gold);
  font-size: 16px;
  margin-bottom: 8px;
}

.s1c0-seo h3 {
  color: var(--s1c0-accent);
  font-size: 13px;
  margin: 12px 0 4px;
}

.s1c0-seo p {
  font-size: 13px;
  color: var(--s1c0-muted);
  margin: 0 0 8px;
}

.s1c0-seo ul {
  margin: 0 0 8px;
  padding-left: 18px;
}

.s1c0-seo li {
  font-size: 12.5px;
  color: var(--s1c0-muted);
  margin-bottom: 3px;
}

.s1c0-seo a { color: var(--s1c0-gold); }

/* ============ Extended footer ============ */
.s1c0-ext-footer {
  padding: 18px 14px 8px;
  background: linear-gradient(180deg, #1B2530 0%, #141C25 100%);
  border-top: 1px solid var(--s1c0-line);
}

.s1c0-ext-footer h3 {
  color: var(--s1c0-gold);
  font-size: 14px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--s1c0-line);
}

.s1c0-ext-footer p {
  font-size: 12px;
  color: var(--s1c0-muted);
  margin: 0 0 12px;
}

.s1c0-ef-block { margin-bottom: 14px; }

.s1c0-ef-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.s1c0-ef-list a {
  background: #202B37;
  border: 1px solid var(--s1c0-line);
  color: var(--s1c0-text);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 14px;
}

.s1c0-ef-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.s1c0-ef-promos button {
  background: linear-gradient(135deg, var(--s1c0-gold), var(--s1c0-accent-2));
  border: 0;
  color: #1C2833;
  font-weight: 700;
  padding: 9px 6px;
  border-radius: 10px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}

.s1c0-disclaimer {
  font-size: 10.5px;
  color: #7b8794;
  line-height: 1.5;
  border-top: 1px dashed rgba(255, 255, 255, .08);
  padding-top: 10px;
  margin-top: 6px;
}

/* ============ Footer ============ */
.s1c0-footer {
  background: #111821;
  color: var(--s1c0-muted);
  text-align: center;
  padding: 14px 12px calc(var(--s1c0-nav-h) + 18px);
  font-size: 11px;
}

.s1c0-footer b { color: var(--s1c0-gold); }

/* ============ Bottom Nav ============ */
.s1c0-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 70;
  height: var(--s1c0-nav-h);
  background: linear-gradient(180deg, #24323F 0%, #1B2530 100%);
  border-top: 1px solid var(--s1c0-line);
  box-shadow: 0 -4px 14px rgba(0, 0, 0, .45);
  display: flex;
  align-items: stretch;
}

.s1c0-nav-btn {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--s1c0-muted);
  font-size: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  padding: 6px 2px;
  position: relative;
  font-family: inherit;
  transition: color .2s;
}

.s1c0-nav-btn svg {
  width: 22px;
  height: 22px;
  transition: transform .2s;
}

.s1c0-nav-btn.active { color: var(--s1c0-gold); }

.s1c0-nav-btn.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--s1c0-gold);
}

.s1c0-nav-btn.active svg { transform: translateY(-2px); }
.s1c0-nav-btn:active svg { transform: scale(.86); }

.s1c0-nav-promo-center {
  flex: 1.15;
  background: transparent;
  border: 0;
  color: var(--s1c0-gold);
  font-size: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  cursor: pointer;
  padding: 6px 2px 4px;
  position: relative;
  font-family: inherit;
}

.s1c0-nav-promo-center .s1c0-pm {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--s1c0-gold), var(--s1c0-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -22px;
  box-shadow: 0 4px 14px rgba(255, 140, 0, .5);
  border: 3px solid #1B2530;
}

.s1c0-nav-promo-center .s1c0-pm svg { width: 22px; height: 22px; color: #1C2833; }

.s1c0-hidden { display: none !important; }

/* ============ Part 1 guide and feature layouts ============ */
.s1c0-guide-hero, .s1c0-feature-intro { padding: 22px 14px 18px; background: radial-gradient(circle at 90% 0%, rgba(255,165,0,.2), transparent 48%), linear-gradient(145deg,#263849,#19232e); border-bottom: 1px solid var(--s1c0-line); }
.s1c0-guide-hero h1, .s1c0-feature-intro h1 { font-size: 24px; color: var(--s1c0-gold); margin-bottom: 10px; }
.s1c0-guide-hero p, .s1c0-feature-intro p { color: var(--s1c0-muted); font-size: 13px; margin: 0 0 12px; }
.s1c0-kicker, .s1c0-panel-label { color: var(--s1c0-accent); text-transform: uppercase; letter-spacing: 1.4px; font-size: 10px; font-weight: 800; }
.s1c0-guide-actions { display: flex; gap: 8px; margin-top: 14px; }
.s1c0-guide-actions a { display: inline-flex; align-items: center; }
.s1c0-step-map { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: 12px; background: var(--s1c0-line); border: 1px solid var(--s1c0-line); border-radius: 10px; overflow: hidden; }
.s1c0-step-map div { min-width: 0; padding: 9px 4px; text-align: center; background: var(--s1c0-bg-2); }
.s1c0-step-map b { display: block; color: var(--s1c0-gold); font-size: 12px; }.s1c0-step-map span { display: block; color: var(--s1c0-text); font-weight: 700; font-size: 10px; }.s1c0-step-map small { display: block; color: var(--s1c0-muted); font-size: 8px; line-height: 1.2; }
.s1c0-content-card, .s1c0-feature-panel, .s1c0-review-box { margin: 12px; padding: 15px 13px; background: linear-gradient(145deg,#243341,#1e2b38); border: 1px solid var(--s1c0-line); border-radius: 13px; box-shadow: 0 4px 14px rgba(0,0,0,.16); }
.s1c0-content-card h2, .s1c0-feature-panel h2, .s1c0-review-box h2 { color: var(--s1c0-gold); font-size: 18px; margin: 5px 0 9px; }.s1c0-content-card h3, .s1c0-feature-panel h3 { color: var(--s1c0-accent); font-size: 14px; margin: 0 0 4px; }.s1c0-content-card p, .s1c0-feature-panel p, .s1c0-review-box p { color: var(--s1c0-muted); font-size: 13px; margin: 0 0 10px; }.s1c0-content-card a, .s1c0-feature-panel a, .s1c0-review-box a { color: var(--s1c0-gold); text-decoration: underline; text-decoration-color: rgba(255,204,2,.4); }
.s1c0-numbered { counter-reset: s1c0step; margin: 8px 0 12px; padding: 0; list-style: none; }.s1c0-numbered li { counter-increment: s1c0step; position: relative; padding: 8px 8px 8px 34px; color: var(--s1c0-muted); font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.06); }.s1c0-numbered li::before { content: counter(s1c0step); position: absolute; left: 0; top: 7px; width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; background: var(--s1c0-gold); color: #1c2833; font-weight: 800; font-size: 11px; }
.s1c0-callout { margin: 12px; padding: 14px; border-left: 4px solid var(--s1c0-accent); background: #382f28; border-radius: 8px; }.s1c0-callout strong { color: var(--s1c0-gold); }.s1c0-callout p { color: var(--s1c0-muted); font-size: 13px; margin: 4px 0 0; }
.s1c0-choice-grid, .s1c0-safety-grid, .s1c0-route-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin: 10px 0 12px; }.s1c0-choice-grid article, .s1c0-safety-grid article, .s1c0-route-cards article { padding: 10px; background: #1a2631; border: 1px solid rgba(255,204,2,.1); border-radius: 9px; }.s1c0-choice-grid p, .s1c0-safety-grid p, .s1c0-route-cards p { font-size: 11px; margin: 0; }.s1c0-route-cards b { display: block; color: var(--s1c0-gold); font-size: 10px; margin-top: 7px; }
.s1c0-check-list, .s1c0-help-table { margin-top: 10px; }.s1c0-check-list div, .s1c0-help-table div { display: grid; grid-template-columns: 34% 1fr; gap: 8px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.07); }.s1c0-check-list b, .s1c0-help-table b { color: var(--s1c0-text); font-size: 12px; }.s1c0-check-list span, .s1c0-help-table span { color: var(--s1c0-muted); font-size: 12px; }
.s1c0-tips, .s1c0-review-box ul { margin: 7px 0 0; padding-left: 19px; color: var(--s1c0-muted); font-size: 12.5px; }.s1c0-tips li, .s1c0-review-box li { margin: 5px 0; }
.s1c0-faq-stack { margin: 12px; padding: 14px 13px; background: #17222d; border-radius: 13px; border: 1px solid var(--s1c0-line); }.s1c0-faq-stack h2 { color: var(--s1c0-gold); font-size: 18px; }.s1c0-faq-stack details { border-top: 1px solid rgba(255,255,255,.1); padding: 10px 0; }.s1c0-faq-stack summary { color: var(--s1c0-text); font-size: 13px; font-weight: 700; cursor: pointer; }.s1c0-faq-stack p { color: var(--s1c0-muted); font-size: 12px; margin: 7px 0 0; }
.s1c0-promo-band { margin: 12px; padding: 16px 13px; background: linear-gradient(135deg,#5b4024,#2e2e2c); border: 1px solid rgba(255,204,2,.32); border-radius: 14px; }.s1c0-promo-band h2 { color: var(--s1c0-gold); font-size: 19px; }.s1c0-promo-band p { color: #e0d9cc; font-size: 13px; }.s1c0-promo-band a { color: #fff0a7; text-decoration: underline; }.s1c0-promo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; }.s1c0-promo-grid button { border: 0; border-radius: 9px; padding: 10px 5px; color: #1c2833; background: linear-gradient(135deg,var(--s1c0-gold),var(--s1c0-accent)); font-weight: 800; font-size: 11px; cursor: pointer; font-family: inherit; }
.s1c0-feature-stat { display: flex; gap: 7px; }.s1c0-feature-stat span { flex: 1; padding: 8px 4px; text-align: center; color: var(--s1c0-muted); background: rgba(0,0,0,.2); border-radius: 8px; font-size: 9px; }.s1c0-feature-stat b { display: block; color: var(--s1c0-gold); font-size: 16px; }.s1c0-feature-nav { position: sticky; top: var(--s1c0-header-h); z-index: 30; display: flex; overflow-x: auto; gap: 7px; padding: 9px 12px; background: #17222d; border-bottom: 1px solid var(--s1c0-line); }.s1c0-feature-nav a { flex: 0 0 auto; padding: 6px 9px; border: 1px solid var(--s1c0-line); border-radius: 15px; font-size: 10px; color: var(--s1c0-text); }.s1c0-feature-list article { display: flex; gap: 9px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.08); }.s1c0-feature-icon { flex: 0 0 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; color: #1c2833; background: var(--s1c0-gold); font-weight: 900; }.s1c0-feature-list p { margin: 0; font-size: 12px; }.s1c0-compare { border: 1px solid rgba(255,204,2,.13); border-radius: 9px; overflow: hidden; margin: 10px 0; }.s1c0-compare > div { display: grid; grid-template-columns: 24% 38% 38%; gap: 4px; padding: 8px 6px; border-top: 1px solid rgba(255,255,255,.07); color: var(--s1c0-muted); font-size: 10px; }.s1c0-compare .s1c0-compare-head { border-top: 0; color: var(--s1c0-gold); font-weight: 800; background: #17222d; }.s1c0-compare b { color: var(--s1c0-text); }.s1c0-reward-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 10px 0; }.s1c0-reward-steps div { text-align: center; padding: 8px 4px; background: #1a2631; border-radius: 8px; }.s1c0-reward-steps b { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--s1c0-gold); color: #1c2833; }.s1c0-reward-steps h3 { font-size: 12px; margin: 3px 0; }.s1c0-reward-steps p { font-size: 10px; margin: 0; }.s1c0-note { padding-top: 9px; border-top: 1px dashed rgba(255,255,255,.12); font-size: 11px !important; }
@media (max-width: 350px) { .s1c0-header-actions { gap: 3px; }.s1c0-btn { padding-left: 9px; padding-right: 9px; }.s1c0-guide-hero h1, .s1c0-feature-intro h1 { font-size: 21px; }.s1c0-step-map small { display: none; }.s1c0-choice-grid, .s1c0-safety-grid, .s1c0-route-cards { grid-template-columns: 1fr; }.s1c0-compare > div { font-size: 9px; } }

