/* ── Self-hosted fonts (no external requests) ───────── */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/space-grotesk-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Reset & Base ──────────────────────────────────── */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #292233;
}

h1, h2, h3, .logo, .nav-cta, .download-btn, .login-btn, .register-cta-btn, .download-cta-btn, .register-btn, .secondary-cta-btn, .stat-chip-value, .faq-question {
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ── Scrollbar ─────────────────────────────────────── */
html {
  scrollbar-color: #A6720A #FBF1DC;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background-color: #FBF1DC;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #A6720A, #F0B429);
  border-radius: 10px;
  border: 2px solid #FBF1DC;
}

::-webkit-scrollbar-thumb:hover {
  background: #C8860D;
}

a {
  color: #8C5D08;
}

/* ── Navbar (light, not the dark bar every sibling site uses) ── */
.navbar {
  display: flex;
  align-items: center;
  height: 72px;
  background-color: #ffffff;
  border-bottom: 1px solid #F0E6D2;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1F1235;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.logo img {
  height: 34px;
  width: 34px;
  border-radius: 10px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: #4A4358;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
  padding: 9px 13px;
  border-radius: 999px;
}

.nav-link:hover {
  color: #8C5D08;
  background-color: #FBF1DC;
}

.nav-cta {
  background-color: #A6720A;
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  margin-left: 8px;
}

.nav-cta:hover {
  background-color: #8C5D08 !important;
  color: #ffffff !important;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background-color: #292233;
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .navbar-right {
    position: fixed;
    left: -100%;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    border-bottom: 1px solid #F0E6D2;
    padding: 10px 16px 16px;
    box-shadow: 0 12px 24px rgba(50, 38, 10, 0.08);
  }
  .navbar-right.active {
    left: 0;
  }
  .nav-link {
    display: block;
    margin: 3px 0;
  }
  .nav-cta {
    display: inline-block;
    margin: 10px auto 0;
  }
}

/* ── Breadcrumb ────────────────────────────────────── */
.breadcrumb-nav {
  background-color: #FBF8F1;
  padding: 12px 20px;
  border-bottom: 1px solid #F0E6D2;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}

.breadcrumb-item a {
  color: #8C5D08;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item.active {
  color: #7A7086;
}

.breadcrumb-separator {
  color: #D9C79A;
}

/* ── Hero ──────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(180deg, #FBF8F1 0%, #ffffff 100%);
  padding: 54px 20px 44px;
}

.hero-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  text-align: left;
}

.hero-left {
  flex: 1;
  min-width: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #FFF4D6;
  color: #92620A;
  border: 1px solid #FBE7AD;
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-title, .page-title {
  font-size: 36px;
  font-weight: 700;
  color: #1F1235;
  line-height: 1.22;
  letter-spacing: -0.8px;
}

/* Home hero H1: kept out of the visual flow on phones (the paragraph leads
   instead), but restored as a normal visible headline from tablet width up. */
.hero-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 900px) {
  .hero-title {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 6px;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

.hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: #55506A;
  max-width: 560px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-text {
    max-width: 600px;
    margin: 0 auto;
  }
}

.hero-text a {
  font-weight: 600;
  text-decoration: none;
}

.hero-text a:hover {
  text-decoration: underline;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
  width: 100%;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a {
    width: 100%;
  }
}

.download-btn, .login-btn, .register-cta-btn, .download-cta-btn, .register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #A6720A;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  box-shadow: 0 10px 24px rgba(166, 114, 10, 0.28);
}

.download-btn:hover, .login-btn:hover, .register-cta-btn:hover, .download-cta-btn:hover, .register-btn:hover {
  background-color: #8C5D08;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(166, 114, 10, 0.34);
}

.download-icon, .btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Hero visual: phone-frame panel (replaces flat logo circle) ── */
.hero-visual {
  flex-shrink: 0;
  width: 240px;
  position: relative;
}

@media (max-width: 900px) {
  .hero-visual {
    width: 100%;
    max-width: 200px;
    margin: 12px auto 0;
  }
}

.hero-phone {
  background: linear-gradient(160deg, #17130E 0%, #6B4A0E 55%, #C8860D 100%);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 28px 60px rgba(30, 22, 6, 0.32);
  position: relative;
}

.hero-phone-screen {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hero-phone-screen img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

.hero-phone-screen .img-placeholder {
  width: 100%;
  height: 100%;
  font-size: 11.5px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

/* ── Spec strip (replaces the black-bar app-info block) ── */
.spec-strip-wrap {
  margin-top: 44px;
}

.spec-strip-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #B39A5C;
  margin-bottom: 14px;
}

.spec-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.spec-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #F0E6D2;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 4px 14px rgba(50, 38, 10, 0.05);
}

.spec-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #FBF1DC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-chip-icon svg {
  width: 17px;
  height: 17px;
  fill: #A6720A;
}

.spec-chip-label {
  font-size: 11.5px;
  color: #8A8298;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.spec-chip-value {
  font-size: 14.5px;
  font-weight: 700;
  color: #1F1235;
  font-family: "Space Grotesk", sans-serif;
}

.stats-disclaimer {
  font-size: 13px;
  color: #9A93AB;
  margin-top: 18px;
  text-align: center;
}

/* ── Generic Section / Intro ──────────────────────── */
.intro-section {
  background-color: #ffffff;
  padding: 44px 20px;
}

.intro-section:nth-of-type(even) {
  background-color: #FBF8F1;
}

.intro-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.entry-content {
  counter-reset: sec htsec;
}

.intro-container {
  counter-increment: sec;
}

/* Heading style: an inline numbered badge to the left of the text,
   rather than a stacked label + underline bar. */
.intro-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #1F1235;
  letter-spacing: -0.4px;
  position: relative;
  padding-left: 46px;
  min-height: 34px;
  display: flex;
  align-items: center;
}

