/* ============================================================
   DARKFLAME STUDIO — styles.css
   Single source of truth for all styles across all pages.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --purple-primary:  #7B2BE2;
  --purple-light:    #9B4EFF;
  --purple-dark:     #4A1580;
  --bg-void:         #08080E;
  --bg-deep:         #0D0C14;
  --bg-card:         #13111F;
  --bg-card-hover:   #1A1830;
  --bg-input:        #1C1A2C;
  --border-subtle:   rgba(123,43,226,0.2);
  --border-glow:     rgba(123,43,226,0.6);
  --text-primary:    #F0EDF8;
  --text-secondary:  #A89EC0;
  --text-muted:      #665E80;
  --gold:            #D4A843;
  --gold-light:      #E8C870;
  --green-accent:    #27AE60;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --glow-purple: 0 0 30px rgba(123,43,226,0.4);
  --glow-gold:   0 0 20px rgba(212,168,67,0.3);
  /* Robust font stacks — Palatino is the fallback when Google Fonts are blocked (e.g. Brave) */
  --font-heading:    'Cinzel Decorative', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-subheading: 'Cinzel', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-body:       'Crimson Pro', Georgia, 'Times New Roman', serif;
  --nav-height: 72px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); background: var(--bg-void); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; min-height: 100vh; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }
ul    { list-style: none; }
::-moz-selection { background: var(--purple-primary); color: #fff; }
::selection       { background: var(--purple-primary); color: #fff; }
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-primary); }

/* Noise dot-pattern overlay — pure CSS, no SVG filter, never blocks content */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
h1,h2,h3 { font-family: var(--font-heading);    line-height: 1.15; letter-spacing: 0.03em; color: var(--text-primary); }
h4,h5,h6 { font-family: var(--font-subheading); letter-spacing: 0.05em; color: var(--text-primary); }

.section-label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
}

/* Gradient text — always declare `color` first as the solid fallback.
   If -webkit-background-clip:text fails the text is still visible.        */
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* Hard fallback for browsers that don't support gradient-clip */
@supports not (-webkit-background-clip: text) {
  .section-title,
  .page-hero h1,
  .hero-title-main,
  .hero-title-sub,
  .stat-item-num,
  .ea-callout h2,
  .origin-stat-num,
  .wishlist-text h2 {
    background: none !important;
    -webkit-text-fill-color: unset !important;
    color: var(--text-primary) !important;
  }
}

.section-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; font-weight: 300; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(8,8,14,0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter:         blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(8,8,14,0.98); border-bottom-color: var(--border-glow); box-shadow: 0 4px 40px rgba(0,0,0,0.6); }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; margin-right: auto; }
.nav-logo-icon { width: 163px; height: 38px; flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-primary); letter-spacing: 0.05em; }

.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  transition: color var(--transition); position: relative;
}
.nav-link::after { content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%; height: 1px; background: var(--purple-light); transition: left var(--transition), right var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { left: 1rem; right: 1rem; }

.nav-cta {
  font-family: var(--font-subheading); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-primary); background: var(--purple-primary); padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm); margin-left: 1rem; border: 1px solid var(--purple-light);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--purple-light); box-shadow: var(--glow-purple); transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-subheading); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: var(--radius-sm); transition: all var(--transition);
  position: relative; overflow: hidden; cursor: pointer;
  color: var(--text-primary); -webkit-text-fill-color: currentColor;
}
.btn::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.06); opacity: 0; transition: opacity var(--transition); }
.btn:hover::before { opacity: 1; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-lg  { padding: 1.1rem 2.5rem; font-size: 0.95rem; }
.btn-sm  { padding: 0.6rem 1.25rem; font-size: 0.75rem; }

.btn-primary { background: var(--purple-primary); border: 1px solid var(--purple-light); box-shadow: 0 4px 20px rgba(123,43,226,0.3); }
.btn-primary:hover { background: var(--purple-light); box-shadow: var(--glow-purple), 0 8px 30px rgba(123,43,226,0.5); transform: translateY(-2px); }

.btn-outline { background: transparent; border: 1px solid var(--border-glow); }
.btn-outline:hover { border-color: var(--purple-light); box-shadow: var(--glow-purple); transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #08080E; -webkit-text-fill-color: #08080E;
  border: none; font-weight: 700; box-shadow: var(--glow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(212,168,67,0.6); }

.btn-steam { background: #1B2838; color: #c7d5e0; -webkit-text-fill-color: #c7d5e0; border: 1px solid #c7d5e0; }
.btn-steam:hover { background: #2a475e; box-shadow: 0 4px 20px rgba(199,213,224,0.2); transform: translateY(-2px); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section     { padding: 7rem 0; position: relative; }
.section-header { margin-bottom: 4rem; }
.glow-line   { height: 1px; background: linear-gradient(90deg, transparent 0%, var(--purple-primary) 50%, transparent 100%); }

.rune-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.rune-divider::before, .rune-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border-glow), transparent); }
.rune-divider-icon { color: var(--purple-light); font-size: 1.2rem; }

/* ============================================================
   COMPONENTS
   ============================================================ */
.card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 2rem; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-purple); }

