/*!
 * jl333.cyou - visual stylesheet
 * Class prefix:  v2c9-
 * Design tokens derived from the site palette:
 *   dark scene   #2E4057 / deep purple cast from #9966CC
 *   accent light #90EE90 (mint), #D8BFD8 (thistle), #9966CC (purple), #CD5C5C (indian red)
 * Navigation direction (this site):
 *   top    = minimal mark + title + action bar
 *   menu   = swipe-up route panel
 *   bottom = compact icon rack with top indicator line + slide micro-interaction
 *   icons  = filling cameo, inactive restrained, active lit
 */

:root {
  --v2c9-scene:        #2E4057;
  --v2c9-scene-deep:   #23334a;
  --v2c9-scene-soft:   #34496a;
  --v2c9-purple:       #9966CC;
  --v2c9-purple-soft:  #b589e0;
  --v2c9-mint:         #90EE90;
  --v2c9-mint-soft:    #b8f5b8;
  --v2c9-thistle:      #D8BFD8;
  --v2c9-red:          #CD5C5C;
  --v2c9-red-soft:     #e08686;
  --v2c9-ink:          #f4f1fb;
  --v2c9-ink-soft:     #cdc4e2;
  --v2c9-ink-dim:      #9d92bb;
  --v2c9-line:         rgba(216, 191, 216, 0.18);
  --v2c9-line-strong:  rgba(216, 191, 216, 0.35);
  --v2c9-radius:       14px;
  --v2c9-radius-lg:    20px;
  --v2c9-radius-sm:    10px;
  --v2c9-shadow:       0 10px 24px rgba(0, 0, 0, 0.32);
  --v2c9-shadow-sm:    0 4px 10px rgba(0, 0, 0, 0.22);
  --v2c9-header-h:     56px;
  --v2c9-bottomnav-h:  62px;
  --v2c9-max:          430px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--v2c9-scene-deep);
  color: var(--v2c9-ink);
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(153, 102, 204, 0.35) 0%, rgba(153, 102, 204, 0) 60%),
    radial-gradient(100% 40% at 100% 0%, rgba(144, 238, 144, 0.10) 0%, rgba(144, 238, 144, 0) 55%),
    linear-gradient(180deg, #2a3b56 0%, #23334a 60%, #1d2a3d 100%);
  background-attachment: fixed;
}

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

a { color: var(--v2c9-mint); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--v2c9-ink);
  margin: 0 0 0.5em;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.2px;
}
h1 { font-size: 1.55rem; }
h2 { font-size: 1.2rem; }
h3 { font-size: 1.02rem; color: var(--v2c9-thistle); }
p { margin: 0 0 0.9em; color: var(--v2c9-ink-soft); }

/* Center the mobile canvas on wider screens (no desktop layout). */
.v2c9-shell {
  width: 100%;
  max-width: var(--v2c9-max);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(180deg, rgba(46, 64, 87, 0.96) 0%, rgba(35, 51, 74, 0.98) 40%, rgba(29, 42, 61, 1) 100%);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

/* ============================================================= TOP BAR */
.v2c9-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--v2c9-header-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(35, 51, 74, 0.96) 0%, rgba(35, 51, 74, 0.88) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v2c9-line);
}

.v2c9-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.v2c9-brand .v2c9-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--v2c9-line-strong), 0 4px 10px rgba(0, 0, 0, 0.32);
  background: radial-gradient(circle at 30% 30%, var(--v2c9-purple-soft), var(--v2c9-purple));
  flex-shrink: 0;
}
.v2c9-brand-text { display: flex; flex-direction: column; min-width: 0; }
.v2c9-brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--v2c9-ink);
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.v2c9-brand-name b { color: var(--v2c9-mint); }
.v2c9-brand-tag {
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--v2c9-thistle);
  opacity: 0.78;
}

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

