/*
 * PROJECT: swot-roller
 * DOMAIN: swot-roller.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Archer/Forest (Green, Black, Arrow 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@400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --forest-dark:    #1a2e1a;
  --forest-mid:     #2d5a27;
  --forest-light:   #4a8c3f;
  --arrow-green:    #6abf5e;
  --leaf-bright:    #8fd17f;
  --bark-brown:     #5c3d1e;
  --bark-light:     #8b6340;
  --target-gold:    #d4a017;
  --target-cream:   #f5e9c8;
  --bowstring-tan:  #c8b07a;
  --black:          #0d1a0d;
  --off-white:      #f0f4ee;
  --text-dark:      #1a2e1a;
  --text-mid:       #3d5c38;
  --text-light:     #6a8f64;
  --shadow-color:   rgba(26, 46, 26, 0.35);

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

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

  --container-max: 1140px;
  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  1.5rem;
  --spacing-lg:  2.5rem;
  --spacing-xl:  4rem;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden !important; }
body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(106,191,94,0.07) 39px,
      rgba(106,191,94,0.07) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(106,191,94,0.07) 39px,
      rgba(106,191,94,0.07) 40px
    );
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── MANDATORY RULES ─── */
.article-card__overlay { position: absolute; inset: 0; z-index: 1; }
.article-card, .offer-card, .card { position: relative; }
.stars { color: #ffc107; }

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  background: var(--forest-dark);
  border-bottom: 4px solid var(--arrow-green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(0,0,0,0.4);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: var(--container-max);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--arrow-green);
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0 var(--black);
  transition: color 0.2s;
}
.logo span {
  color: var(--target-gold);
}
.logo:hover { color: var(--leaf-bright); }

/* Nav */
.site-nav__list {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}
.site-nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--target-cream);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.site-nav__link:hover,
.site-nav__link--active {
  background: var(--forest-mid);
  color: var(--arrow-green);
}
.site-nav__cta {
  background: var(--forest-light);
  color: #fff;
  border: 2px solid var(--arrow-green);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s;
}
.site-nav__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--black);
  color: #fff;
  background: var(--arrow-green);
}

/* Hamburger */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.site-header__hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--arrow-green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  background: var(--forest-dark);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(106,191,94,0.04) 0px,
      rgba(106,191,94,0.04) 2px,
      transparent 2px,
      transparent 20px
    );
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,140,63,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  background: var(--target-gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
  box-shadow: 2px 2px 0 var(--black);
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--spacing-sm);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}
.hero__title span { color: var(--arrow-green); }
.hero__description {
  font-size: 1.1rem;
  color: var(--bowstring-tan);
  margin-bottom: var(--spacing-lg);
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  align-items: center;
}
.hero__stats {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}
.hero__stat {
  text-align: center;
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--arrow-green);
  display: block;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--bowstring-tan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero image/game panel */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}
