/*
 * PROJECT: dinastimon
 * DOMAIN: dinastimon.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Archer/Nature — Green, Black, arrows theme
 * - Effect: Pattern Backgrounds + Brutalism accents
 * - Fonts: Bitter (heading) + Karla (body)
 * - Buttons: 3D Effect
 *
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;600;700;900&family=Karla:wght@300;400;500;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --ninja-green: #2d6a2d;
  --blade-green: #3a8a3a;
  --leaf-light: #5aad5a;
  --forest-dark: #1a3d1a;
  --bamboo: #8fbc5a;
  --veggie-orange: #e8732a;
  --veggie-red: #d63c2a;
  --veggie-yellow: #f5c842;
  --shadow-black: #0d1a0d;
  --ink-black: #1a1a1a;
  --parchment: #f4f0e8;
  --off-white: #fafaf7;
  --slice-white: #ffffff;
  --border-ink: #0d1a0d;

  --font-heading: 'Bitter', Georgia, serif;
  --font-body: 'Karla', 'Helvetica Neue', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-brutal: 4px 4px 0px var(--border-ink);
  --shadow-brutal-lg: 6px 6px 0px var(--border-ink);
  --shadow-hover: 2px 2px 0px var(--border-ink);

  --transition: 0.2s ease;
}

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

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

html, body {
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--parchment);
  color: var(--ink-black);
  line-height: 1.6;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(45, 106, 45, 0.06) 39px,
      rgba(45, 106, 45, 0.06) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(45, 106, 45, 0.06) 39px,
      rgba(45, 106, 45, 0.06) 40px
    );
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ===== MANDATORY RULES ===== */
.article-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.article-card,
.offer-card,
.card {
  position: relative;
}

.stars {
  color: #ffc107;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--ink-black);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-ink);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn--primary {
  background-color: var(--ninja-green);
  color: var(--slice-white);
  box-shadow: var(--shadow-brutal);
}

.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
  background-color: var(--blade-green);
}

.btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-hover);
}

.btn--secondary {
  background-color: var(--parchment);
  color: var(--forest-dark);
  box-shadow: var(--shadow-brutal);
}

.btn--secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
  background-color: var(--bamboo);
}

.btn-play {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  padding: 1rem 3rem;
  background-color: var(--veggie-orange);
  color: var(--slice-white);
  border: 3px solid var(--border-ink);
  border-radius: var(--radius-sm);
  box-shadow: 5px 5px 0px var(--border-ink);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-play:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--border-ink);
  background-color: var(--veggie-red);
}

.btn-play:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--border-ink);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--forest-dark);
  border-top: 3px solid var(--bamboo);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-consent__text {
  color: rgba(244, 240, 232, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-consent__text a {
  color: var(--bamboo);
  text-decoration: underline;
}

/* ===== HEADER ===== */
.site-header {
  background-color: var(--forest-dark);
  border-bottom: 3px solid var(--border-ink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--bamboo);
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0px var(--border-ink);
  transition: color var(--transition);
}

.logo:hover {
  color: var(--veggie-yellow);
}

.site-nav__list {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.site-nav__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--parchment);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-nav__link:hover,
.site-nav__link--active {
  background-color: var(--ninja-green);
  color: var(--slice-white);
}

.site-nav__play-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slice-white);
  background-color: var(--veggie-orange);
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0px var(--border-ink);
  transition: transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
}

.site-nav__play-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--border-ink);
  background-color: var(--veggie-red);
}

/* Mobile menu toggle */
.site-header__toggle {
  display: none;
  background: none;
  border: 2px solid var(--bamboo);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--bamboo);
  transition: var(--transition);
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== HERO ===== */
.hero {
  background-color: var(--forest-dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(58, 138, 58, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(90, 173, 90, 0.2) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(45, 106, 45, 0.05) 20px,
      rgba(45, 106, 45, 0.05) 21px
    );
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '⚔';
  position: absolute;
  top: -20px;
  right: 5%;
  font-size: 12rem;
  opacity: 0.04;
  color: var(--bamboo);
  transform: rotate(-15deg);
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  z-index: 1;
  position: relative;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bamboo);
  background-color: rgba(143, 188, 90, 0.15);
  border: 1px solid var(--bamboo);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--off-white);
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.4);
}

.hero__title span {
  color: var(--veggie-orange);
}

.hero__description {
  color: rgba(244, 240, 232, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--veggie-yellow);
  display: block;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(244, 240, 232, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__game-frame {
  background-color: var(--shadow-black);
  border: 4px solid var(--bamboo);
  border-radius: var(--radius-md);
  box-shadow: 8px 8px 0px var(--border-ink), 0 0 30px rgba(143, 188, 90, 0.2);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.hero__game-icon {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  border: 3px solid var(--ninja-green);
  box-shadow: var(--shadow-brutal);
  object-fit: cover;
}

.hero__game-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--parchment);
  text-align: center;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ninja-green);
  margin-bottom: 0.75rem;
}

