/*
 * PROJECT: hollbowring.com
 * DOMAIN: hollbowring.com
 * GAME: Super Ninja Adventure (platformer)
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Stadium / LED-green on dark
 * - Effect: Neon Glow
 * - Fonts: Teko (headings) + Barlow Condensed (body)
 * - Buttons: Neon Border
 *
 * Created: January 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Barlow+Condensed:wght@300;400;500;600&display=swap');

:root {
  --bg-dark:       #1b1b2f;
  --bg-card:       #22223a;
  --bg-nav:        #141428;
  --led-green:     #39ff14;
  --led-green-dim: #1fad08;
  --neon-cyan:     #00f7ff;
  --neon-yellow:   #ffe600;
  --text-primary:  #e8e8f0;
  --text-muted:    #8888aa;
  --border-dim:    rgba(57, 255, 20, 0.25);
  --border-bright: rgba(57, 255, 20, 0.7);
  --font-heading:  'Teko', sans-serif;
  --font-body:     'Barlow Condensed', sans-serif;
  --radius:        6px;
  --transition:    0.25s ease;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden !important; }
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Typography helpers ──────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--led-green);
  text-shadow: 0 0 12px var(--led-green), 0 0 24px var(--led-green-dim);
  margin-bottom: 0.35em;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--text-primary);
  max-width: 680px;
}

/* ── Utility ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ── Neon divider ─────────────────────────────────────── */
.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--led-green), transparent);
  border: none;
  margin: 3rem 0;
  box-shadow: 0 0 8px var(--led-green);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.nav {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-dim);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--led-green);
  text-shadow: 0 0 10px var(--led-green);
  flex-shrink: 0;
}
.nav__menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__link:hover,
.nav__link--active {
  color: var(--led-green);
  text-shadow: 0 0 8px var(--led-green);
}
.nav__cta {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--led-green);
  border: 2px solid var(--led-green);
  padding: 0.35em 1.1em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 8px var(--border-dim);
}
.nav__cta:hover {
  background: var(--led-green);
  color: var(--bg-dark);
  box-shadow: 0 0 16px var(--led-green), 0 0 32px var(--led-green-dim);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  width: 26px;
  height: 2px;
  background: var(--led-green);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-dim);
    padding: 1rem 0;
  }
  .nav__menu.is-open { display: flex; }
  .nav__link, .nav__cta { padding: 0.75rem 1.5rem; width: 100%; }
  .nav__cta { border: none; text-align: left; }
}

/* ═══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(57,255,20,.08) 0%, transparent 70%),
              var(--bg-dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(57,255,20,.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(57,255,20,.04) 40px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
  margin-bottom: 0.75rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 20px rgba(57,255,20,.3);
  margin-bottom: 1rem;
}
.hero__title span {
  color: var(--led-green);
  text-shadow: 0 0 14px var(--led-green), 0 0 30px var(--led-green-dim);
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-play {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.55em 1.8em;
  background: var(--led-green);
  color: var(--bg-dark);
  border: 2px solid var(--led-green);
  border-radius: var(--radius);
  box-shadow: 0 0 16px var(--led-green), 0 0 32px var(--led-green-dim);
  transition: box-shadow var(--transition), background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-play:hover {
  background: #55ff3a;
  box-shadow: 0 0 28px var(--led-green), 0 0 56px var(--led-green-dim);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.55em 1.5em;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-outline:hover {
  border-color: var(--led-green);
  color: var(--led-green);
  box-shadow: 0 0 10px var(--border-dim);
}
.btn-green {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5em 1.5em;
  background: transparent;
  color: var(--led-green);
  border: 2px solid var(--led-green);
  border-radius: var(--radius);
  box-shadow: 0 0 8px var(--border-dim);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-green:hover {
  background: var(--led-green);
  color: var(--bg-dark);
  box-shadow: 0 0 18px var(--led-green);
}

/* Hero image */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__game-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border: 2px solid var(--border-bright);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(57,255,20,.25), 0 0 60px rgba(57,255,20,.1);
  overflow: hidden;
  background: var(--bg-card);
}
.hero__game-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.85;
}
.hero__game-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(27,27,47,.95) 0%, transparent 100%);
  padding: 1.5rem 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__game-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--led-green);
}
.hero__game-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 0.2em 0.6em;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