.tag { display: inline-block; font-family: var(--font-subheading); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 20px; border: 1px solid; }
.tag-purple { color: var(--purple-light); border-color: rgba(155,78,255,0.4); background: rgba(123,43,226,0.1); }
.tag-gold   { color: var(--gold-light);   border-color: rgba(212,168,67,0.4);  background: rgba(212,168,67,0.08); }

.icon-circle { width: 56px; height: 56px; border-radius: 50%; background: rgba(123,43,226,0.15); border: 1px solid var(--border-glow); display: flex; align-items: center; justify-content: center; color: var(--purple-light); flex-shrink: 0; }
.icon-circle svg { width: 24px; height: 24px; }

.particles-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

/* ============================================================
   SCROLL REVEAL — Progressive Enhancement
   CRITICAL FIX: Elements are VISIBLE by default (no opacity:0 in CSS).
   The JS adds class "js-animations" to <html> BEFORE setting up observers.
   Only then does CSS hide elements. If JS fails or is blocked, all
   content remains visible — never a blank page.
   ============================================================ */
.html-js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.html-js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
.html-js-ready .reveal-delay-1 { transition-delay: 0.1s; }
.html-js-ready .reveal-delay-2 { transition-delay: 0.2s; }
.html-js-ready .reveal-delay-3 { transition-delay: 0.3s; }
.html-js-ready .reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: calc(var(--nav-height) + 4rem) 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse at center top, rgba(107,30,212,0.3) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem; line-height: 1.1;
}
.page-hero p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-weight: 300; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border-subtle); padding: 2.5rem 0 0; }

/* 4 equal columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

/* Col 1: logo centred, socials centred beneath */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo-icon {
  display: block;
  height: 140px;
  width: auto;
  object-fit: contain;
}
.footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.footer-social-btn { width: 34px; height: 34px; border-radius: var(--radius-sm); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all var(--transition); }
.footer-social-btn:hover { border-color: var(--purple-light); color: var(--purple-light); background: rgba(123,43,226,0.1); box-shadow: var(--glow-purple); }
.footer-social-btn svg { width: 15px; height: 15px; }

/* Cols 2-4: nav links */
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a  { font-size: 0.875rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-col a:hover { color: var(--purple-light); }

/* Bottom bar: copyright left, steam widget right */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.875rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-logo-icon { height: 116px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; align-items: center; }
  .footer-logo-icon { height: 56px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steam-widget { width: 100%; min-width: 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; align-items: center; }
}

/* Steam widget */
.steam-widget { background: #1B2838; border: 1px solid #2a475e; border-radius: var(--radius-sm); padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; min-width: 280px; }
.steam-widget-icon { color: #c7d5e0; flex-shrink: 0; }
.steam-widget-icon svg { width: 32px; height: 32px; display: block; }
.steam-widget-info { flex: 1; min-width: 0; }
.steam-widget-game { font-family: var(--font-subheading); font-size: 0.85rem; color: #c7d5e0; font-weight: 600; letter-spacing: 0.05em; }
.steam-widget-status { font-size: 0.75rem; color: #8f9ba7; margin-top: 0.1rem; }
.steam-widget-btn { background: #5F9FCE; color: #fff; -webkit-text-fill-color: #fff; font-family: var(--font-subheading); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1rem; border-radius: 2px; transition: background var(--transition); white-space: nowrap; display: inline-block; }
.steam-widget-btn:hover { background: #7ab8e8; }

/* ============================================================
   INDEX — HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
/* ---- Hero video background ---- */
.hero-video-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  overflow: hidden;
}

/* object-fit:cover fills the hero at any aspect ratio, cropping edges */
.hero-video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}

/* Gradient fallback shown when video fails to load or isn't provided */
.hero-video-fallback {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107,30,212,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.15) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

/* Slightly dimmer on mobile to keep text readable on small screens */
@media (max-width: 768px) {
  .hero-video-wrap video { opacity: 0.3; }
}

/* Respect reduced-motion user preference */
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap video { display: none; }
}
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(8,8,14,0.85) 0%, rgba(8,8,14,0.5) 50%, rgba(8,8,14,0.2) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: calc(var(--nav-height) + 3rem) 0 5rem; max-width: 680px; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-subheading); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(212,168,67,0.4); background: rgba(212,168,67,0.07); padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1.75rem; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.6;transform:scale(0.7)} }

.hero-title { font-size: clamp(3rem,7vw,5.5rem); line-height: 1.05; margin-bottom: 0.5rem; }
.hero-title-main {
  display: block; color: var(--text-primary);
  background: linear-gradient(135deg, #fff 0%, var(--text-primary) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title-sub {
  display: block; color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #F0EDF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-studio { font-family: var(--font-subheading); font-size: 0.9rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 1.75rem; }

/* ---- Game logo in hero ---- */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero-logo {
  display: block;
  width: 100%;
  max-width: 380px;
  max-height: 380px;
  height: auto;
  object-fit: contain;
}
.hero-pitch { font-size: 1.2rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; margin-bottom: 2.5rem; max-width: 560px; }
.hero-pitch strong { color: var(--text-primary); font-weight: 400; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 3rem; }

.hero-scroll-hint { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-subheading); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; animation: float-hint 2.5s ease-in-out infinite; white-space: nowrap; }
.hero-scroll-hint::before { content: ''; width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--purple-light)); }
@keyframes float-hint { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(-6px)} }

