/* ==========================================================
   jilicrown-apk.cfd - Core Base Stylesheet
   Prefix: v513-
   Palette: #DEB887 (burlywood) | #3A3A3A (dark) | #BDB76B (khaki)
            #F8F9FA (light) + supporting tones
   Mobile-first 320-430px canvas
   ========================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #2b2b2b;
  background: #F8F9FA;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Theme tokens ---------- */
:root {
  --v513-burlywood: #DEB887;
  --v513-dark: #3A3A3A;
  --v513-khaki: #BDB76B;
  --v513-light: #F8F9FA;
  --v513-gold: #c79a52;
  --v513-ink: #222018;
  --v513-muted: #6b6657;
  --v513-line: #e7e3d6;
  --v513-shadow: 0 6px 18px rgba(58, 58, 58, .12);
  --v513-shadow-lg: 0 12px 32px rgba(58, 58, 58, .18);
  --v513-radius: 14px;
  --v513-radius-sm: 10px;
  --v513-header-h: 56px;
  --v513-nav-h: 64px;
}

/* ---------- Header ---------- */
.v513-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--v513-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: linear-gradient(135deg, #3A3A3A 0%, #4a4036 100%);
  color: #fff;
  border-bottom: 2px solid var(--v513-burlywood);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.v513-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.v513-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid var(--v513-burlywood);
  flex-shrink: 0;
}
.v513-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.v513-brand-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v513-brand-sub {
  font-size: 10px;
  color: var(--v513-burlywood);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.v513-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.v513-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
  min-height: 34px;
  white-space: nowrap;
}
.v513-btn:active { transform: scale(.96); }
.v513-btn-login {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(222,184,135,.6);
}
.v513-btn-register {
  background: linear-gradient(135deg, #DEB887 0%, #BDB76B 100%);
  color: #2b2b2b;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(222,184,135,.35);
}
.v513-menu-toggle {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  margin-left: 2px;
}

/* ---------- Drawer menu ---------- */
.v513-drawer-mask {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
  z-index: 200;
}
.v513-drawer-mask.v513-open { opacity: 1; visibility: visible; }
.v513-drawer {
  position: fixed;
  top: 0; right: -78%;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 210;
  transition: right .28s ease;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,.18);
}
.v513-drawer.v513-open { right: 0; }
.v513-drawer-head {
  padding: 18px 16px;
  background: linear-gradient(135deg, #3A3A3A 0%, #4a4036 100%);
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 2px solid var(--v513-burlywood);
}
.v513-drawer-head img { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--v513-burlywood); }
.v513-drawer-head h3 { font-size: 15px; font-weight: 700; }
.v513-drawer-head span { font-size: 11px; color: var(--v513-burlywood); }
.v513-drawer-nav {
  padding: 8px 0;
  overflow-y: auto;
  flex: 1;
}
.v513-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 14px;
  color: #2b2b2b;
  border-bottom: 1px solid var(--v513-line);
  transition: background .15s;
}
.v513-drawer-nav a:active { background: #faf7ef; }
.v513-drawer-nav a::before {
  content: "▸";
  color: var(--v513-gold);
  font-size: 14px;
}
.v513-drawer-foot {
  padding: 14px 16px;
  border-top: 1px solid var(--v513-line);
  background: #faf7ef;
}
.v513-drawer-foot .v513-btn { width: 100%; margin-bottom: 8px; }
.v513-drawer-foot .v513-btn:last-child { margin-bottom: 0; }

/* ---------- Hero / Carousel ---------- */
.v513-hero {
  position: relative;
  margin: 12px;
  border-radius: var(--v513-radius);
  overflow: hidden;
  background: linear-gradient(135deg, #3A3A3A 0%, #5a4d3e 60%, #BDB76B 140%);
  color: #fff;
  box-shadow: var(--v513-shadow);
}
.v513-slides { display: flex; transition: transform .5s ease; }
.v513-slide {
  min-width: 100%;
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.v513-slide-tag {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  background: rgba(222,184,135,.92);
  color: #2b2b2b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .5px;
}
.v513-slide h1, .v513-slide h2 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.v513-slide p {
  font-size: 13px;
  color: rgba(255,255,255,.92);
  max-width: 90%;
}
.v513-slide .v513-btn {
  align-self: flex-start;
  margin-top: 6px;
  padding: 10px 22px;
  font-size: 14px;
}
.v513-dots {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
}
.v513-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .2s, width .2s;
}
.v513-dots span.v513-active {
  background: var(--v513-burlywood);
  width: 18px; border-radius: 4px;
}

/* ---------- Marquee ---------- */
.v513-marquee {
  margin: 0 12px 8px;
  background: #fff;
  border: 1px solid var(--v513-line);
  border-left: 3px solid var(--v513-gold);
  border-radius: var(--v513-radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--v513-muted);
  overflow: hidden;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.v513-marquee b { color: var(--v513-dark); }
.v513-marquee-track {
  display: inline-block;
  animation: v513scroll 24s linear infinite;
}
@keyframes v513scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-60%); }
}