.hero__game-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: var(--black);
  border: 3px solid var(--arrow-green);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--forest-mid), 0 0 30px rgba(106,191,94,0.2);
  overflow: hidden;
  position: relative;
}
.hero__game-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,26,13,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero__game-overlay:hover {
  background: rgba(13,26,13,0.3);
}
.hero__play-icon {
  width: 64px;
  height: 64px;
  background: var(--arrow-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(106,191,94,0.3), 4px 4px 0 var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero__play-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(106,191,94,0.4), 4px 4px 0 var(--black);
}
.hero__play-icon svg {
  margin-left: 5px;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 3px solid var(--black);
  transition: transform 0.12s, box-shadow 0.12s;
  cursor: pointer;
  text-align: center;
}
.btn-play {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  background: var(--arrow-green);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: var(--radius-sm);
  box-shadow: 5px 5px 0 var(--black);
  transition: transform 0.12s, box-shadow 0.12s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-play:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--black);
  color: var(--black);
}
.btn-play:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}
.btn--outline {
  background: transparent;
  color: var(--off-white);
  border: 3px solid var(--bowstring-tan);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  transition: transform 0.12s, box-shadow 0.12s, background 0.2s;
}
.btn--outline:hover {
  background: var(--forest-mid);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.4);
  color: #fff;
}
.btn--primary {
  background: var(--forest-light);
  color: #fff;
  border-color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.btn--primary:hover {
  background: var(--arrow-green);
  color: var(--black);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}
.btn--gold {
  background: var(--target-gold);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.btn--gold:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section {
  padding: var(--spacing-xl) 0;
}
.section--dark {
  background: var(--forest-dark);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(106,191,94,0.03) 0px,
      rgba(106,191,94,0.03) 2px,
      transparent 2px,
      transparent 18px
    );
}
.section--mid {
  background: var(--forest-mid);
}
.section--cream {
  background: var(--target-cream);
}
.section--bark {
  background: var(--bark-brown);
  color: var(--target-cream);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--arrow-green);
  margin-bottom: var(--spacing-xs);
}
.section--dark .section__label,
.section--mid .section__label {
  color: var(--target-gold);
}
.section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  line-height: 1.2;
}
.section--dark .section__title,
.section--mid .section__title {
  color: #fff;
}
.section--bark .section__title {
  color: var(--target-cream);
}
.section__subtitle {
  margin-top: var(--spacing-xs);
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section__subtitle,
.section--mid .section__subtitle {
  color: var(--bowstring-tan);
}

/* ══════════════════════════════
   FEATURE CARDS
══════════════════════════════ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.feature-card {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-md);
  box-shadow: 5px 5px 0 var(--forest-light);
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--forest-light);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--forest-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
  border: 2px solid var(--arrow-green);
}
.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}
.feature-card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ══════════════════════════════
   HOW TO PLAY (STEPS)
══════════════════════════════ */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  counter-reset: step-counter;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--arrow-green);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
  position: relative;
}
.step-card__number {
  width: 44px;
  height: 44px;
  background: var(--arrow-green);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  box-shadow: 3px 3px 0 var(--black);
}
.step-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: var(--spacing-xs);
}
.step-card__text {
  font-size: 0.9rem;
  color: var(--bowstring-tan);
}

/* ══════════════════════════════
   ARTICLE CARDS
══════════════════════════════ */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.article-card {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--forest-mid);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.article-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--forest-mid);
}
.article-card__thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.article-card__thumbnail-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-mid) 100%);
}
.article-card__thumbnail-emoji {
  position: relative;
  z-index: 1;
}
.article-card__content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card__tag {
  display: inline-block;
  background: var(--target-cream);
  color: var(--forest-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--forest-light);
  margin-bottom: var(--spacing-xs);
  width: fit-content;
}
.article-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: var(--spacing-xs);
  flex: 1;
  position: relative;
  z-index: 2;
}
.article-card__meta {
  font-size: 0.82rem;
  color: var(--text-light);
  position: relative;
  z-index: 2;
  display: flex;
  gap: var(--spacing-sm);
}
.article-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.faq__item {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--forest-light);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
  transition: background 0.2s;
}
.faq__question:hover { background: var(--target-cream); }
.faq__question.is-open { background: var(--forest-dark); color: #fff; }
.faq__icon {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s;
}
.faq__question.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 var(--spacing-md);
}
.faq__answer.is-open {
  max-height: 300px;
  padding: var(--spacing-sm) var(--spacing-md);
}
.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ══════════════════════════════
   TIPS / HIGHLIGHT BOXES
