/* =============================================
   TAIKO — styles.css
   Japanese Samurai aesthetic
   ============================================= */

/* --- TOKENS --- */
:root {
  --black:      #0a0806;
  --deep:       #110e0a;
  --surface:    #1a1410;
  --surface-2:  #231c15;
  --gold:       #c9993a;
  --gold-light: #e8b84b;
  --gold-dim:   #7a5e22;
  --crimson:    #8b1a1a;
  --crimson-2:  #a82020;
  --red-bright: #cc2222;
  --cream:      #f2e9d8;
  --cream-dim:  #c4b49a;
  --white:      #ffffff;

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'EB Garamond', Georgia, serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out-expo);

  --container: 1140px;
  --radius: 4px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

strong { color: var(--cream); font-weight: 600; }
em { font-style: italic; color: var(--gold-light); }

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

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--crimson);
  border-color: var(--crimson-2);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--white);
  box-shadow: 0 0 28px rgba(200, 30, 30, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(242, 233, 216, 0.35);
  color: var(--cream-dim);
}
.btn--ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.btn--large { padding: 1rem 2.75rem; font-size: 0.9rem; }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header--light .section-eyebrow { color: var(--gold-dim); }
.section-header--light .section-title { color: var(--cream); }
.section-header--light .section-rule { background: var(--gold-dim); }

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 8, 6, 0.96);
  box-shadow: 0 1px 0 rgba(201, 153, 58, 0.2);
  backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.nav__logo:hover { color: var(--gold-light); }

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.nav__links a:hover { color: var(--cream); }

.nav__cta {
  background: var(--crimson) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--crimson-2);
}
.nav__cta:hover {
  background: var(--red-bright) !important;
  color: var(--white) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 8, 6, 0.98);
  border-top: 1px solid rgba(201, 153, 58, 0.2);
  padding: 1.5rem 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__mobile a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 80% at 50% 60%, #1f0808 0%, var(--black) 70%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(201, 153, 58, 0.04) 39px,
      rgba(201, 153, 58, 0.04) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(201, 153, 58, 0.04) 39px,
      rgba(201, 153, 58, 0.04) 40px
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 6rem;
  max-width: 800px;
}

.hero__kamon {
  font-size: 2.5rem;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.6;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 40px rgba(139, 26, 26, 0.6);
}

.hero__title-kanji {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.35em;
  color: var(--gold-dim);
  letter-spacing: 0.5em;
  margin-bottom: 0.2em;
  opacity: 0.7;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0.75rem;
  line-height: 1.6;
}

.hero__sub {
  font-size: 1rem;
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__stat { text-align: center; }

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.3rem;
}

.hero__stat-divider {
  color: var(--gold-dim);
  opacity: 0.4;
  font-size: 0.6rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}

.hero__scroll span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 7rem 0;
  background: var(--deep);
  border-top: 1px solid rgba(201, 153, 58, 0.12);
  border-bottom: 1px solid rgba(201, 153, 58, 0.12);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text p {
  margin-bottom: 1.25rem;
  color: var(--cream-dim);
}

.about__lead {
  font-size: 1.25rem !important;
  color: var(--cream) !important;
  line-height: 1.65;
}

.about__quote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.5rem;
  margin-top: 2rem;
  font-style: italic;
  color: var(--gold-dim);
  background: rgba(201, 153, 58, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Card Stack Visual */
.about__cards-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-stack {
  position: relative;
  width: 220px;
  height: 320px;
}

.card-mock {
  position: absolute;
  width: 200px;
  height: 300px;
  border-radius: 12px;
  border: 2px solid var(--gold-dim);
  transition: transform var(--transition);
}

.card-mock--front {
  top: 0; left: 0;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border-color: var(--gold);
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,153,58,0.3);
}

.card-mock--2 {
  top: 12px; left: 12px;
  background: var(--surface);
  z-index: 2;
  border-color: var(--gold-dim);
  opacity: 0.6;
}

.card-mock--3 {
  top: 22px; left: 22px;
  background: var(--surface);
  z-index: 1;
  border-color: rgba(122, 94, 34, 0.4);
  opacity: 0.35;
}

.card-stack:hover .card-mock--front { transform: translateY(-12px) rotate(-2deg); }
.card-stack:hover .card-mock--2 { transform: translateY(-4px) rotate(3deg); }