.section-header__title {
  margin-bottom: 1rem;
}

.section-header__title span {
  color: var(--veggie-orange);
}

.section-header__desc {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
  font-size: 1.05rem;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-brutal-lg);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--ninja-green);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  box-shadow: 3px 3px 0px var(--border-ink);
}

.feature-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
}

.feature-card__desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== HOW TO PLAY PREVIEW ===== */
.how-to-preview {
  padding: 5rem 1.5rem;
  background-color: var(--parchment);
}

.how-to-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.how-to-preview__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
}

.step-item__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--ninja-green);
  color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 2px 2px 0px var(--border-ink);
}

.step-item__content {}

.step-item__title {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--forest-dark);
}

.step-item__desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.how-to-preview__cta {
  text-align: center;
}

.how-to-preview__image {
  background-color: var(--forest-dark);
  border: 3px solid var(--border-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-to-preview__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(143, 188, 90, 0.05) 0px,
    rgba(143, 188, 90, 0.05) 1px,
    transparent 1px,
    transparent 20px
  );
}

.how-to-preview__game-icon {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  border: 3px solid var(--bamboo);
  box-shadow: 6px 6px 0px var(--border-ink);
  margin: 0 auto 1.5rem;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.how-to-preview__game-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.how-to-preview__game-desc {
  color: var(--bamboo);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.article-card {
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.article-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-brutal-lg);
}

.article-card__thumb {
  height: 180px;
  background-color: var(--forest-dark);
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(58, 138, 58, 0.4) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 15px,
      rgba(143, 188, 90, 0.08) 15px,
      rgba(143, 188, 90, 0.08) 16px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.article-card__thumb--orange {
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(232, 115, 42, 0.3) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 15px,
      rgba(232, 115, 42, 0.08) 15px,
      rgba(232, 115, 42, 0.08) 16px
    );
}

.article-card__thumb--red {
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(214, 60, 42, 0.3) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 15px,
      rgba(214, 60, 42, 0.08) 15px,
      rgba(214, 60, 42, 0.08) 16px
    );
}

.article-card__content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.article-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ninja-green);
  margin-bottom: 0.5rem;
}

.article-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.article-card__meta {
  font-size: 0.8rem;
  color: #999;
  display: flex;
  gap: 1rem;
}

.blog-preview__cta {
  text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 5rem 1.5rem;
  background-color: var(--parchment);
}

.faq-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color var(--transition);
}

.faq-item__question:hover {
  background-color: rgba(45, 106, 45, 0.05);
}

.faq-item__question.is-open {
  background-color: var(--ninja-green);
  color: var(--slice-white);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item__question.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 1.5rem;
}

.faq-item__answer.is-open {
  max-height: 400px;
  padding: 1rem 1.5rem 1.25rem;
}

.faq-item__answer p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--ninja-green);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 4rem 1.5rem;
  background-color: var(--forest-dark);
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(58, 138, 58, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(90, 173, 90, 0.15) 0%, transparent 50%);
  text-align: center;
}

.cta-banner__title {
  color: var(--off-white);
  margin-bottom: 1rem;
}

.cta-banner__title span {
  color: var(--veggie-orange);
}

.cta-banner__desc {
  color: rgba(244, 240, 232, 0.75);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--shadow-black);
  padding: 3rem 1.5rem 1.5rem;
  border-top: 3px solid var(--ninja-green);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer__brand {}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--bamboo);
  display: block;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.site-footer__tagline {
  color: rgba(244, 240, 232, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.site-footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bamboo);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__col-list a {
  color: rgba(244, 240, 232, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.site-footer__col-list a:hover {
  color: var(--bamboo);
}

.site-footer__bottom {
  border-top: 1px solid rgba(143, 188, 90, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__copyright {
  color: rgba(244, 240, 232, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.site-footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal-links a {
  color: rgba(244, 240, 232, 0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.site-footer__legal-links a:hover {
  color: var(--bamboo);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background-color: var(--forest-dark);
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--ninja-green);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(45, 106, 45, 0.05) 20px,
      rgba(45, 106, 45, 0.05) 21px
    );
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bamboo);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  color: var(--off-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.4);
}

.page-hero__desc {
  color: rgba(244, 240, 232, 0.75);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.about-content__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content__body h2 {
  margin-bottom: 1rem;
  color: var(--forest-dark);
}

.about-content__body p {
  color: #555;
  line-height: 1.7;
}

.about-content__body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.about-content__body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: #555;
}

.about-content__body ul li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: var(--ninja-green);
  font-size: 0.8rem;
}

.about-info-card {
  background-color: var(--forest-dark);
  border: 3px solid var(--border-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-lg);
  padding: 2rem;
  color: var(--parchment);
}

.about-info-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bamboo);
  margin-bottom: 1.5rem;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-stat {
  background-color: rgba(143, 188, 90, 0.1);
  border: 1px solid rgba(143, 188, 90, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.about-stat__value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--veggie-yellow);
  display: block;
}

.about-stat__label {
  font-size: 0.8rem;
  color: rgba(244, 240, 232, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-info-card__desc {
  color: rgba(244, 240, 232, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== HOW TO PLAY PAGE ===== */
.how-to-play {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.how-to-play__inner {
  max-width: 900px;
  margin: 0 auto;
}

.htp-section {
  margin-bottom: 3.5rem;
}

.htp-section__title {
  font-size: 1.6rem;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--ninja-green);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.htp-section__title span {
  font-size: 1.4rem;
}

.htp-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.htp-step {
  display: flex;
  gap: 1.25rem;
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-brutal);
}

.htp-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--veggie-orange);
  color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 2px 2px 0px var(--border-ink);
}

.htp-step__title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--forest-dark);
}

.htp-step__desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.control-card {
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-brutal);
}

.control-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.control-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest-dark);
  margin-bottom: 0.35rem;
}

.control-card__desc {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-brutal);
}