.intro-heading::before {
  content: counter(sec, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #A6720A, #F0B429);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4A4358;
}

.intro-text a {
  font-weight: 600;
  text-decoration: none;
}

.intro-text a:hover {
  text-decoration: underline;
}

.tip-heading {
  font-size: 17.5px;
  font-weight: 700;
  color: #292233;
  margin-top: 18px;
}

/* ── Table of Contents ────────────────────────────── */
.toc-section {
  padding: 0 20px 14px;
  background-color: #ffffff;
}

.toc-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.toc-header {
  background-color: #ffffff;
  border: 1px solid #F0E6D2;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(50, 38, 10, 0.05);
}

.toc-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1F1235;
}

.toc-icon {
  font-size: 20px;
  font-weight: 700;
  color: #A6720A;
}

.toc-content {
  padding: 18px 14px 4px 20px;
  display: none;
}

.toc-content.open {
  display: block;
}

.toc-list, .toc-sublist {
  list-style: none;
  margin: 0;
  columns: 2;
  column-gap: 28px;
}

@media (max-width: 640px) {
  .toc-list {
    columns: 1;
  }
}

.toc-sublist {
  padding-left: 18px;
  margin-top: 6px;
}

.toc-list li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.toc-list a, .toc-sublist a {
  text-decoration: none;
  color: #4A4358;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E0C48A;
  flex-shrink: 0;
}

.toc-list a:hover, .toc-sublist a:hover {
  color: #A6720A;
}

/* ── Feature Cards ─────────────────────────────────── */
.features-section {
  padding: 14px 20px 40px;
  background-color: #FBF8F1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  border: none;
  border-radius: 18px;
  padding: 24px;
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(50, 38, 10, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(50, 38, 10, 0.1);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #A6720A, #F0B429);
  padding: 9px;
  border-radius: 12px;
  box-sizing: content-box;
}

.feature-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #1F1235;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.feature-text {
  font-size: 14.5px;
  color: #5C5670;
  line-height: 1.6;
}

/* ── Game List ─────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.game-card {
  border: none;
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(50, 38, 10, 0.06);
}

.game-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1F1235;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
}

.game-card-text {
  font-size: 12.5px;
  color: #746C87;
  line-height: 1.5;
}

/* ── Pros & Cons ───────────────────────────────────── */
.pros-cons-section {
  padding: 14px 20px 44px;
  background-color: #ffffff;
}

.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .pros-cons-container {
    grid-template-columns: 1fr;
  }
}

.pc-card {
  border-radius: 18px;
  padding: 24px;
}

.pros-card {
  background-color: #FBF1DC;
}

.cons-card {
  background-color: #FFF3F0;
}

.pc-title {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
}

.pros-title {
  color: #8C5D08;
}

.cons-title {
  color: #B4402C;
}

.pc-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: #3E384C;
}

/* ── Steps ─────────────────────────────────────────── */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.step-card {
  display: flex;
  gap: 16px;
  border: none;
  border-radius: 16px;
  padding: 18px 20px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(50, 38, 10, 0.05);
}

.step-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #A6720A, #F0B429);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
}

.step-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #1F1235;
  margin-bottom: 4px;
}