.card-mock__inner {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-mock__rank {
  font-size: 1.1rem;
  color: var(--gold);
  text-align: center;
  border-bottom: 1px solid rgba(201,153,58,0.3);
  padding-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.card-mock__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  letter-spacing: 0.2em;
}

.card-mock__power {
  text-align: center;
  font-size: 3rem;
  color: var(--crimson);
  filter: drop-shadow(0 0 12px rgba(139,26,26,0.8));
}

.card-mock__weak {
  font-size: 0.7rem;
  color: var(--cream-dim);
  text-align: center;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.card-mock__weak span { color: var(--gold-dim); }

/* ============================================
   HOW TO PLAY
   ============================================ */
.how-to-play {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
  overflow: hidden;
}

.htp__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139,26,26,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139,26,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 2.25rem;
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold-dim) 10%,
    var(--gold-dim) 90%,
    transparent
  );
  opacity: 0.4;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: background var(--transition);
}
.step:last-child { border-bottom: none; }

.step--accent .step__number { color: var(--crimson); border-color: var(--crimson); background: rgba(139,26,26,0.15); }
.step--accent { background: rgba(139,26,26,0.03); border-radius: var(--radius); }

.step__number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}

.step__content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}

.step__content p { color: var(--cream-dim); font-size: 1.05rem; }

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 7rem 0;
  background: var(--deep);
  border-top: 1px solid rgba(201, 153, 58, 0.1);
  border-bottom: 1px solid rgba(201, 153, 58, 0.1);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1px solid rgba(201, 153, 58, 0.12);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--surface);
  transition: background var(--transition);
}
.feature-card:hover { background: var(--surface-2); }

.feature-card--highlight {
  background: linear-gradient(145deg, #1c1008, #150c06);
  border-left: 2px solid var(--gold-dim);
}
.feature-card--highlight:hover { background: linear-gradient(145deg, #201208, #1a0f07); }

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ============================================
   GET THE GAME
   ============================================ */
.get-the-game {
  position: relative;
  padding: 9rem 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, #1a0505 0%, var(--black) 75%);
  overflow: hidden;
}

.gtg__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 34px,
    rgba(201, 153, 58, 0.025) 34px,
    rgba(201, 153, 58, 0.025) 35px
  );
  pointer-events: none;
}

.gtg__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gtg__kamon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}

.gtg__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(139,26,26,0.5);
}

.gtg__sub {
  color: var(--cream-dim);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.gtg__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gtg__hashtag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(201, 153, 58, 0.15);
  padding: 3rem 0;
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.footer__kanji {
  font-size: 1.2rem;
  color: var(--gold-dim);
  opacity: 0.5;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--cream-dim);
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--cream-dim);
  opacity: 0.35;
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav__active {
  color: var(--gold) !important;
}

/* ============================================
   SECTION DESC (shared)
   ============================================ */
.section-desc {
  max-width: 620px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  color: var(--cream-dim);
  text-align: center;
  line-height: 1.75;
}

/* ============================================
   GAME PAGE v2 — HERO
   ============================================ */
.g-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 80% at 20% 50%, #1f0808 0%, var(--black) 65%);
  padding: 0 max(2rem, calc((100vw - 1140px) / 2 + 2rem));
}

/* ============================================
   GAME PAGE v2 — HERO
   ============================================ */
.g-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,153,58,0.04) 39px, rgba(201,153,58,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,153,58,0.04) 39px, rgba(201,153,58,0.04) 40px);
  pointer-events: none;
}

.g-hero__content {
  position: relative;
  z-index: 2;
  padding: 9rem 3rem 6rem 0;
}

.g-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 40px rgba(139,26,26,0.6);
}

.g-hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.65;
}

.g-hero__art {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 6rem;
}

.g-hero__img {
  width: 100%;
  max-width: 580px;
  /* ink artwork has white bg — multiply blends it into the dark background */
  mix-blend-mode: multiply;
  filter: contrast(1.05);
  transform: scaleX(-1); /* warriors face inward toward the text */
  user-select: none;
  pointer-events: none;
}

/* ============================================
   GAME PAGE v2 — WHY TAIKO
   ============================================ */
.g-why {
  padding: 7rem 0;
  background: var(--deep);
  border-top: 1px solid rgba(201,153,58,0.12);
  border-bottom: 1px solid rgba(201,153,58,0.12);
}