/* ---- Stats strip ---- */
.stats-strip { background: var(--bg-deep); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 2rem 0; }
.stats-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-item-num {
  font-family: var(--font-heading); font-size: 2rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-item-num span { font-size: 0.9em; }
.stat-item-label { font-family: var(--font-subheading); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }

/* ---- Features teaser (index) ---- */
.features-teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-teaser-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 2rem; transition: all var(--transition); position: relative; overflow: hidden; }
.feature-teaser-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--purple-primary), transparent); opacity: 0; transition: opacity var(--transition); }
.feature-teaser-card:hover::before { opacity: 1; }
.feature-teaser-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-purple); }
.feature-icon  { font-size: 2rem; margin-bottom: 1rem; }
.feature-title { font-family: var(--font-subheading); font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--text-primary); }
.feature-desc  { font-size: 0.95rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; }

/* ---- Lore pitch block ---- */
.section-lore {
  max-width: 780px;
  margin-bottom: 3rem;
}
.lore-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.lore-body.lore-warning {
  color: var(--text-secondary);
  border-left: 2px solid var(--purple-primary);
  padding-left: 1.25rem;
  font-style: italic;
}
.lore-tagline {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  margin-top: 1.5rem;
  line-height: 1.6;
}
/* Closing "Descend. Die. Rise Again." */
.lore-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.lore-cta-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Trailer ---- */
.trailer-section { background: var(--bg-deep); }
.trailer-wrap { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: 0 30px 80px rgba(0,0,0,0.7), var(--glow-purple); }
/* iframe fills the wrapper completely — no hardcoded width/height needed */
.trailer-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.trailer-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-card) 0%, #1a1030 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
.trailer-play-btn { width: 80px; height: 80px; border-radius: 50%; background: rgba(123,43,226,0.3); border: 2px solid var(--purple-light); display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; transition: all var(--transition); }
.trailer-play-btn:hover { background: rgba(123,43,226,0.7); box-shadow: var(--glow-purple); transform: scale(1.1); }
.trailer-play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.trailer-label { font-family: var(--font-subheading); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); }

/* ---- EA callout ---- */
.ea-callout { background: linear-gradient(135deg, rgba(107,30,212,0.2) 0%, rgba(212,168,67,0.08) 100%); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: 3rem; text-align: center; position: relative; overflow: hidden; }
.ea-callout::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(107,30,212,0.15) 0%, transparent 70%); }
.ea-callout > * { position: relative; z-index: 1; }
.ea-callout h2 {
  font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom: 1rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ea-callout p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; font-weight: 300; }
.ea-callout-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   GAME PAGE
   ============================================================ */

/* ---- Game Hero ---- */
.game-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Reuse the shared hero-video-wrap from index — video fills the hero */
.game-hero .hero-video-wrap { z-index: 1; }
.game-hero .hero-video-wrap video { opacity: 0.35; }

/* Fallback gradient — shown when no video file exists yet */
.game-hero-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107,30,212,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, rgba(107,30,212,0.2) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}
.game-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(8,8,14,0.6) 0%, rgba(8,8,14,0.2) 100%);
  z-index: 3;
}
.game-hero-content {
  position: relative;
  z-index: 4;
  padding: calc(var(--nav-height) + 4rem) 0 5rem;
  max-width: 720px;
}
.game-hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.game-hero-title-gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.game-hero-pitch {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.game-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---- Four pillars strip ---- */
.game-pillars {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
}
.game-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.game-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.game-pillar:hover {
  border-color: var(--border-subtle);
  background: var(--bg-card);
}
.game-pillar-icon  { font-size: 2rem; line-height: 1; }
.game-pillar-label { font-family: var(--font-subheading); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }

/* ---- Lore section with game loop ---- */
.game-lore-section { background: var(--bg-deep); }
.game-lore-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.game-lore-text .lore-body { font-size: 1rem; }

/* ---- Game loop diagram ---- */
.game-loop-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.game-loop-title {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.game-loop {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.5rem 0.75rem;
  align-items: center;
  width: 100%;
}
.loop-node {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--transition);
}
.loop-node:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-purple);
  transform: translateY(-3px);
}
.loop-node-1 { grid-column: 1; grid-row: 1; }
.loop-node-2 { grid-column: 3; grid-row: 1; }
.loop-node-3 { grid-column: 3; grid-row: 3; }
.loop-node-4 { grid-column: 1; grid-row: 3; }
.loop-node-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.loop-node-name { font-family: var(--font-subheading); font-size: 0.82rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.loop-node-sub  { font-size: 0.75rem; color: var(--text-muted); }

.loop-arrow {
  font-size: 1.5rem;
  color: var(--purple-light);
  text-align: center;
  font-weight: 300;
  line-height: 1;
  opacity: 0.7;
}
.loop-arrow:not(.loop-arrow-break):not(.loop-arrow-left) { grid-column: 2; grid-row: 1; }
.loop-arrow-break { grid-column: 3; grid-row: 2; }
.loop-arrow-left  { grid-column: 2; grid-row: 3; }

/* ---- Feature Spotlights ---- */
.feature-spotlight {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.feature-spotlight:last-of-type { border-bottom: none; }
.feature-spotlight:hover { background: rgba(123,43,226,0.03); }

.feature-spotlight-flip {
  grid-template-columns: 1fr 160px;
}
.feature-spotlight-flip .feature-spotlight-visual { order: 2; }
.feature-spotlight-flip .feature-spotlight-text   { order: 1; }

.feature-spotlight-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-spotlight:hover .feature-spotlight-visual {
  border-color: var(--border-glow);
  box-shadow: var(--glow-purple);
}
.feature-spotlight-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.6;
}
.fs-danger::before  { background: radial-gradient(ellipse at center, rgba(192,57,43,0.4) 0%, transparent 70%); }
.fs-team::before    { background: radial-gradient(ellipse at center, rgba(107,30,212,0.4) 0%, transparent 70%); }
.fs-village::before { background: radial-gradient(ellipse at center, rgba(39,174,96,0.3) 0%, transparent 70%); }
.fs-dungeon::before { background: radial-gradient(ellipse at center, rgba(20,40,80,0.6) 0%, transparent 70%); }
.fs-build::before   { background: radial-gradient(ellipse at center, rgba(212,168,67,0.3) 0%, transparent 70%); }
.fs-villagers::before { background: radial-gradient(ellipse at center, rgba(107,30,212,0.5) 0%, transparent 70%); }

.fs-big-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
}
.fs-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.feature-spotlight-text h3 {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.feature-spotlight-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
}