.step-content {
  font-size: 14.5px;
  color: #5C5670;
  line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────── */
.faqs-section {
  padding: 14px 20px 54px;
  background-color: #FBF8F1;
}

.faqs-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #1F1235;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(50, 38, 10, 0.05);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FBF1DC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.faq-icon svg {
  width: 13px;
  height: 13px;
  fill: #A6720A;
  transition: transform 0.25s ease;
}

.faq-question.active .faq-icon {
  background: #A6720A;
}

.faq-question.active .faq-icon svg {
  fill: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 14px 20px 18px;
  font-size: 14.5px;
  color: #5C5670;
  line-height: 1.7;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background-color: #17130E;
  color: #ffffff;
  position: relative;
  padding-top: 30px;
}

.footer-cta {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(120deg, #A6720A, #E8B23D);
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px rgba(30, 22, 6, 0.4);
}

.footer-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-cta p {
  font-size: 14px;
  color: #FCF0D8;
}

.footer-cta .download-btn {
  background: #ffffff;
  color: #8C5D08 !important;
  box-shadow: none;
}

.footer-cta .download-btn:hover {
  background: #FBF1DC;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 44px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  max-width: 480px;
}

.footer-logo {
  height: 40px;
  width: 40px;
  border-radius: 11px;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #B8AC94;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #D9CBB0;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #F5B301;
}

.footer-bottom {
  border-top: 1px solid #332A1C;
  text-align: center;
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #A89A82;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }
}

/* ── Warning / Summary boxes ──────────────────────── */
.warning-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #FFF8E8;
  border-left: 4px solid #F0AD4E;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: #6B551E;
  line-height: 1.6;
}

.warning-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #F0AD4E;
  stroke-width: 2;
  flex-shrink: 0;
}

.summary-box {
  border: none;
  background: linear-gradient(135deg, #FBF1DC, #FFF8E8);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.summary-icon {
  width: 26px;
  height: 26px;
  fill: #A6720A;
  margin-bottom: 10px;
}

.summary-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1F1235;
  margin-bottom: 8px;
}

.summary-box p {
  font-size: 14px;
  color: #5C5670;
  line-height: 1.7;
}

/* ── Blog ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: block;
  border: none;
  border-radius: 18px;
  padding: 26px;
  text-decoration: none;
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(50, 38, 10, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(50, 38, 10, 0.1);
}

.blog-card-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: #8C5D08;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  background: #FBF1DC;
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1F1235;
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: "Space Grotesk", sans-serif;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #5C5670;
  line-height: 1.6;
}

.article-meta {
  font-size: 13.5px;
  color: #8A8298;
  margin-bottom: 24px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #3E384C;
  margin-bottom: 16px;
}

.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1F1235;
  margin-top: 28px;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
}

.article-body ul {
  margin: 0 0 16px 20px;
}

.article-body ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #3E384C;
  margin-bottom: 6px;
}

.article-body a {
  color: #8C5D08;
  font-weight: 600;
  text-decoration: none;
}

.article-body a:hover {
  text-decoration: underline;
}

/* ── Screenshot placeholders (real screenshots pending) ── */
.screenshot-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 24px 0;
}

.screenshot-box img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(50, 38, 10, 0.16);
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FBF8F1;
  border: 1.5px dashed #E0C48A;
  border-radius: 20px;
  color: #9C8F73;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  padding: 16px;
}

.screenshot-box .img-placeholder {
  max-width: 250px;
  width: 100%;
  height: 300px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #17130E, #A6720A);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
}

.logo-img {
  height: 34px;
  width: 34px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-logo.logo-mark {
  height: 40px;
  width: 40px;
  border-radius: 11px;
  font-size: 14px;
  margin-bottom: 14px;
}

/* ── Match home page's tighter side padding on small screens ── */
@media (max-width: 768px) {
  .entry-content {
    margin: 0;
    padding: 0;
  }
  .toc-header h3 {
    font-size: 16px !important;
  }
}

@media (max-width: 600px) {
  .hero-section,
  .intro-section,
  .toc-section,
  .features-section,
  .faqs-section,
  .pros-cons-section {
    padding-left: 14px;
    padding-right: 14px;
  }
  .toc-content {
    padding: 16px 6px 4px 10px;
  }
  .hero-title, .page-title {
    font-size: 27px;
  }
  .intro-heading {
    font-size: 21px;
    padding-left: 40px;
  }
  .intro-heading::before {
    width: 30px;
    height: 30px;
    font-size: 11.5px;
  }
}