.v2c9-btn {
  font: inherit;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.v2c9-btn:active { transform: scale(0.96); }
.v2c9-btn--login {
  background: transparent;
  color: var(--v2c9-ink);
  border: 1px solid var(--v2c9-line-strong);
  padding: 8px 14px;
}
.v2c9-btn--login:hover { background: rgba(216, 191, 216, 0.10); text-decoration: none; }
.v2c9-btn--register {
  background: linear-gradient(135deg, var(--v2c9-mint) 0%, #67d567 100%);
  color: #18391c;
  box-shadow: 0 4px 14px rgba(144, 238, 144, 0.28);
}

.v2c9-menu-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--v2c9-line-strong);
  background: rgba(216, 191, 216, 0.08);
  color: var(--v2c9-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.v2c9-menu-btn svg { width: 18px; height: 18px; }

/* ============================================================= ROUTE PANEL */
.v2c9-route-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 33, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 50;
}
.v2c9-route-backdrop--show { opacity: 1; pointer-events: auto; }

.v2c9-route-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: var(--v2c9-max);
  margin: 0 auto;
  background: linear-gradient(180deg, #2c3f59 0%, #213049 100%);
  border-top: 1px solid var(--v2c9-line-strong);
  border-radius: 22px 22px 0 0;
  padding: 8px 16px calc(20px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 60;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  max-height: 78vh;
  overflow-y: auto;
}
.v2c9-route-panel--open { transform: translateY(0); }
.v2c9-route-grip {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: var(--v2c9-line-strong);
  margin: 6px auto 12px;
}
.v2c9-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.v2c9-route-head h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--v2c9-thistle);
}
.v2c9-route-close {
  border: none;
  background: rgba(216, 191, 216, 0.10);
  color: var(--v2c9-ink);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.v2c9-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.v2c9-route-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: var(--v2c9-radius-sm);
  background: rgba(216, 191, 216, 0.06);
  border: 1px solid var(--v2c9-line);
  color: var(--v2c9-ink);
  font-size: 0.74rem;
  text-align: center;
  min-height: 64px;
  justify-content: center;
  transition: background 0.18s ease, transform 0.12s ease, border-color 0.18s ease;
}
.v2c9-route-card:hover {
  text-decoration: none;
  background: rgba(144, 238, 144, 0.10);
  border-color: rgba(144, 238, 144, 0.45);
}
.v2c9-route-card:active { transform: scale(0.96); }
.v2c9-route-card .v2c9-route-ico {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v2c9-mint);
}
.v2c9-route-card .v2c9-route-ico svg { width: 22px; height: 22px; }
.v2c9-route-card--promo { background: rgba(153, 102, 204, 0.14); border-color: rgba(153, 102, 204, 0.40); }
.v2c9-route-card--promo .v2c9-route-ico { color: var(--v2c9-purple-soft); }

/* ============================================================= HERO */
.v2c9-main { padding: 14px 12px calc(var(--v2c9-bottomnav-h) + 28px); }

.v2c9-hero {
  position: relative;
  border-radius: var(--v2c9-radius-lg);
  overflow: hidden;
  box-shadow: var(--v2c9-shadow);
  border: 1px solid var(--v2c9-line);
  margin-bottom: 18px;
}
.v2c9-hero-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.v2c9-hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  cursor: pointer;
}
.v2c9-hero-slide img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
}
.v2c9-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(0deg, rgba(15, 22, 33, 0.92) 0%, rgba(15, 22, 33, 0.0) 100%);
  color: var(--v2c9-ink);
}
.v2c9-hero-caption span {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--v2c9-mint);
  margin-bottom: 4px;
}
.v2c9-hero-caption strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.25;
  font-weight: 800;
}
.v2c9-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.v2c9-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(244, 241, 251, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.v2c9-hero-dot--active {
  width: 18px;
  background: var(--v2c9-mint);
}
.v2c9-hero-prev,
.v2c9-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(15, 22, 33, 0.55);
  color: var(--v2c9-ink);
  border: 1px solid var(--v2c9-line);
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.v2c9-hero-prev { left: 8px; }
.v2c9-hero-next { right: 8px; }

/* ============================================================= SECTIONS */
.v2c9-section { margin: 22px 0; }
.v2c9-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
  gap: 10px;
}
.v2c9-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--v2c9-ink);
  margin: 0;
  position: relative;
  padding-left: 12px;
}
.v2c9-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--v2c9-mint), var(--v2c9-purple));
  border-radius: 4px;
}
.v2c9-section-more {
  font-size: 0.78rem;
  color: var(--v2c9-mint);
}
.v2c9-section-more:hover { text-decoration: underline; }