/* ---- Full-width closer feature ---- */
.feature-closer {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(107,30,212,0.1) 0%, rgba(212,168,67,0.05) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.feature-closer:hover { box-shadow: var(--glow-purple); }
.feature-closer-icon { font-size: 3.5rem; flex-shrink: 0; line-height: 1; }
.feature-closer-content h3 { font-family: var(--font-subheading); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); letter-spacing: 0.04em; margin-bottom: 0.75rem; }
.feature-closer-content p  { font-size: 1rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; }

/* ---- Responsive additions ---- */
@media (max-width: 1024px) {
  .game-lore-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .game-pillars-grid { grid-template-columns: repeat(2,1fr); }
  .feature-spotlight, .feature-spotlight-flip { grid-template-columns: 120px 1fr; gap: 1.5rem; }
  .feature-spotlight-flip .feature-spotlight-visual { order: 2; }
  .feature-spotlight-flip .feature-spotlight-text   { order: 1; }
}
@media (max-width: 768px) {
  .game-hero-content { padding: calc(var(--nav-height) + 2rem) 0 4rem; max-width: 100%; }
  .game-hero-title   { font-size: clamp(2.5rem, 8vw, 4rem); }
  .game-hero-ctas    { flex-direction: column; align-items: stretch; }
  .game-hero-ctas .btn { justify-content: center; }
  .game-pillars-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .feature-spotlight, .feature-spotlight-flip { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-spotlight-flip .feature-spotlight-visual { order: 1; }
  .feature-spotlight-flip .feature-spotlight-text   { order: 2; }
  .feature-spotlight-visual { aspect-ratio: 2/1; max-height: 180px; }
  .game-loop { grid-template-columns: 1fr auto 1fr; }
  .feature-closer { flex-direction: column; text-align: center; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .game-pillars-grid { grid-template-columns: 1fr 1fr; }
  .game-loop { grid-template-columns: 1fr 1.5rem 1fr; font-size: 0.85rem; }
  .loop-node { padding: 0.75rem 0.5rem; }
  .loop-node-icon { font-size: 1.25rem; }
}
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; transition: all var(--transition); }
.feature-card:hover { border-color: var(--border-glow); background: var(--bg-card-hover); transform: translateX(4px); box-shadow: -4px 0 30px rgba(123,43,226,0.2); }
.feature-card-content h4 { font-size: 1rem; color: var(--text-primary); margin-bottom: 0.5rem; letter-spacing: 0.06em; }
.feature-card-content p { font-size: 0.95rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; }

/* Roadmap */
.roadmap-section { background: var(--bg-deep); }
.roadmap-track { position: relative; padding: 2rem 0; }
.roadmap-track::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent, var(--purple-primary) 20%, var(--purple-primary) 80%, transparent); transform: translateX(-50%); }
.roadmap-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; margin-bottom: 4rem; }
.roadmap-item:last-child { margin-bottom: 0; }
.roadmap-content { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 1.75rem; transition: all var(--transition); }
.roadmap-content:hover { border-color: var(--border-glow); box-shadow: var(--glow-purple); }
.roadmap-item.right .roadmap-content:first-child,
.roadmap-item.left  .roadmap-content:last-child  { opacity: 0; pointer-events: none; }
.roadmap-node { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-void); border: 2px solid var(--purple-primary); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; flex-shrink: 0; }
.roadmap-node.done    { background: rgba(123,43,226,0.3); border-color: var(--purple-light); box-shadow: var(--glow-purple); }
.roadmap-node.current { background: rgba(212,168,67,0.2); border-color: var(--gold); box-shadow: var(--glow-gold); animation: pulse-node 2.5s ease-in-out infinite; }
@keyframes pulse-node { 0%,100%{box-shadow:0 0 10px rgba(212,168,67,0.4)}50%{box-shadow:0 0 30px rgba(212,168,67,0.8)} }
.roadmap-node svg { width: 20px; height: 20px; }
.roadmap-quarter { font-family: var(--font-subheading); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.5rem; }
.roadmap-quarter.done { color: var(--purple-light); }
.roadmap-quarter.current { color: var(--gold); }
.roadmap-quarter.upcoming { color: var(--text-muted); }
.roadmap-milestone { font-family: var(--font-subheading); font-size: 1.1rem; color: var(--text-primary); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 1rem; }
.roadmap-features { display: flex; flex-direction: column; gap: 0.4rem; }
.roadmap-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-secondary); }
.roadmap-feature-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.roadmap-feature-dot.done    { background: var(--purple-light); }
.roadmap-feature-dot.partial { background: var(--gold); }
.roadmap-feature-dot.planned { background: var(--text-muted); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; border: 1px solid var(--border-subtle); transition: all var(--transition); }
.gallery-item:hover { border-color: var(--border-glow); box-shadow: var(--glow-purple); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-subheading); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); background: var(--bg-card); position: relative; overflow: hidden; }
.gallery-placeholder::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.gallery-placeholder-1::before { background: linear-gradient(135deg, rgba(107,30,212,0.3) 0%, transparent 60%), radial-gradient(circle at 70% 30%, rgba(212,168,67,0.15) 0%, transparent 50%); }
.gallery-placeholder-2::before { background: linear-gradient(135deg, rgba(139,0,0,0.3) 0%, transparent 70%); }
.gallery-placeholder-3::before { background: linear-gradient(135deg, rgba(20,60,120,0.3) 0%, transparent 70%); }
.gallery-placeholder-4::before { background: linear-gradient(135deg, rgba(60,0,80,0.3) 0%, transparent 70%); }
.gallery-placeholder-5::before { background: linear-gradient(135deg, rgba(0,80,60,0.3) 0%, transparent 70%); }
.gallery-placeholder-6::before { background: linear-gradient(135deg, rgba(80,40,0,0.3) 0%, transparent 70%); }
.gallery-item-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.4); }
.gallery-zoom-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(123,43,226,0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.7); transition: all var(--transition); color: #fff; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }
.gallery-zoom-icon svg { width: 20px; height: 20px; }
.gallery-item-video .gallery-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; background: rgba(123,43,226,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all var(--transition); pointer-events: none; border: 2px solid var(--purple-light); }
.gallery-item-video:hover .gallery-play { background: rgba(123,43,226,0.95); box-shadow: var(--glow-purple); }
.gallery-item-video .gallery-play svg { width: 22px; height: 22px; margin-left: 4px; }