══════════════════════════════ */
.tip-box {
  background: var(--target-cream);
  border-left: 5px solid var(--arrow-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--spacing-sm) var(--spacing-md);
  margin: var(--spacing-md) 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.tip-box strong { color: var(--forest-mid); }

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  background: var(--forest-dark);
  padding: var(--spacing-lg) 0;
  text-align: center;
  border-bottom: 4px solid var(--arrow-green);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  margin-bottom: var(--spacing-xs);
}
.page-hero__subtitle {
  font-size: 1.05rem;
  color: var(--bowstring-tan);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════
   CONTENT BODY (articles, about)
══════════════════════════════ */
.content-body {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}
.content-body h1, .content-body h2, .content-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}
.content-body h1 { font-size: 2rem; margin-top: 0; }
.content-body h2 { font-size: 1.5rem; border-left: 4px solid var(--arrow-green); padding-left: var(--spacing-sm); }
.content-body h3 { font-size: 1.15rem; color: var(--forest-mid); }
.content-body p { margin-bottom: var(--spacing-sm); color: var(--text-dark); line-height: 1.75; }
.content-body ul, .content-body ol {
  margin: var(--spacing-sm) 0;
  padding-left: var(--spacing-md);
}
.content-body ul { list-style: none; }
.content-body ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.content-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--arrow-green);
  font-weight: 700;
}
.content-body ol { list-style: decimal; }
.content-body ol li { margin-bottom: 0.5rem; color: var(--text-dark); }
.content-body strong { color: var(--forest-mid); }
.content-body a { color: var(--forest-light); text-decoration: underline; }
.content-body a:hover { color: var(--arrow-green); }

/* ══════════════════════════════
   CONTACT FORM
══════════════════════════════ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: 6px 6px 0 var(--forest-mid);
}
.form-group {
  margin-bottom: var(--spacing-md);
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--forest-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--arrow-green);
  box-shadow: 0 0 0 3px rgba(106,191,94,0.2);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form__success {
  display: none;
  text-align: center;
  padding: var(--spacing-md);
  background: var(--target-cream);
  border: 2px solid var(--arrow-green);
  border-radius: var(--radius-sm);
  color: var(--forest-mid);
  font-weight: 700;
  max-width: 600px;
  margin: var(--spacing-md) auto 0;
}

/* ══════════════════════════════
   BLOG LISTING
══════════════════════════════ */
.blog-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--forest-light);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--forest-light);
}
.blog-card__thumb {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card__body {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__tag {
  display: inline-block;
  background: var(--target-cream);
  color: var(--forest-mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  border: 1px solid var(--forest-light);
  margin-bottom: 0.5rem;
  width: fit-content;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: var(--spacing-xs);
  flex: 1;
  position: relative;
  z-index: 2;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 2;
}
.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  position: relative;
  z-index: 2;
  margin-bottom: var(--spacing-sm);
}
.blog-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--bowstring-tan);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  border-top: 4px solid var(--forest-dark);
}
.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.site-footer__brand .logo {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}
.site-footer__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--bowstring-tan);
  max-width: 300px;
}
.site-footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--arrow-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.site-footer__links a {
  font-size: 0.9rem;
  color: var(--bowstring-tan);
  transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--arrow-green); }
.site-footer__bottom {
  border-top: 1px solid rgba(106,191,94,0.2);
  padding-top: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ══════════════════════════════
   UTILITY
══════════════════════════════ */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.divider {
  border: none;
  border-top: 2px solid rgba(106,191,94,0.2);
  margin: var(--spacing-lg) 0;
}
.arrow-decor {
  display: inline-block;
  color: var(--arrow-green);
  font-weight: 700;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__description { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__game-frame { max-width: 340px; }

  .features__grid { grid-template-columns: 1fr 1fr; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .articles__grid { grid-template-columns: 1fr 1fr; }
  .blog-listing { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .site-header__hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--forest-dark);
    border-bottom: 3px solid var(--arrow-green);
    padding: var(--spacing-sm) var(--spacing-md);
    z-index: 200;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; gap: var(--spacing-xs); }
  .site-nav__link { display: block; padding: 0.5rem 0.75rem; }
  .site-header { position: relative; }

  .features__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .articles__grid { grid-template-columns: 1fr; }
  .hero__game-frame { max-width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: var(--spacing-md); }
}

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