/* ============================================================= GAME GRID */
.v2c9-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .v2c9-grid { gap: 9px; }
}
@media (min-width: 392px) {
  .v2c9-grid { grid-template-columns: repeat(5, 1fr); gap: 9px; }
}

.v2c9-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(216, 191, 216, 0.05);
  border: 1px solid var(--v2c9-line);
  border-radius: var(--v2c9-radius-sm);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  padding: 0;
  color: var(--v2c9-ink);
  transition: transform 0.12s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.v2c9-tile:hover {
  text-decoration: none;
  border-color: rgba(144, 238, 144, 0.45);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}
.v2c9-tile:active { transform: scale(0.96); }
.v2c9-tile-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #2a3b56, #1d2a3d);
}
.v2c9-tile-name {
  font-size: 0.66rem;
  line-height: 1.2;
  color: var(--v2c9-ink-soft);
  padding: 5px 4px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================= CARDS / MODULES */
.v2c9-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v2c9-card {
  background: linear-gradient(160deg, rgba(153, 102, 204, 0.12) 0%, rgba(46, 64, 87, 0.5) 100%);
  border: 1px solid var(--v2c9-line);
  border-radius: var(--v2c9-radius);
  padding: 14px 12px;
  color: var(--v2c9-ink);
}
.v2c9-card:hover { text-decoration: none; border-color: rgba(144, 238, 144, 0.4); }
.v2c9-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--v2c9-mint) 0%, #67d567 100%);
  color: #18391c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-weight: 800;
}
.v2c9-card h3 { margin: 0 0 4px; color: var(--v2c9-ink); font-size: 0.95rem; }
.v2c9-card p { margin: 0; font-size: 0.78rem; color: var(--v2c9-ink-soft); line-height: 1.4; }

/* Compact horizontal scroll row */
.v2c9-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.v2c9-scroll::-webkit-scrollbar { display: none; }
.v2c9-scroll-item {
  scroll-snap-align: start;
  background: rgba(216, 191, 216, 0.06);
  border: 1px solid var(--v2c9-line);
  border-radius: var(--v2c9-radius);
  padding: 12px;
  color: var(--v2c9-ink);
}
.v2c9-scroll-item:hover { text-decoration: none; border-color: rgba(144, 238, 144, 0.4); }
.v2c9-scroll-item strong { display: block; color: var(--v2c9-mint); font-size: 0.84rem; margin-bottom: 4px; }
.v2c9-scroll-item span { color: var(--v2c9-ink-soft); font-size: 0.76rem; }

/* ============================================================= SEO TEXT BLOCKS */
.v2c9-prose {
  background: rgba(216, 191, 216, 0.05);
  border: 1px solid var(--v2c9-line);
  border-radius: var(--v2c9-radius);
  padding: 16px 14px;
  margin: 18px 0;
}
.v2c9-prose h2 { margin-top: 0; }
.v2c9-prose h2 + p, .v2c9-prose p { color: var(--v2c9-ink-soft); font-size: 0.88rem; }
.v2c9-prose ul { margin: 0 0 0.8em; padding-left: 1.1em; color: var(--v2c9-ink-soft); }
.v2c9-prose li { margin: 0 0 6px; font-size: 0.86rem; line-height: 1.5; }
.v2c9-prose a { color: var(--v2c9-mint); }

.v2c9-prose a.v2c9-inline-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--v2c9-purple) 0%, var(--v2c9-purple-soft) 100%);
  color: var(--v2c9-ink);
  font-weight: 700;
  font-size: 0.82rem;
  border: 1px solid rgba(216, 191, 216, 0.3);
}
.v2c9-prose a.v2c9-inline-cta:hover { text-decoration: none; filter: brightness(1.08); }

/* ============================================================= EXTENDED FOOTER */
.v2c9-ext-footer {
  margin-top: 26px;
  padding: 18px 12px 8px;
  border-top: 1px solid var(--v2c9-line);
  background: rgba(15, 22, 33, 0.45);
}
.v2c9-ext-group { margin-bottom: 18px; }
.v2c9-ext-group h4 {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--v2c9-thistle);
}
.v2c9-ext-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}
.v2c9-ext-list li a {
  display: block;
  font-size: 0.8rem;
  color: var(--v2c9-ink-soft);
  padding: 4px 0;
}
.v2c9-ext-list li a:hover { color: var(--v2c9-mint); text-decoration: none; }