/* Wishlist */
.wishlist-section { background: linear-gradient(135deg, rgba(27,40,56,0.8) 0%, rgba(8,8,14,0.9) 100%); border-top: 1px solid rgba(199,213,224,0.1); border-bottom: 1px solid rgba(199,213,224,0.1); }
.wishlist-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.wishlist-text h2 {
  font-size: clamp(1.8rem,3vw,2.5rem); color: var(--text-primary); margin-bottom: 1rem;
  background: linear-gradient(135deg, #c7d5e0, #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wishlist-text p { font-size: 1.05rem; color: #8f9ba7; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.wishlist-embed { background: #1B2838; border: 1px solid #2a475e; border-radius: var(--radius-md); padding: 2rem; }
.steam-game-header { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.steam-game-art { width: 100px; height: 60px; background: linear-gradient(135deg,#2a3a4a,#1a2a38); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.steam-game-info h3 { font-family: var(--font-subheading); font-size: 0.95rem; color: #c7d5e0; margin-bottom: 0.3rem; letter-spacing: 0.04em; }
.steam-game-info p  { font-size: 0.8rem; color: #8f9ba7; margin: 0; }
.steam-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.steam-tag  { font-size: 0.7rem; color: #8f9ba7; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 0.2rem 0.6rem; border-radius: 2px; }
.steam-actions { display: flex; gap: 0.75rem; }
.steam-btn { flex: 1; padding: 0.65rem 1rem; border-radius: 2px; font-family: var(--font-subheading); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; cursor: pointer; transition: all var(--transition); }
.steam-btn-wishlist { background: linear-gradient(135deg,#5f9fce,#4a86b0); color: #fff; -webkit-text-fill-color: #fff; border: none; }
.steam-btn-wishlist:hover { background: linear-gradient(135deg,#7ab8e8,#5f9fce); }
.steam-btn-follow { background: transparent; color: #8f9ba7; border: 1px solid rgba(255,255,255,0.15); -webkit-text-fill-color: #8f9ba7; }
.steam-btn-follow:hover { border-color: #c7d5e0; color: #c7d5e0; -webkit-text-fill-color: #c7d5e0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.origin-section { background: var(--bg-deep); }
.origin-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.origin-inner > * { min-width: 0; }
.origin-text p { font-size: 1.1rem; color: var(--text-secondary); font-weight: 300; line-height: 1.8; margin-bottom: 1.25rem; overflow-wrap: break-word; word-break: break-word; }
.origin-text strong { color: var(--text-primary); font-weight: 400; }
.origin-text blockquote { border-left: 2px solid var(--purple-primary); padding-left: 1.5rem; font-family: var(--font-subheading); font-size: 1rem; color: var(--purple-light); font-style: italic; margin: 1.5rem 0; letter-spacing: 0.02em; }
.origin-rune-art { aspect-ratio: 1/1; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.origin-rune-art::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(107,30,212,0.2) 0%, transparent 70%); }
.origin-rune-symbol { font-size: 8rem; position: relative; z-index: 1; opacity: 0.7; animation: rune-float 4s ease-in-out infinite; }
@keyframes rune-float { 0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-12px) rotate(3deg)} }
.origin-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.origin-stat { text-align: center; padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
.origin-stat-num {
  font-family: var(--font-heading); font-size: 1.8rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.origin-stat-label { font-family: var(--font-subheading); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); text-align: center; transition: all var(--transition); }
.value-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--glow-purple); }
.value-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.value-emoji img {
  display: block;
  width: auto;
  height: 160px;
  max-width: 100%;
  object-fit: contain;
}
.value-title { font-family: var(--font-subheading); font-size: 1rem; color: var(--text-primary); letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.value-desc  { font-size: 0.9rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; }

.team-section { background: var(--bg-deep); }
.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; }
.team-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.team-card:hover { border-color: var(--border-glow); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-purple); }
.team-card-portrait { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--bg-deep), var(--bg-card)); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.team-card-portrait::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.team-card-portrait-1::before { background: radial-gradient(ellipse at 40% 40%, rgba(107,30,212,0.4), transparent 70%); }
.team-card-portrait-2::before { background: radial-gradient(ellipse at 60% 40%, rgba(212,168,67,0.3), transparent 70%); }
.team-card-portrait-3::before { background: radial-gradient(ellipse at 40% 60%, rgba(192,57,43,0.3), transparent 70%); }
.team-card-portrait-4::before { background: radial-gradient(ellipse at 50% 30%, rgba(39,174,96,0.3), transparent 70%); }
.team-card-portrait-5::before { background: radial-gradient(ellipse at 60% 60%, rgba(20,100,200,0.3), transparent 70%); }
.team-card-photo-note { position: absolute; bottom: 0.5rem; left: 0; right: 0; text-align: center; font-family: var(--font-subheading); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.team-card-body { padding: 1.25rem; }
.team-card-name { font-family: var(--font-subheading); font-size: 0.9rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.team-card-role { font-family: var(--font-subheading); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 0.75rem; }
.team-card-bio  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; font-weight: 300; margin-bottom: 1rem; }
.team-card-facts { display: flex; flex-direction: column; gap: 0.4rem; border-top: 1px solid var(--border-subtle); padding-top: 0.75rem; }
.team-fact { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.78rem; color: var(--text-muted); }
.team-fact-icon { flex-shrink: 0; font-size: 0.85rem; }
.team-fact-text strong { color: var(--text-secondary); font-weight: 400; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
/* ---- Blog layout — full width, no sidebar ---- */
.blog-section { padding-top: 3rem; }
.blog-load-more { text-align: center; margin-top: 3rem; }

/* Post grid — 2 columns after the featured post */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: all var(--transition);
}
.post-card:hover { border-color: var(--border-glow); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(123,43,226,0.15); }
.post-featured { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; transition: all var(--transition); }
.post-featured:hover { border-color: var(--border-glow); box-shadow: var(--glow-purple); }
.post-featured-thumb { aspect-ratio: 21/9; background: linear-gradient(135deg, rgba(107,30,212,0.3) 0%, rgba(212,168,67,0.1) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.post-featured-thumb::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 30% 50%, rgba(107,30,212,0.4), transparent 60%); }
.post-featured-thumb-icon  { font-size: 5rem; position: relative; z-index: 1; opacity: 0.6; }
.post-featured-thumb-label { position: absolute; bottom: 0; right: 0; background: var(--bg-void); font-family: var(--font-subheading); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); padding: 0.4rem 0.8rem; border-top-left-radius: var(--radius-sm); }
.post-featured-body { padding: 2rem; }
.post-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.post-author { display: flex; align-items: center; gap: 0.5rem; }
.post-author-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--purple-dark); border: 1px solid var(--purple-primary); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.post-author-name { font-family: var(--font-subheading); font-size: 0.78rem; color: var(--text-secondary); letter-spacing: 0.05em; }
.post-date { font-family: var(--font-subheading); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; }
.post-featured-title { font-family: var(--font-subheading); font-size: 1.6rem; font-weight: 700; color: var(--text-primary); letter-spacing: 0.03em; margin-bottom: 0.75rem; line-height: 1.3; }
.post-featured-title a:hover { color: var(--purple-light); }
.post-excerpt { font-size: 1rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.post-read-more { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-subheading); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-light); transition: gap var(--transition), color var(--transition); }
.post-read-more:hover { gap: 0.8rem; color: var(--text-primary); }
.post-read-more svg { width: 16px; height: 16px; }
/* ---- Community banner ---- */
.blog-community-section { background: var(--bg-deep); }
.blog-community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.blog-community-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.blog-social-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--transition);
  color: var(--text-secondary);
}
.blog-social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.blog-social-icon { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.blog-social-icon svg { width: 18px; height: 18px; }
.blog-social-info strong { display: block; font-family: var(--font-subheading); font-size: 0.82rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.04em; }
.blog-social-info span   { font-size: 0.72rem; color: var(--text-muted); }

/* Per-platform accent colours */
.blog-social-discord  { border-color: rgba(88,101,242,0.35); }
.blog-social-discord  .blog-social-icon { background: rgba(88,101,242,0.15); color: #7289DA; }
.blog-social-discord:hover  { border-color: rgba(88,101,242,0.7); box-shadow: 0 6px 20px rgba(88,101,242,0.2); }

.blog-social-instagram .blog-social-icon { background: rgba(193,53,132,0.15); color: #E1306C; }
.blog-social-instagram { border-color: rgba(193,53,132,0.25); }
.blog-social-instagram:hover { border-color: rgba(193,53,132,0.6); box-shadow: 0 6px 20px rgba(193,53,132,0.15); }

.blog-social-x .blog-social-icon { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.blog-social-x:hover { border-color: rgba(255,255,255,0.3); }

.blog-social-bluesky .blog-social-icon { background: rgba(0,133,255,0.12); color: #0085ff; }
.blog-social-bluesky { border-color: rgba(0,133,255,0.25); }
.blog-social-bluesky:hover { border-color: rgba(0,133,255,0.5); box-shadow: 0 6px 20px rgba(0,133,255,0.15); }

.blog-social-youtube .blog-social-icon { background: rgba(255,0,0,0.12); color: #FF0000; }
.blog-social-youtube { border-color: rgba(255,0,0,0.2); }
.blog-social-youtube:hover { border-color: rgba(255,0,0,0.5); box-shadow: 0 6px 20px rgba(255,0,0,0.1); }

.blog-social-tiktok .blog-social-icon { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.blog-social-tiktok:hover { border-color: rgba(255,255,255,0.25); }
.post-card-thumb { aspect-ratio: 1/1; background: var(--bg-deep); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; overflow: hidden; }
.post-card-thumb::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.post-thumb-1::before { background: linear-gradient(135deg, rgba(107,30,212,0.35), transparent); }
.post-thumb-2::before { background: linear-gradient(135deg, rgba(212,168,67,0.25), transparent); }
.post-thumb-3::before { background: linear-gradient(135deg, rgba(192,57,43,0.25), transparent); }
.post-thumb-4::before { background: linear-gradient(135deg, rgba(39,174,96,0.25), transparent); }
.post-thumb-5::before { background: linear-gradient(135deg, rgba(20,100,200,0.25), transparent); }
.post-card-body { padding: 1.25rem; display: flex; flex-direction: column; justify-content: space-between; }
.post-card-title { font-family: var(--font-subheading); font-size: 0.95rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.03em; margin-bottom: 0.4rem; line-height: 1.35; }
.post-card-title a:hover { color: var(--purple-light); }
.post-card-excerpt { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.5; margin-bottom: 0.75rem; }
/* sidebar, community-link, newsletter rules removed — replaced by blog-community banner */

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 5rem; }
.contact-cards-grid > * { min-width: 0; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: all var(--transition); }
.contact-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: var(--glow-purple); }
.contact-card-icon { width: 64px; height: 64px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.contact-card-icon-purple  { background: rgba(123,43,226,0.15); border: 1px solid var(--border-glow); }
.contact-card-icon-gold    { background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.4); }
.contact-card-icon-discord { background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.4); }
.contact-card h3  { font-family: var(--font-subheading); font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-primary); }
.contact-card p   { font-size: 0.9rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; }
.contact-card-email { font-family: var(--font-subheading); font-size: 0.85rem; color: var(--purple-light); letter-spacing: 0.04em; margin-top: auto; }
.contact-card-email:hover { text-decoration: underline; }

.form-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.form-box { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-box h2 { font-family: var(--font-subheading); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text-primary); margin-bottom: 0.5rem; }
.form-box > p { font-size: 0.9rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; margin-bottom: 1.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-family: var(--font-subheading); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea { background: var(--bg-input); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 0.8rem 1rem; color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: border-color var(--transition), box-shadow var(--transition); width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple-primary); box-shadow: 0 0 0 3px rgba(123,43,226,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23665E80' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px; cursor: pointer; }
.form-select option { background: var(--bg-deep); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.support-options { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.support-option { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: var(--bg-input); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); transition: all var(--transition); text-decoration: none; }
.support-option:hover { border-color: var(--border-glow); background: rgba(123,43,226,0.08); }
.support-option-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(123,43,226,0.15); border: 1px solid var(--border-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.support-option-text strong { display: block; font-family: var(--font-subheading); font-size: 0.9rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.04em; margin-bottom: 0.15rem; }
.support-option-text span { font-size: 0.82rem; color: var(--text-secondary); }
.support-option-arrow { margin-left: auto; color: var(--text-muted); transition: transform var(--transition), color var(--transition); }
.support-option:hover .support-option-arrow { transform: translateX(4px); color: var(--purple-light); }
.support-option-arrow svg { width: 18px; height: 18px; }

.press-section { background: var(--bg-deep); }
.press-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
/* Simplified contact page layouts */
.contact-form-centered { max-width: 680px; margin: 0 auto; }
.press-simple { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; background: var(--bg-deep); border-radius: var(--radius-lg); padding: 3rem; border: 1px solid var(--border-subtle); }
.press-assets { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.press-asset { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 1.25rem; display: flex; align-items: center; gap: 0.75rem; transition: all var(--transition); text-decoration: none; }
.press-asset:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.press-asset-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(123,43,226,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.press-asset-name { font-family: var(--font-subheading); font-size: 0.82rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.04em; }
.press-asset-size { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }

.response-times { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.response-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); }
.response-label { font-size: 0.9rem; color: var(--text-secondary); }
.response-time { font-family: var(--font-subheading); font-size: 0.78rem; letter-spacing: 0.08em; }
.response-time.fast   { color: var(--green-accent); }
.response-time.medium { color: var(--gold); }
.response-time.slow   { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE — all breakpoints in one place
   ============================================================ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .section-header { margin-bottom: 3rem; }

  /* Index */
  .hero-content { max-width: 560px; }
  .hero-logo { max-width: 300px; max-height: 300px; }
  .features-teaser-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .ea-callout { padding: 2.5rem 2rem; }

  /* Game */
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .wishlist-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* About */
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .origin-inner { gap: 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Blog */
  .blog-community { grid-template-columns: 1fr; gap: 2.5rem; }
  .post-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .form-section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .press-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  html, body { overflow-x: hidden; }
  img, video  { max-width: 100%; }

  /* Nav */
  .nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(8,8,14,0.99); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 0.75rem; border-bottom: 1px solid var(--border-subtle); gap: 0.15rem; z-index: 999; }
  .nav-links.open .nav-link { padding: 0.8rem 1rem; font-size: 0.85rem; }
  .nav-links.open .nav-link::after { bottom: 9px; }
  .nav-cta { display: none; }

  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-desc { font-size: 1rem; }
  .page-hero { padding: calc(var(--nav-height) + 2rem) 0 2.5rem; }
  .page-hero p { font-size: 1rem; }
  .btn-lg { padding: 0.9rem 1.75rem; font-size: 0.85rem; }

  /* Index hero */
  .hero-content { max-width: 100%; padding: calc(var(--nav-height) + 2rem) 0 4rem; }
  .hero-logo { max-width: 220px; max-height: 220px; }
  .hero-title { font-size: clamp(2.2rem,8vw,3.5rem); }
  .hero-pitch { font-size: 1.05rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-ctas .btn { justify-content: center; }
  .hero-scroll-hint { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .stat-item-num { font-size: 1.6rem; }
  .features-teaser-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ea-callout { padding: 2rem 1.25rem; }
  .ea-callout h2 { font-size: 1.6rem; }
  .ea-callout-btns { flex-direction: column; align-items: stretch; }
  .ea-callout-btns .btn { justify-content: center; }

  /* Game */
  .roadmap-track::before { left: 20px; transform: none; }
  .roadmap-item { display: flex; flex-direction: row; gap: 1rem; align-items: flex-start; margin-bottom: 2.5rem; }
  .roadmap-item.left  > .roadmap-content:last-child  { display: none; }
  .roadmap-item.right > .roadmap-content:first-child { display: none; }
  .roadmap-node { flex-shrink: 0; margin-top: 0.25rem; width: 40px; height: 40px; }
  .roadmap-content { flex: 1; padding: 1.25rem; }
  .roadmap-milestone { font-size: 0.95rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .feature-card { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .wishlist-inner { grid-template-columns: 1fr; gap: 2rem; }
  .wishlist-text h2 { font-size: 1.6rem; }
  .steam-actions { flex-direction: column; }

  /* About */
  .origin-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .origin-visual { max-width: 320px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }

  /* Blog */
  .post-grid { grid-template-columns: 1fr; }
  .blog-community { grid-template-columns: 1fr; gap: 2rem; }
  .blog-community-socials { grid-template-columns: 1fr; }
  .post-featured-thumb { aspect-ratio: 16/7; }
  .post-featured-body { padding: 1.5rem; }
  .post-featured-title { font-size: 1.25rem; }
  .post-card { grid-template-columns: 110px 1fr; }
  .post-card-thumb { min-height: 110px; }

  /* Contact */
  .contact-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-card { padding: 1.5rem; }
  .form-box { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .response-item { flex-direction: column; gap: 0.2rem; }
  .press-assets { grid-template-columns: 1fr 1fr; }
}

/* Small ≤ 480px */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.5rem; }
  .section-label { font-size: 0.68rem; }
  .btn    { padding: 0.75rem 1.25rem; font-size: 0.78rem; }
  .btn-lg { padding: 0.8rem 1.5rem; font-size: 0.82rem; }
  .btn svg { width: 16px; height: 16px; }
  .card { padding: 1.25rem; }
  .hero-title { font-size: 2rem; }
  .hero-logo { max-width: 160px; max-height: 160px; }
  .team-grid { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 80px 1fr; }
  .post-card-excerpt { display: none; }
  .press-assets { grid-template-columns: 1fr; }
  .form-box { padding: 1.25rem; }
  .contact-card { flex-direction: column; text-align: center; align-items: center; gap: 0.75rem; }
  .contact-card-icon { width: 56px; height: 56px; font-size: 1.4rem; flex-shrink: 0; }
  .steam-widget { padding: 0.75rem 1rem; gap: 0.75rem; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
  .origin-stats { gap: 0.4rem; }
  .origin-stat { padding: 0.75rem 0.4rem; }
  .origin-stat-num { font-size: 1.3rem; }
  .origin-stat-label { font-size: 0.58rem; letter-spacing: 0.08em; }
}

/* Prevent stuck hover states on touchscreens */
@media (hover: none) {
  .card:hover, .feature-teaser-card:hover, .btn:hover { transform: none; }
  .nav-link, .btn, .footer-social-btn { min-height: 44px; }
}