/* ---------- Section / Headings ---------- */
.v513-section {
  margin: 18px 0 0;
  padding: 0 12px;
}
.v513-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.v513-section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--v513-ink);
  position: relative;
  padding-left: 12px;
}
.v513-section-title::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 18px;
  background: linear-gradient(180deg, #DEB887 0%, #BDB76B 100%);
  border-radius: 2px;
}
.v513-section-more {
  font-size: 12px;
  color: var(--v513-gold);
  font-weight: 600;
}

/* ---------- Quick category chips ---------- */
.v513-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
.v513-cat {
  background: #fff;
  border: 1px solid var(--v513-line);
  border-radius: var(--v513-radius-sm);
  padding: 12px 4px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--v513-dark);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.v513-cat:active { transform: scale(.95); }
.v513-cat.v513-active {
  border-color: var(--v513-gold);
  background: linear-gradient(135deg, #fff7e8 0%, #fff 100%);
  box-shadow: 0 4px 12px rgba(222,184,135,.25);
}
.v513-cat-icon {
  width: 38px; height: 38px;
  margin: 0 auto 6px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, #DEB887 0%, #BDB76B 100%);
  color: #fff;
}

/* ---------- Game grid ---------- */
.v513-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.v513-card {
  background: #fff;
  border-radius: var(--v513-radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(58,58,58,.07);
  border: 1px solid var(--v513-line);
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.v513-card:active { transform: scale(.97); }
.v513-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f3eedd 0%, #faf7ef 100%);
  overflow: hidden;
}
.v513-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.v513-card-badge {
  position: absolute;
  top: 4px; left: 4px;
  background: rgba(222,184,135,.95);
  color: #2b2b2b;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.v513-card-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(58,58,58,.45);
  opacity: 0;
  transition: opacity .2s;
}
.v513-card:hover .v513-card-play,
.v513-card:active .v513-card-play { opacity: 1; }
.v513-card-play span {
  background: var(--v513-burlywood);
  color: #2b2b2b;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.v513-card-name {
  padding: 6px 6px 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  color: var(--v513-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Jackpot strip ---------- */
.v513-jackpot {
  margin: 18px 12px 0;
  padding: 14px 16px;
  border-radius: var(--v513-radius);
  background: linear-gradient(135deg, #3A3A3A 0%, #5a4d3e 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--v513-shadow);
}
.v513-jackpot::after {
  content: "";
  position: absolute;
  right: -20px; top: -20px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(222,184,135,.35) 0%, transparent 70%);
  border-radius: 50%;
}
.v513-jackpot-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--v513-burlywood);
  text-transform: uppercase;
  font-weight: 700;
}
.v513-jackpot-amount {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 4px 0 8px;
  font-family: "Courier New", monospace;
  background: linear-gradient(180deg, #fff 0%, #DEB887 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v513-jackpot .v513-btn { display: inline-flex; }

/* ---------- Promo banners ---------- */
.v513-promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.v513-promo-card {
  border-radius: var(--v513-radius-sm);
  padding: 12px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 84px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.v513-promo-card h4 { font-size: 14px; font-weight: 800; }
.v513-promo-card span { font-size: 11px; opacity: .9; }
.v513-promo-card strong {
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.2);
  padding: 3px 8px; border-radius: 999px;
  align-self: flex-start;
}
.v513-promo-a { background: linear-gradient(135deg, #BDB76B 0%, #8a8542 100%); }
.v513-promo-b { background: linear-gradient(135deg, #c79a52 0%, #8a6a32 100%); }
.v513-promo-c { background: linear-gradient(135deg, #6b6657 0%, #3A3A3A 100%); }
.v513-promo-d { background: linear-gradient(135deg, #DEB887 0%, #a17b4a 100%); }

/* ---------- Feature / Steps ---------- */
.v513-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.v513-step {
  background: #fff;
  border: 1px solid var(--v513-line);
  border-radius: var(--v513-radius-sm);
  padding: 12px 6px;
  text-align: center;
}
.v513-step-num {
  width: 28px; height: 28px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: var(--v513-dark);
  color: var(--v513-burlywood);
  font-weight: 800;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.v513-step h5 { font-size: 12px; font-weight: 700; color: var(--v513-ink); margin-bottom: 2px; }
.v513-step p { font-size: 10.5px; color: var(--v513-muted); line-height: 1.35; }

/* ---------- Article / SEO content ---------- */
.v513-article {
  background: #fff;
  border: 1px solid var(--v513-line);
  border-radius: var(--v513-radius);
  padding: 16px;
  margin-top: 6px;
}
.v513-article h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--v513-ink);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--v513-line);
}
.v513-article h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--v513-dark);
  margin: 12px 0 6px;
}
.v513-article p {
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.65;
}
.v513-article p a {
  color: var(--v513-gold);
  font-weight: 600;
  border-bottom: 1px dotted var(--v513-gold);
}
.v513-article ul { padding-left: 18px; margin-bottom: 10px; list-style: disc; }
.v513-article ul li { font-size: 13px; color: #444; margin-bottom: 4px; line-height: 1.6; }
.v513-article ul li a { color: var(--v513-gold); font-weight: 600; }
.v513-callout {
  background: linear-gradient(135deg, #fff7e8 0%, #faf7ef 100%);
  border-left: 3px solid var(--v513-gold);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--v513-dark);
  margin: 10px 0;
}

/* ---------- FAQ ---------- */
.v513-faq-item {
  border-bottom: 1px solid var(--v513-line);
  padding: 10px 0;
}
.v513-faq-item:last-child { border-bottom: none; }
.v513-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; font-weight: 700; color: var(--v513-ink);
  width: 100%; text-align: left;
  padding: 4px 0;
}
.v513-faq-q::after {
  content: "+";
  font-size: 18px;
  color: var(--v513-gold);
  transition: transform .2s;
  margin-left: 8px;
}
.v513-faq-item.v513-open .v513-faq-q::after { transform: rotate(45deg); }
.v513-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease, padding .25s;
  font-size: 12.5px;
  color: #555;
  line-height: 1.6;
}
.v513-faq-item.v513-open .v513-faq-a {
  max-height: 400px;
  padding: 6px 0 4px;
}

/* ---------- Footer ---------- */
.v513-footer {
  background: linear-gradient(180deg, #3A3A3A 0%, #2a2a2a 100%);
  color: #d7d3c6;
  padding: 22px 16px calc(var(--v513-nav-h) + 18px);
  margin-top: 22px;
  font-size: 12px;
}
.v513-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
.v513-footer-col h5 {
  color: var(--v513-burlywood);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.v513-footer-col a {
  display: block;
  font-size: 12px;
  color: #c2bdb0;
  padding: 3px 0;
}
.v513-footer-col a:active { color: var(--v513-burlywood); }
.v513-footer-brand {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.v513-footer-brand img { width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid var(--v513-burlywood); }
.v513-footer-brand strong { color: #fff; font-size: 14px; display: block; }
.v513-footer-brand small { color: var(--v513-burlywood); font-size: 10.5px; }
.v513-footer-disclaimer {
  font-size: 11px;
  color: #8c887a;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}
.v513-footer-disclaimer p { margin-bottom: 6px; }
.v513-footer-disclaimer a { color: var(--v513-burlywood); }
.v513-copy {
  text-align: center;
  font-size: 11px;
  color: #7d7a6e;
  margin-top: 10px;
}

/* ---------- Mobile Bottom Nav ---------- */
.v513-bottomnav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--v513-nav-h);
  background: linear-gradient(180deg, #3A3A3A 0%, #2a2a2a 100%);
  border-top: 2px solid var(--v513-burlywood);
  display: flex;
  z-index: 150;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 -4px 18px rgba(0,0,0,.18);
}
.v513-nav-btn {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  color: #c2bdb0;
  font-size: 10px;
  font-weight: 600;
  position: relative;
  transition: color .15s;
  padding: 6px 2px;
}
.v513-nav-btn svg { width: 22px; height: 22px; }
.v513-nav-btn.v513-active { color: var(--v513-burlywood); }
.v513-nav-btn.v513-active::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 3px;
  background: var(--v513-burlywood);
  border-radius: 0 0 3px 3px;
}
.v513-nav-btn.v513-nav-cta {
  background: linear-gradient(180deg, #DEB887 0%, #BDB76B 100%);
  color: #2b2b2b;
  font-weight: 800;
}
.v513-nav-btn.v513-nav-cta svg { width: 24px; height: 24px; }
.v513-nav-btn:active { transform: scale(.92); }

/* ---------- Helpers ---------- */
.v513-container { padding: 0 12px; }
.v513-hidden { display: none !important; }
.v513-center { text-align: center; }
.v513-mt12 { margin-top: 12px; }
.v513-mb8 { margin-bottom: 8px; }

/* ---------- Responsive tweaks at 375-430px ---------- */
@media (min-width: 360px) {
  .v513-grid { grid-template-columns: repeat(4, 1fr); }
  .v513-slide h1, .v513-slide h2 { font-size: 24px; }
}
@media (min-width: 410px) {
  .v513-grid { gap: 10px; }
  .v513-jackpot-amount { font-size: 30px; }
}

/* Keep mobile canvas centered on wider screens */
@media (min-width: 481px) {
  body { box-shadow: 0 0 30px rgba(0,0,0,.12); }
}

/* ---------- Part1 editorial surfaces ---------- */
.v513-page-intro { margin: 14px 12px 0; padding: 18px 16px; background: linear-gradient(135deg,#3A3A3A,#504638); color: #fff; border-radius: 18px 18px 8px 8px; }
.v513-page-intro h1 { font-size: 24px; line-height: 1.2; margin-bottom: 8px; }
.v513-page-intro p { font-size: 13px; color: #f6f1e6; line-height: 1.65; }
.v513-answer { margin: 12px; padding: 13px 14px; border: 1px solid var(--v513-burlywood); border-left: 4px solid var(--v513-gold); background: #fffdf7; border-radius: 8px; font-size: 13px; color: var(--v513-dark); }
.v513-editorial { margin: 12px; background: #fff; border: 1px solid var(--v513-line); border-radius: 12px; overflow: hidden; }
.v513-editorial > section { padding: 16px; border-bottom: 1px solid var(--v513-line); }
.v513-editorial > section:last-child { border-bottom: 0; }
.v513-editorial h2 { font-size: 18px; color: var(--v513-ink); line-height: 1.3; margin-bottom: 8px; }
.v513-editorial h3 { font-size: 14px; color: var(--v513-dark); margin: 13px 0 5px; }
.v513-editorial p { font-size: 13px; line-height: 1.68; color: #454239; margin-bottom: 8px; }
.v513-editorial p:last-child { margin-bottom: 0; }
.v513-editorial ul, .v513-editorial ol { padding-left: 20px; list-style: disc; }
.v513-editorial ol { list-style: decimal; }
.v513-editorial li { font-size: 13px; line-height: 1.6; color: #454239; margin-bottom: 6px; }
.v513-editorial a { color: var(--v513-gold); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(199,154,82,.45); text-underline-offset: 2px; }
.v513-note { padding: 11px 12px; background: #faf7ef; border-radius: 8px; border-left: 3px solid var(--v513-khaki); font-size: 12.5px; line-height: 1.6; color: var(--v513-dark); margin-top: 10px; }
.v513-actionbar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.v513-actionbar .v513-btn { min-height: 44px; }
.v513-signal-list { display: grid; gap: 8px; }
.v513-signal { display: grid; grid-template-columns: 30px 1fr; gap: 9px; align-items: start; padding: 10px; background: #fcfbf7; border: 1px solid var(--v513-line); border-radius: 9px; }
.v513-signal-mark { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--v513-dark); color: var(--v513-burlywood); font-weight: 800; font-size: 12px; }
.v513-signal strong { display: block; font-size: 13px; color: var(--v513-ink); margin-bottom: 2px; }
.v513-signal span { display: block; font-size: 12px; line-height: 1.5; color: var(--v513-muted); }
.v513-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.v513-mini-grid > div { padding: 10px; border-radius: 9px; background: #fdfbf6; border: 1px solid var(--v513-line); }
.v513-mini-grid b { display: block; color: var(--v513-dark); font-size: 12px; margin-bottom: 3px; }
.v513-mini-grid span { display: block; color: var(--v513-muted); font-size: 11.5px; line-height: 1.45; }
.v513-link-strip { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
.v513-link-strip a { flex: 0 0 auto; min-height: 44px; display: flex; align-items: center; padding: 8px 11px; border: 1px solid var(--v513-line); border-radius: 999px; background: #fff; font-size: 12px; color: var(--v513-dark); }
.v513-home-games { margin: 12px; }
.v513-home-games .v513-section { margin-left: -12px; margin-right: -12px; }
.v513-promo-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.v513-promo-links a { min-height: 48px; padding: 10px; border-radius: 8px; background: var(--v513-dark); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; }
.v513-promo-links a:nth-child(2n) { background: var(--v513-gold); color: #fff; }
.v513-plain-footer { margin: 12px; padding: 13px; border: 1px solid var(--v513-line); border-radius: 10px; background: #fff; font-size: 11.5px; color: var(--v513-muted); line-height: 1.55; }
@media (min-width: 360px) { .v513-editorial > section { padding: 18px; } }