.v2c9-promo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 8px 0 4px;
}
.v2c9-promo-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--v2c9-line);
  background: linear-gradient(135deg, rgba(144, 238, 144, 0.10), rgba(153, 102, 204, 0.10));
  color: var(--v2c9-ink);
  font-size: 0.74rem;
  cursor: pointer;
}
.v2c9-promo-chip:hover { text-decoration: none; border-color: rgba(144, 238, 144, 0.45); }
.v2c9-promo-chip strong { color: var(--v2c9-mint); font-size: 0.82rem; }

.v2c9-brand-blurb {
  font-size: 0.78rem;
  color: var(--v2c9-ink-dim);
  line-height: 1.55;
  margin: 8px 0 0;
}

.v2c9-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px dashed var(--v2c9-line-strong);
  border-radius: 10px;
  font-size: 0.72rem;
  color: var(--v2c9-ink-dim);
  line-height: 1.5;
}

/* ============================================================= COPYRIGHT FOOTER */
.v2c9-foot {
  padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 0.72rem;
  color: var(--v2c9-ink-dim);
  border-top: 1px solid var(--v2c9-line);
}

/* ============================================================= BOTTOM NAV */
.v2c9-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: var(--v2c9-max);
  margin: 0 auto;
  height: var(--v2c9-bottomnav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background: linear-gradient(0deg, rgba(20, 30, 44, 0.98) 0%, rgba(28, 41, 60, 0.92) 100%);
  border-top: 1px solid var(--v2c9-line-strong);
  z-index: 45;
  padding-bottom: env(safe-area-inset-bottom);
}
.v2c9-nav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--v2c9-mint), var(--v2c9-purple-soft));
  transform: translateX(0);
  transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.v2c9-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 100%;
  color: var(--v2c9-ink-dim);
  font-size: 0.6rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 2px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, transform 0.12s ease;
}
.v2c9-nav-item:active { transform: scale(0.92); }
.v2c9-nav-item:hover { text-decoration: none; }
.v2c9-nav-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease, fill 0.2s ease;
}
.v2c9-nav-item--active { color: var(--v2c9-mint); }
.v2c9-nav-item--active svg {
  stroke: var(--v2c9-mint);
  fill: rgba(144, 238, 144, 0.14);
}
.v2c9-nav-item--promo { color: var(--v2c9-purple-soft); }
.v2c9-nav-item--promo svg { stroke: var(--v2c9-purple-soft); }
.v2c9-nav-item--promo.v2c9-nav-item--active svg {
  stroke: var(--v2c9-mint);
  fill: rgba(144, 238, 144, 0.16);
}
.v2c9-nav-label { font-size: 0.58rem; line-height: 1; }

/* ============================================================= UTILITIES */
.v2c9-hide { display: none !important; }

.v2c9-cta-row {
  display: flex;
  gap: 8px;
  margin: 14px 0 4px;
}
.v2c9-cta-row .v2c9-btn { flex: 1; }

.v2c9-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.64rem;
  letter-spacing: 0.8px;
  background: rgba(144, 238, 144, 0.16);
  color: var(--v2c9-mint);
  border: 1px solid rgba(144, 238, 144, 0.35);
  margin-right: 4px;
}

.v2c9-winners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.v2c9-winner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(216, 191, 216, 0.06);
  border: 1px solid var(--v2c9-line);
}
.v2c9-winner b { color: var(--v2c9-mint); font-size: 0.84rem; }
.v2c9-winner span { display: block; color: var(--v2c9-ink-soft); font-size: 0.72rem; }
.v2c9-winner small { color: var(--v2c9-ink-dim); font-size: 0.66rem; }

.v2c9-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0;
}
.v2c9-trust {
  text-align: center;
  padding: 10px 6px;
  border-radius: 10px;
  background: rgba(216, 191, 216, 0.05);
  border: 1px solid var(--v2c9-line);
}
.v2c9-trust b { display: block; color: var(--v2c9-mint); font-size: 0.92rem; }
.v2c9-trust span { color: var(--v2c9-ink-soft); font-size: 0.68rem; }