/* ═══════════════════════════════════════════════════════
   FEATURES / STATS STRIP
══════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--bg-nav);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 1.25rem 0;
}
.stats-strip__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stats-strip__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--led-green);
  text-shadow: 0 0 10px var(--led-green);
  line-height: 1;
}
.stats-strip__label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════════════ */
.features {
  padding: 5rem 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* Card BEM */
.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 20px rgba(57,255,20,.15);
}
.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--led-green);
  margin-bottom: 0.5rem;
}
.feature-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   GAME PREVIEW SECTION
══════════════════════════════════════════════════════ */
.game-preview {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(27,27,47,.6) 100%);
}
.game-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.game-preview__media {
  position: relative;
  border: 2px solid var(--border-bright);
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(57,255,20,.2);
  overflow: hidden;
  background: var(--bg-card);
}
.game-preview__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.8;
}
.game-preview__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,27,47,.55);
  transition: background var(--transition);
}
.game-preview__play-overlay:hover { background: rgba(27,27,47,.3); }
.game-preview__play-btn {
  width: 70px;
  height: 70px;
  background: var(--led-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--led-green), 0 0 48px var(--led-green-dim);
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-preview__play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 36px var(--led-green), 0 0 64px var(--led-green-dim);
}
.game-preview__play-btn svg {
  fill: var(--bg-dark);
  width: 28px;
  height: 28px;
  margin-left: 4px;
}
.game-preview__content {}
.game-preview__list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.game-preview__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-primary);
}
.game-preview__list li::before {
  content: '▶';
  color: var(--led-green);
  text-shadow: 0 0 6px var(--led-green);
  font-size: 0.7rem;
  margin-top: 0.35em;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .game-preview__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HOW TO PLAY SECTION (index)
══════════════════════════════════════════════════════ */
.how-it-works {
  padding: 5rem 0;
}
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}
.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
  counter-increment: steps;
}
.step-card:hover { border-color: var(--border-bright); }
.step-card__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border-dim);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(57,255,20,.2);
}
.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--led-green);
  margin-bottom: 0.5rem;
}
.step-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   ARTICLE CARDS
══════════════════════════════════════════════════════ */
.blog-preview { padding: 5rem 0; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.article-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 20px rgba(57,255,20,.12);
  transform: translateY(-3px);
}
.article-card__thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.75;
}
.article-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.article-card__tag {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid rgba(0,247,255,.35);
  padding: 0.2em 0.6em;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
.article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}
.article-card__date { color: var(--text-muted); }
.article-card__read {
  color: var(--led-green);
  font-weight: 600;
  letter-spacing: 1px;
}
.article-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq { padding: 5rem 0; }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.is-open { border-color: var(--border-bright); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq__item.is-open .faq__question { color: var(--led-green); }
.faq__icon {
  font-size: 1.4rem;
  color: var(--led-green);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq__item.is-open .faq__answer { display: block; }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════ */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(57,255,20,.07) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-dim);
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--led-green);
  text-shadow: 0 0 14px var(--led-green), 0 0 28px var(--led-green-dim);
  margin-bottom: 0.4em;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   HOW TO PLAY PAGE
══════════════════════════════════════════════════════ */
.htp-section { padding: 4rem 0; }
.htp-section + .htp-section { padding-top: 0; }
.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.control-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.control-card:hover { border-color: var(--border-bright); }
.control-card__key {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--led-green);
  box-shadow: 0 0 10px var(--led-green);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
  letter-spacing: 0;
}
.control-card__label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.control-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.tip-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.tip-card:hover { border-color: var(--border-bright); }
.tip-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-dim);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.tip-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--led-green);
  margin-bottom: 0.4rem;
}
.tip-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mechanics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.mechanic-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.mechanic-item:hover { border-color: var(--border-bright); }
.mechanic-item__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.mechanic-item__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.mechanic-item__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-section { padding: 4rem 0; }
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-section__visual {
  position: relative;
  border: 2px solid var(--border-bright);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(57,255,20,.2);
}
.about-section__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.8;
  display: block;
}
.about-section__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.team-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 16px rgba(57,255,20,.12);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--led-green), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-dark);
  box-shadow: 0 0 14px rgba(57,255,20,.4);
}
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--led-green);
}