.tip-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.tip-item__text {
  color: #555;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.htp-play-cta {
  text-align: center;
  background-color: var(--forest-dark);
  border: 3px solid var(--border-ink);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-brutal-lg);
  margin-top: 2rem;
}

.htp-play-cta__title {
  color: var(--off-white);
  margin-bottom: 1rem;
}

.htp-play-cta__desc {
  color: rgba(244, 240, 232, 0.75);
  margin-bottom: 2rem;
}

/* ===== BLOG PAGE ===== */
.blog-page {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.blog-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.article-page__inner {
  max-width: 860px;
  margin: 0 auto;
}

.article-page__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: #888;
}

.article-page__category {
  background-color: var(--ninja-green);
  color: var(--slice-white);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border-ink);
}

.article-page__thumb {
  height: 320px;
  background-color: var(--forest-dark);
  border: 3px solid var(--border-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-lg);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(58, 138, 58, 0.35) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 15px,
      rgba(143, 188, 90, 0.06) 15px,
      rgba(143, 188, 90, 0.06) 16px
    );
}

.article-page__content h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--forest-dark);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ninja-green);
}

.article-page__content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
}

.article-page__content p {
  color: #444;
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-page__content ul {
  margin-bottom: 1rem;
  padding-left: 0;
  list-style: none;
}

.article-page__content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}

.article-page__content ul li::before {
  content: '🍃';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.article-page__content .highlight-box {
  background-color: rgba(45, 106, 45, 0.08);
  border-left: 4px solid var(--ninja-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: #444;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ninja-green);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: gap var(--transition);
}

.article-back:hover {
  gap: 0.25rem;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.contact-page__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {}

.contact-info__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--forest-dark);
}

.contact-info__desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-brutal);
  margin-bottom: 0.75rem;
}

.contact-detail__icon {
  font-size: 1.5rem;
}

.contact-detail__text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

.contact-form {
  background-color: var(--slice-white);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-brutal-lg);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-ink);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-black);
  background-color: var(--parchment);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ninja-green);
  box-shadow: 3px 3px 0px var(--ninja-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  background-color: rgba(45, 106, 45, 0.1);
  border: 2px solid var(--ninja-green);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--forest-dark);
  font-weight: 700;
}

.form-error {
  background-color: rgba(214, 60, 42, 0.1);
  border: 2px solid var(--veggie-red);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--veggie-red);
  font-weight: 700;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.legal-page__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__content h2 {
  font-size: 1.4rem;
  color: var(--forest-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ninja-green);
}

.legal-page__content p {
  color: #555;
  line-height: 1.8;
}

.legal-page__content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.legal-page__content ul li {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.legal-page__content a {
  color: var(--ninja-green);
  font-weight: 600;
  text-decoration: underline;
}

.legal-page__updated {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 1.5rem;
  background-color: var(--parchment);
  border-bottom: 1px solid rgba(45, 106, 45, 0.15);
}

.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
}

.breadcrumb__item {
  color: #888;
}

.breadcrumb__item a {
  color: var(--ninja-green);
  font-weight: 600;
}

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

.breadcrumb__sep {
  color: #ccc;
  font-size: 0.75rem;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .features__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header__toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--forest-dark);
    border-bottom: 3px solid var(--ninja-green);
    padding: 1rem 1.5rem;
    z-index: 99;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__game-frame {
    max-width: 320px;
  }

  .how-to-preview__inner {
    grid-template-columns: 1fr;
  }

  .about-content__inner {
    grid-template-columns: 1fr;
  }

  .contact-page__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

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