.g-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.g-why__image-wrap {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.g-why__img {
  width: 100%;
  display: block;
}

.g-why__text {}

.g-why__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.g-why__feat {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.g-why__feat-icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  line-height: 1.4;
}

.g-why__feat h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.g-why__feat p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ============================================
   GAME PAGE v2 — CARDS SECTION
   ============================================ */
.g-cards {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
  overflow: hidden;
}

.g-cards__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139,26,26,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139,26,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.g-cards__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.g-cards__image-wrap {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  background: transparent;
}

.g-cards__img {
  width: 100%;
  display: block;
  /* ink artwork on white — multiply blends into dark bg */
  mix-blend-mode: multiply;
  filter: contrast(1.05) brightness(0.95);
}

.g-cards__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.g-card-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.g-card-detail:last-child { border-bottom: none; padding-bottom: 0; }

.g-card-detail__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.g-card-detail__badge--red {
  background: rgba(139,26,26,0.2);
  border: 1px solid var(--crimson);
  color: var(--red-bright);
}

.g-card-detail__badge--dark {
  background: var(--surface-2);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 0.9rem;
}

.g-card-detail__badge--gold {
  background: rgba(201,153,58,0.12);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 1.4rem;
}

.g-card-detail h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.g-card-detail p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ============================================
   GAME PAGE v2 — HOW IT'S PLAYED
   ============================================ */
.g-how {
  padding: 7rem 0;
  background: var(--deep);
  border-top: 1px solid rgba(201,153,58,0.12);
  border-bottom: 1px solid rgba(201,153,58,0.12);
}

.g-how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.g-how__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.g-how__steps li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.g-how__steps li:last-child { border-bottom: none; }

.g-how__num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  flex-shrink: 0;
}

.g-how__num--accent {
  color: var(--crimson);
  border-color: var(--crimson);
  background: rgba(139,26,26,0.15);
}

.g-how__steps h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.g-how__steps p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

.g-how__image-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.g-how__img {
  width: 100%;
  border-radius: calc(var(--radius) * 2);
  /* white-bg ink art — multiply blends into section bg */
  mix-blend-mode: multiply;
  filter: contrast(1.08);
}

.g-how__caption {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
}

/* ============================================
   GAME PAGE v2 — SHOP / EDITIONS
   ============================================ */
.g-shop {
  position: relative;
  padding: 8rem 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, #1a0505 0%, var(--black) 75%);
  overflow: hidden;
}

.g-shop__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 34px,
    rgba(201,153,58,0.025) 34px,
    rgba(201,153,58,0.025) 35px
  );
  pointer-events: none;
}

.g-editions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 980px;
  margin: 0 auto 3rem;
}

.g-edition {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(201,153,58,0.15);
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.g-edition:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.5);
}

.g-edition--elite {
  background: linear-gradient(175deg, #1a1108, #110c05);
  border-color: rgba(201,153,58,0.4);
  box-shadow: 0 0 60px rgba(201,153,58,0.06);
}
.g-edition--elite:hover {
  box-shadow: 0 28px 80px rgba(0,0,0,0.5), 0 0 80px rgba(201,153,58,0.1);
}

.g-edition__popular-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  z-index: 5;
}

.g-edition__img-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,153,58,0.1);
  background: #0f0c09;
}

.g-edition__img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}
.g-edition:hover .g-edition__img {
  transform: scale(1.03);
}

.g-edition__img-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: rgba(10,8,6,0.7);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.g-edition__img-label--elite {
  color: var(--gold);
  border-color: rgba(201,153,58,0.3);
}

.g-edition__body {
  padding: 2rem 2rem 2.25rem;
}

.g-edition__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.g-edition__tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.g-edition__list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.g-edition__list li {
  font-size: 0.9rem;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.g-edition__price {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.g-edition__cta {
  width: 100%;
  display: flex;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.g-edition__note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--cream-dim);
  opacity: 0.55;
  font-style: italic;
}

.g-shop__notice {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px dashed rgba(201,153,58,0.2);
  border-radius: var(--radius);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.g-shop__notice p {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  opacity: 0.7;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__cards-visual { order: -1; }

  .features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Game page v2 responsive */
  .g-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0 2rem;
    text-align: center;
  }
  .g-hero__content {
    padding: 9rem 0 2rem;
    order: 1;
  }
  .g-hero__art {
    order: 2;
    padding-top: 0;
    padding-bottom: 3rem;
  }
  .g-hero__img { max-width: 460px; transform: scaleX(1); }
  .hero__actions { justify-content: center; }

  .g-why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .g-cards__showcase { grid-template-columns: 1fr; gap: 3rem; }
  .g-how__grid { grid-template-columns: 1fr; gap: 3rem; }
  .g-editions { grid-template-columns: 1fr; max-width: 480px; }
}

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

  .steps::before { display: none; }

  .step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero__stats { gap: 1rem; }
  .hero__stat-divider { display: none; }

  /* Game page v2 mobile */
  .g-hero__img { max-width: 340px; }
  .g-why__feat { flex-direction: row; }
  .g-how__steps li { flex-direction: row; }
}