@media (max-width: 768px) {
  .about-section__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════════ */
.blog-page { padding: 4rem 0; }

/* ═══════════════════════════════════════════════════════
   ARTICLE PAGE
══════════════════════════════════════════════════════ */
.article-layout {
  padding: 3rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.article-main {}
.article-header { margin-bottom: 2rem; }
.article-header__tag {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid rgba(0,247,255,.35);
  padding: 0.2em 0.6em;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 1rem;
}
.article-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.article-header__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-header__meta span { display: flex; align-items: center; gap: 0.35rem; }
.article-thumb {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-dim);
  margin-bottom: 2rem;
  opacity: 0.85;
}
.article-body {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.8;
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--led-green);
  text-shadow: 0 0 8px rgba(57,255,20,.4);
  margin: 2.5rem 0 0.75rem;
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  margin: 2rem 0 0.5rem;
}
.article-body p { margin-bottom: 1.25rem; }
.article-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.article-body ul li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}
.article-body ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--led-green);
  font-size: 0.65rem;
  top: 0.38em;
}
.article-body strong { color: var(--led-green); font-weight: 600; }
.article-body em { color: var(--neon-cyan); font-style: italic; }
.article-body blockquote {
  border-left: 3px solid var(--led-green);
  padding: 0.75rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Sidebar */
.article-sidebar {}
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--led-green);
  text-shadow: 0 0 6px rgba(57,255,20,.4);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-dim);
}
.sidebar-play-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--led-green);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 0 14px var(--led-green);
  transition: box-shadow var(--transition), transform var(--transition);
}
.sidebar-play-btn:hover {
  box-shadow: 0 0 24px var(--led-green), 0 0 48px var(--led-green-dim);
  transform: translateY(-2px);
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sidebar-links a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--transition);
  line-height: 1.35;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--led-green); }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sidebar-tags a {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-dim);
  padding: 0.25em 0.65em;
  border-radius: 3px;
  transition: border-color var(--transition), color var(--transition);
}
.sidebar-tags a:hover { border-color: var(--led-green); color: var(--led-green); }

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar { order: -1; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-section { padding: 4rem 0; }
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {}
.contact-info__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--led-green);
  margin-bottom: 0.15rem;
}
.contact-detail__value {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--border-bright);
  box-shadow: 0 0 10px rgba(57,255,20,.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-msg {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: none;
}
.form-msg--success {
  background: rgba(57,255,20,.1);
  border: 1px solid var(--led-green);
  color: var(--led-green);
  display: block;
}
.form-msg--error {
  background: rgba(255,50,50,.1);
  border: 1px solid #ff3232;
  color: #ff3232;
  display: block;
}

@media (max-width: 768px) {
  .contact-section__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PRIVACY / TERMS PAGE
══════════════════════════════════════════════════════ */
.legal-section { padding: 4rem 0; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--led-green);
  margin: 2.5rem 0 0.75rem;
}
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  margin: 1.75rem 0 0.5rem;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul {
  list-style: none;
  margin: 0.75rem 0 1.25rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-content ul li {
  padding-left: 1.5rem;
  position: relative;
}
.legal-content ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--led-green);
  font-size: 0.65rem;
  top: 0.38em;
}
.legal-content strong { color: var(--text-primary); }
.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dim);
}

/* ═══════════════════════════════════════════════════════
   COOKIE CONSENT
══════════════════════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-nav);
  border-top: 1px solid var(--border-bright);
  box-shadow: 0 -4px 24px rgba(57,255,20,.15);
  padding: 1rem 0;
}
.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-consent__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 250px;
}
.cookie-consent__text a {
  color: var(--led-green);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border-dim);
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--led-green);
  text-shadow: 0 0 10px var(--led-green);
  display: block;
  margin-bottom: 0.75rem;
}
.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 320px;
}
.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--led-green); }
.footer__bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer__disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
  max-width: 500px;
  text-align: right;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__disclaimer { text-align: left; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}