:root {
      --ink: #0a0a0a;
      --parchment: #f5efe6;
      --blood: #cc1a1a;
      --rust: #b94040;
      --gold: #b8860b;
      --gold-light: #d4a017;
      --gold-pale: #f0e0b0;
      --aged: #6b6560;
      --smoke: #f7f3ee;
      --mist: #444444;
      --off-black: #111110;
      --mid-gray: #6b6560;
      --cream: #f7f3ee;
      --white: #fefefe;
      --charcoal: #1c1c1b;
      --r-sm: 4px;
      --r-md: 8px;
      --r-lg: 16px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
      --shadow-md: 0 4px 16px rgba(0,0,0,.12);
      --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
    }

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

    body {
      background: var(--cream);
      color: var(--off-black);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 20px;
      line-height: 1.8;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* No grain overlay on light theme */

    h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

    /* ── NAV ── */
    nav.site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 68px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2.5rem;
      background: rgba(13,10,8,0.97);
      border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 900;
      font-size: 1.15rem;
      color: var(--parchment);
      text-decoration: none;
    }
    .nav-logo span { color: var(--blood); }
    .nav-back {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--mist);
      text-decoration: none;
      font-family: 'Courier Prime', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-back:hover { color: var(--gold); }
    .nav-back::before { content: '←'; font-size: 0.9rem; }

    /* ── HERO ── */
    .game-hero {
      padding-top: 68px;
      overflow: visible;
      position: relative;
      height: 420px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: var(--charcoal);
    }

    .game-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.2) 0%,
        rgba(10,10,10,0.4) 50%,
        #f7f3ee 100%
      );
    }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.1rem 2rem 0;
      font-family: 'Courier Prime', monospace;
      font-size: 0.66rem;
      letter-spacing: 0.09em;
      color: var(--mid-gray);
      background: transparent;
      position: relative;
      z-index: 1;
    }
    .breadcrumb a { color: var(--mid-gray); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span { margin: 0 0.45rem; }

    /* ── LAYOUT ── */
    .game-layout {
      /*max-width: 1100px;*/
      margin: -80px auto 0;
      padding: 10rem 2rem 6rem;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 4rem;
      align-items: start;
      background-color: var(--cream);
      background-image: var(--card-bg-image);
      background-size: cover;
      background-position: center;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
      position: relative;
      z-index: 2;
      box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .game-layout::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(247, 243, 238, 0.5);
      pointer-events: none;
      z-index: 0;
    }

    .game-layout > * {
      position: relative;
      z-index: 1;
    }

    /* Section boxes */
    .section-box {
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: var(--r-lg);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

	.game-style-box {
	  padding-bottom: 0.75rem;
	}

    /* ── LEFT: Content ── */
    /*.game-eyebrow {
      font-family: 'Courier Prime', monospace;
      font-size: 0.66rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.65rem;
    }
    .game-eyebrow .sep { margin: 0 0.55rem; color: var(--mid-gray); opacity: 0.6; }
	*/

    .game-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-style: italic;
      font-weight: 900;
      color: var(--off-black);
      margin-bottom: 0.45rem;
    }

    .game-setting {
      font-family: 'Courier Prime', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-bottom: 1.1rem;
    }

    .game-badge {
      display: inline-block;
      background: var(--blood);
      color: var(--parchment);
      font-family: 'Courier Prime', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.22rem 0.65rem;
      margin-bottom: 1.1rem;
    }

    .game-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-bottom: 1.75rem;
    }
    .tag {
      font-family: 'Courier Prime', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid-gray);
      border: 1px solid rgba(0,0,0,0.15);
      padding: 0.15rem 0.5rem;
      border-radius: 100px;
      background: var(--white);
    }

    /* Stats */
    .game-stats {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }
    .stat {
      flex: 1;
      min-width: 100px;
      text-align: center;
      padding: 1rem 0.75rem;
      border-right: 1px solid rgba(0,0,0,0.07);
    }
    .stat:last-child { border-right: none; }
    .stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-style: italic;
      font-weight: 700;
      color: var(--off-black);
      line-height: 1.1;
    }
    .stat-label {
      font-family: 'Courier Prime', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-top: 0.2rem;
    }

    /* Suspects */
    .suspects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }
    .suspect-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-md);
      padding: 0.85rem 1rem;
      transition: box-shadow 0.2s;
    }
    .suspect-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .suspect-name {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 700;
      font-size: 1rem;
      color: var(--off-black);
      margin-bottom: 0.25rem;
    }
    .suspect-desc {
      font-size: 0.82rem;
      color: var(--aged);
      line-height: 1.5;
    }

    .divider-sm { height: 1px; background: rgba(0,0,0,0.08); margin: 2rem 0; }


    /* Mobile buy button above story */
    .mobile-buy-top {
      display: none;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }
    .mobile-buy-btn {
      background: #3aa34f;
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: var(--r-sm);
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .mobile-buy-btn:hover { background: #2d8a3e; }
    .mobile-buy-label {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .mobile-buy-label-main {
      font-size: 1.2rem;
      color: var(--off-black);
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      line-height: 1.2;
    }
    .mobile-buy-label-sub {
      font-size: 0.72rem;
      color: var(--mid-gray);
      font-weight: 400;
      font-family: 'Courier Prime', monospace;
      letter-spacing: 0.06em;
    }
    @media(max-width: 820px) {
      .mobile-buy-top { display: flex; }
    }

    /* Game attributes */
	.game-attributes {
	  display: flex;
	  flex-direction: column;
	  gap: 0.5rem;
	}
	.game-attr {
	  font-size: 0.9rem;
	  color: var(--off-black);
	  display: flex;
	  align-items: center;
	  gap: 0.6rem;
	  padding: 0;
	  border: none;
	  background: none;
	  border-radius: 0;
	  letter-spacing: 0;
	  font-family: 'DM Sans', sans-serif;
	}
	.attr-yes { color: var(--off-black); }
	.attr-no  { color: var(--off-black); }
    .attr-link {
      color: inherit;
      text-decoration: underline;
      text-decoration-style: dotted;
      text-underline-offset: 2px;
    }
    .attr-link:hover { color: var(--gold); }

    /* Variations */
    .variations-block { margin-bottom: 0; }
    .variations-pills {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .variation-pill {
      display: inline-block;
      padding: 0.45rem 1.1rem;
      border-radius: 100px;
      font-family: 'DM Sans', system-ui, sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      border: 1.5px solid rgba(0,0,0,0.18);
      color: var(--mid-gray);
      text-decoration: none;
      transition: all 0.2s;
      background: var(--white);
    }
    .variation-pill:hover {
      border-color: var(--off-black);
      color: var(--off-black);
      background: var(--cream);
    }
	.variation-pill,
	.variation-pill--active {
	  display: inline-block;
	  font-family: 'Courier Prime', monospace;
	  font-size: 0.72rem;
	  letter-spacing: 0.08em;
	  padding: 0.35rem 0.85rem;
	  border-radius: 100px;
	  border: 1px solid;
	  text-decoration: none;
	  cursor: pointer;
	}
	.variation-pill {
	  color: var(--off-black);
	  background: var(--white);
	  border-color: rgba(0,0,0,0.15);
	}
	.variation-pill--active {
	  background: #3aa34f;
	  color: #fff !important;
	  border-color: #3aa34f;
	  font-weight: 700;
	}

	a.variation-pill:hover {
	  text-decoration: none;
	}
    .section-heading {
      font-family: 'Courier Prime', monospace;
      font-size: 0.66rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.9rem;
      font-weight: 700;
    }

    .game-full-desc { font-size: 1.15rem; color: #333333; line-height: 1.9; }
    .game-full-desc p { margin-bottom: 1rem; color: #333333; }
    .game-full-desc p:last-child { margin-bottom: 0; }

    /* Included list */
    .included-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }
    .included-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 1rem;
      color: #333333;
      line-height: 1.4;
    }
    .included-list li::before {
      content: '✓';
      color: var(--gold);
      font-size: 0.82rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    /* Buy button after What's Included */
    .desktop-buy-bottom {
      margin-top: 2rem;
      display: block;
    }

    /* ── RIGHT: Buy box ── */
    .buy-box {
      background: #4a4542;
      border: none;
      padding: 1.85rem;
      top: 84px;
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
    }

	.buy-box-desktop .buy-box {
	  position: sticky;
	  top: 84px;
	}

    .buy-box-img {
      margin: 1rem 0;
      border-radius: var(--r-sm);
      overflow: hidden;
    }

    .buy-box-price {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 900;
      font-style: italic;
      color: var(--gold-pale);
      line-height: 1;
      margin-bottom: 0.2rem;
    }
    .buy-box-note {
      font-family: 'Courier Prime', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1.4rem;
    }

    .buy-box-features {
      list-style: none;
      margin-bottom: 1.6rem;
    }
    .buy-box-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.86rem;
      color: rgba(255,255,255,0.75);
      padding: 0.38rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .buy-box-features li:last-child { border-bottom: none; }
    .feat-icon { color: var(--gold); font-size: 0.82rem; flex-shrink: 0; }

    .paypal-form-full { width: 100%; margin-bottom: 0.6rem; }
    .paypal-form-full button {
      width: 100%;
      background: #3aa34f;
      color: var(--ink);
      border: none;
      padding: 1rem 1.5rem;
      font-family: 'Courier Prime', monospace;
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      font-weight: 700;
      border-radius: var(--r-md);
      transition: background 0.2s, transform 0.15s;
    }
    .paypal-form-full button:hover {
      background: #2d8a3e;
      transform: translateY(-2px);
    }

    .buy-box-secure {
      text-align: center;
      font-family: 'Courier Prime', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      margin-bottom: 1.1rem;
    }
    .buy-box-guarantee {
      text-align: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      font-style: italic;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      line-height: 1.5;
    }


    .author-block {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .author-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--off-black);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-style: italic;
      font-weight: 700;
      color: var(--gold-pale);
      flex-shrink: 0;
    }
    .author-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-style: italic;
      font-weight: 700;
      color: var(--off-black);
      margin-bottom: 0.35rem;
    }
    .author-about {
      font-size: 0.88rem;
      color: #444444;
      line-height: 1.65;
    }

    /* ── YOU MIGHT ALSO ENJOY ── */
    .other-section {
      background: var(--white);
      padding: 5rem 2rem;
      border-top: 1px solid rgba(0,0,0,0.07);
    }
    .other-label {
      text-align: center;
      font-family: 'Courier Prime', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .other-title {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      font-style: italic;
      color: var(--off-black);
      margin-bottom: 2.5rem;
    }
    .other-grid {
      display: flex;
      justify-content: center;
      gap: 1.4rem;
      flex-wrap: wrap;
      max-width: 960px;
      margin: 0 auto;
    }
    .other-card {
      background: var(--cream);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-md);
      padding: 1.4rem 1.6rem;
      width: 270px;
      text-decoration: none;
      color: var(--off-black);
      transition: transform 0.25s, box-shadow 0.25s;
      display: block;
      box-shadow: var(--shadow-sm);
    }
    .other-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .other-emoji  { font-size: 2rem; margin-bottom: 0.5rem; }
    .other-game-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; font-weight: 700; margin-bottom: 0.25rem; line-height: 1.25; color: var(--off-black); }
    .other-setting { font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-gray); }
    .other-price  { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); margin-top: 0.6rem; font-weight: 700; }

    /* ── FOOTER ── */
    footer {
      background: var(--off-black);
      border-top: none;
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; font-weight: 900; margin-bottom: 0.3rem; color: #fff; }
    .footer-logo span { color: var(--blood); }
    .footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin: 1rem 0; }
    .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-family: 'Courier Prime', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); font-family: 'Courier Prime', monospace; }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
      .game-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .buy-box { position: static; }
      .included-list { grid-template-columns: 1fr; }
      .game-stats .stat { min-width: 80px; }
    }
    @media (max-width: 500px) {
      nav { padding: 1rem 1.25rem; }
    }

    /* ── VARIANT LOZENGES ── */
    .buy-lozenges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    .buy-lozenge {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.75);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 0.35rem 0.85rem;
      border-radius: 100px;
      font-family: 'Courier Prime', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: all 0.2s;
    }
    .buy-lozenge:hover {
      background: rgba(255,255,255,0.2);
      color: #fff;
    }
    .buy-lozenge.active {
      background: #3aa34f;
      border-color: #3aa34f;
      color: #fff;
      font-weight: 700;
    }

    /* ── YOU ARE BUYING ── */
    .you-are-buying {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0.85rem;
      font-family: 'Courier Prime', monospace;
      letter-spacing: 0.04em;
    }
    .you-are-buying strong {
      color: rgba(255,255,255,0.9);
    }

    /* ── BOTTOM BUY CARD ── */
    .buy-box-bottom-wrap {
      max-width: 1100px;
      margin: 2rem auto 0;
      padding: 0 2rem 4rem;
    }
.buy-box-bottom {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
  max-width: 100%;
}
.buy-box-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.buy-box-bottom-right img {
  border-radius: var(--r-md);
}
.buy-box-bottom .buy-box-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.buy-box-bottom .buy-box-features li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
@media (max-width: 820px) {
  .buy-box-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .buy-box-bottom .buy-box-features {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
}

    /* Desktop — hide bottom buy card right column */
    @media (min-width: 821px) {
      .buy-box-desktop { display: block; }
    }

    /* Mobile — hide right column buy box, show bottom buy card */
    @media (max-width: 820px) {
      .buy-box-desktop { display: none; }
      .buy-box-bottom { max-width: 100%; }
      .desktop-buy-bottom { display: none; }
    }