@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Source+Sans+3:wght@400;600;700&display=swap");

/* ── Tokens ──────────────────────────────────── */
:root {
  --bg:           #090e0b;
  --panel:        #101a13;
  --panel-2:      #141f17;
  --text:         #e0ece2;
  --muted:        #7d9e8a;
  --brand:        #f3b535;
  --brand-light:  #f9d070;
  --brand-deep:   #a56e0c;
  --line:         #1a2e22;
  --line-hi:      #254033;
  --white:        #ffffff;
  --sh-sm:        0 4px 12px rgba(0,0,0,.24);
  --sh:           0 10px 28px rgba(0,0,0,.34);
  --sh-lg:        0 20px 50px rgba(0,0,0,.45);
  --r:            14px;
  --r-lg:         20px;
  --max:          1160px;
}

*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 0% 0%,  rgba(20,52,34,.55) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 100% 65%, rgba(15,38,26,.4) 0%, transparent 45%);
  background-attachment: fixed;
  line-height: 1.65;
}

.container {
  width: min(94%, var(--max));
  margin-inline: auto;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(9,14,11,.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 70px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #09110a;
  background: linear-gradient(145deg, #f9da7a, var(--brand));
  box-shadow: 0 2px 10px rgba(243,181,53,.3);
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .2px;
  color: var(--white);
}

/* Nav */
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  padding: .42rem .72rem;
  border-radius: 8px;
  transition: color 150ms, background 150ms;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
  background: rgba(243,181,53,.1);
}

/* CTA button */
.btn-primary {
  display: inline-block;
  text-decoration: none;
  padding: .6rem 1.3rem;
  border-radius: 10px;
  color: #0a1409;
  font-weight: 700;
  font-size: .92rem;
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 100%);
  border: 1px solid var(--brand-deep);
  box-shadow: 0 4px 14px rgba(243,181,53,.28);
  transition: filter 140ms, transform 140ms, box-shadow 140ms;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(243,181,53,.38);
}

.btn-secondary {
  display: inline-block;
  text-decoration: none;
  padding: .6rem 1.3rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: .92rem;
  background: transparent;
  border: 1px solid var(--line-hi);
  transition: background 140ms, border-color 140ms;
  white-space: nowrap;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(26,46,34,.6);
  border-color: #3a5e4a;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-hi);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  padding: 9px 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  padding: 2.2rem 2rem;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(18,38,26,.95), rgba(10,18,14,.98));
  box-shadow: var(--sh);
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 20% -10%, rgba(243,181,53,.07), transparent 55%);
  pointer-events: none;
}

.hero-kicker {
  margin: 0 0 .85rem;
  font-size: .8rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-title {
  margin: 0 0 .8rem;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.04;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  max-width: 44ch;
  color: #b8cfbc;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-art-wrap {
  border-radius: var(--r-lg);
  border: 1px solid var(--line-hi);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--sh);
  aspect-ratio: 4 / 3;
}

.hero-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════════ */
.trust-strip {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .48rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.trust-item strong {
  color: var(--text);
  font-weight: 700;
}

.trust-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(243,181,53,.45);
}

/* ════════════════════════════════════════════════
   GAMES SECTION
════════════════════════════════════════════════ */
.games-section {
  padding: 0 0 2rem;
}

.section-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--brand);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 .4rem;
}

.section-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
}

.game-tile {
  background: linear-gradient(160deg, rgba(18,34,24,.97), rgba(11,19,15,.99));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem .75rem 1.1rem;
  text-align: center;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-tile:hover {
  border-color: rgba(243,181,53,.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.32);
}

.game-tile-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: .55rem;
  line-height: 1;
}

.game-tile-name {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: #dfc87a;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .3px;
}

/* ════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════ */
.gallery-label {
  margin: 0 0 .85rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--brand);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.yono-gallery {
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
  transition: border-color 200ms;
}

.gallery-item:hover {
  border-color: var(--line-hi);
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-open:hover img {
  transform: scale(1.03);
}

/* ════════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
}

.lightbox.is-open { display: flex; }

.lightbox-panel {
  position: relative;
  width: min(96vw, 1100px);
  max-height: 92vh;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid #2a4035;
  background: var(--panel);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  background: #060c08;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid #2e4e3c;
  background: rgba(12,22,16,.92);
  color: #eef7ee;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 140ms, border-color 140ms;
}

.lightbox-close {
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(22,40,30,.98);
  border-color: #426055;
}

/* ════════════════════════════════════════════════
   SEO ARTICLE
════════════════════════════════════════════════ */
.article-shell { padding-bottom: 3rem; }

.seo-article {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(14,24,18,.9), rgba(10,16,13,.95));
  padding: 2rem 2.25rem;
  box-shadow: var(--sh-sm);
}

/* Hide empty trailing paragraphs from the Docs export */
.seo-article > p.c1,
.seo-article > p.c9 { display: none; }

.seo-article p,
.seo-article li {
  color: #d5e6d7;
  font-size: 1.04rem;
  line-height: 1.75;
}

.seo-article p.c5 { margin: 0 0 .85rem; }

.seo-article h1.c4 {
  margin: 0 0 1.25rem;
  color: var(--brand-light);
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.seo-article h2.c4 {
  margin: 0 0 .6rem;
  color: #efc968;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.seo-article .c2 {
  color: #ffdda0;
  font-weight: 700;
}

.seo-article .c3,
.seo-article .c6,
.seo-article .c10,
.seo-article .c11 {
  color: inherit;
  font-family: inherit;
}

.seo-article ul.c0 {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.seo-article li.li-bullet-0 {
  margin: 0 0 .65rem;
  padding-left: 1.5rem;
  position: relative;
}

.seo-article li.li-bullet-0::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: .78rem;
  box-shadow: 0 0 5px rgba(243,181,53,.3);
}

/* JS-injected content cards */
.content-card {
  margin-bottom: 1.5rem;
  border: 1px solid var(--line-hi);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
  background: linear-gradient(155deg, rgba(18,34,24,.85), rgba(11,20,16,.93));
  transition: border-color 200ms;
}

.content-card:last-child { margin-bottom: 0; }

.content-card:hover { border-color: #3a5c48; }

.content-visual {
  margin: 0 0 1.1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.content-visual img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

/* ════════════════════════════════════════════════
   APP DOWNLOAD PAGE
════════════════════════════════════════════════ */
.app-page { padding: 2rem 0 3rem; }

.app-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.app-hero-content {
  border: 1px solid var(--line-hi);
  border-radius: 18px;
  padding: 1.7rem;
  background: linear-gradient(155deg, rgba(22,42,30,.94), rgba(12,20,16,.98));
}

.app-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: .8rem;
  color: var(--brand);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.app-title {
  margin: .4rem 0 .75rem;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.1;
  color: var(--brand-light);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.app-lead {
  margin: 0 0 1.25rem;
  max-width: 45ch;
  color: #c8d8c8;
  font-size: 1.04rem;
}

.app-hero-actions { display: flex; gap: .65rem; flex-wrap: wrap; }

.btn-ghost {
  text-decoration: none;
  padding: .62rem 1rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 700;
  border: 1px solid var(--line-hi);
  background: rgba(16,26,20,.75);
  transition: background 140ms, border-color 140ms;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(28,48,36,.94);
  border-color: #3a5e4a;
}

.app-hero-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-hi);
  background: var(--panel);
}

.app-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.app-section {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.6rem;
  background: linear-gradient(180deg, rgba(18,32,24,.78), rgba(11,19,15,.93));
}

.section-title {
  margin: 0 0 1rem;
  color: var(--brand-light);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.card-grid { display: grid; gap: .8rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.info-card {
  border: 1px solid #263f30;
  border-radius: var(--r);
  padding: .9rem;
  background: linear-gradient(180deg, rgba(24,44,32,.9), rgba(15,26,20,.94));
}

.card-image {
  margin: 0 0 .75rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.card-image img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-index {
  margin: 0;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #c8a040;
  font-weight: 700;
}

.info-card h3 {
  margin: .25rem 0 .4rem;
  font-size: 1.05rem;
  color: var(--brand-light);
  font-family: "Montserrat", sans-serif;
}

.info-card p {
  margin: 0;
  color: #c5d8c5;
  font-size: .95rem;
}

/* FAQ */
.faq-list { display: grid; gap: .6rem; }

.faq-item {
  border: 1px solid var(--line-hi);
  border-radius: 12px;
  background: rgba(14,24,18,.87);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  text-align: left;
  background: transparent;
  color: #eaf6ea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 140ms;
}

.faq-question:hover { background: rgba(22,38,28,.5); }

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-hi);
  color: var(--brand);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-answer { overflow: hidden; }

.faq-answer p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: #bdd0be;
}

.faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11,19,14,.96), #060b08);
}

.footer-grid {
  padding: 2.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand { margin-bottom: .85rem; }

.footer-copy {
  margin: 0;
  color: var(--muted);
  max-width: 44ch;
  font-size: .88rem;
  line-height: 1.65;
}

.footer-title {
  margin: 0 0 .85rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #6a8e78;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.footer-list { margin: 0; padding: 0; list-style: none; }
.footer-list li + li { margin-top: .5rem; }

.footer-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color 140ms;
}

.footer-list a:hover,
.footer-list a:focus-visible { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: .95rem 0 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #4a6655;
  font-size: .84rem;
}

.age-note { font-weight: 600; }

/* ════════════════════════════════════════════════
   CLEAN ARTICLE (html-page-builder output)
   Generic rules without Google Docs class selectors
════════════════════════════════════════════════ */
.seo-article h2 {
  margin: 1.75rem 0 .6rem;
  color: #efc968;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.seo-article h3 {
  margin: 1.25rem 0 .45rem;
  color: #d4c070;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.seo-article p {
  margin: 0 0 1rem;
  color: #d5e6d7;
  font-size: 1.04rem;
  line-height: 1.75;
}

.seo-article ul,
.seo-article ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: #d5e6d7;
}

.seo-article li {
  margin-bottom: .5rem;
  font-size: 1.04rem;
  line-height: 1.75;
}

.seo-article strong {
  color: var(--brand-light);
  font-weight: 700;
}

/* ── Inline article images ──────────────────── */
.article-image {
  margin: 1.5rem 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-hi);
  background: var(--panel);
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-image:hover img { transform: scale(1.02); }

/* ── Inline CTA banner ──────────────────────── */
.cta-inline {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid rgba(243,181,53,.28);
  background: linear-gradient(135deg, rgba(22,44,30,.97), rgba(12,22,17,.99));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 18px rgba(0,0,0,.26);
}

.cta-inline-text strong {
  display: block;
  font-size: 1.08rem;
  color: var(--brand-light);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: .2rem;
}

.cta-inline-text p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

/* ── Highlight box (list content) ──────────── */
.highlight-box {
  margin: 1rem 0 1.25rem;
  padding: 1.1rem 1.3rem 1.1rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid var(--line-hi);
  border-left: 3px solid var(--brand);
  background: rgba(16,30,22,.8);
}

.highlight-box ul,
.highlight-box ol {
  margin: 0;
  padding-left: 1.2rem;
}

.highlight-box li {
  color: #d5e6d7;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}

.highlight-box li:last-child { margin-bottom: 0; }

.highlight-box li strong { color: var(--brand-light); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  /* Mobile header */
  .header-inner {
    flex-wrap: wrap;
    padding: .7rem 0;
    gap: 0;
    row-gap: 0;
  }

  .brand { flex: 1; }

  .menu-toggle { display: flex; }

  .nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
  }

  .nav.is-open { max-height: 500px; padding: .4rem 0 .6rem; }

  .nav-link {
    font-size: .92rem;
    padding: .5rem .75rem;
    border-radius: 6px;
  }

  .header-cta { margin-left: .65rem; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 0 1.5rem;
    gap: 1.25rem;
  }

  .hero-art-wrap { aspect-ratio: 16 / 7; }

  /* Games */
  .games-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery */
  .yono-gallery { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* App page */
  .app-hero { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-content { padding: 1.5rem 1.25rem; }
  .hero-title   { font-size: 2rem; }

  .trust-strip-inner { gap: .45rem .9rem; }
  .trust-item { font-size: .82rem; }

  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .game-tile  { padding: 1rem .5rem .75rem; }
  .game-tile-icon { font-size: 1.55rem; }
  .game-tile-name { font-size: .76rem; }

  .yono-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item.is-featured { grid-column: span 2; grid-row: span 1; }

  .seo-article { padding: 1.35rem 1.1rem; }
  .content-card { padding: 1.1rem 1.2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; }

  .card-grid-2,
  .card-grid-3 { grid-template-columns: 1fr; }

  .lightbox-nav { width: 38px; height: 38px; }

  .cta-inline { flex-direction: column; align-items: flex-start; }
  .article-image img { max-height: 220px; }

  .blog-list { gap: 1.25rem; }
  .blog-card { flex-direction: column; }
  .blog-card-thumb { width: 100%; height: 200px; }
}

/* ── Blog List ───────────────────────────────── */
.blog-list {
  list-style: none;
  margin: 0;
  padding: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  display: flex;
  gap: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line-hi);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: var(--sh); }

.blog-card-thumb {
  flex: 0 0 220px;
  height: 160px;
  overflow: hidden;
  display: block;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  flex: 1;
  padding: 1.25rem 1.5rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.blog-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.blog-card-title a {
  color: var(--text);
  text-decoration: none;
}
.blog-card-title a:hover { color: var(--brand); }

.blog-card-desc {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: .88rem;
  padding: .45rem 1rem;
}
