:root {
  --bg: #0a0a0a;
  --bg-elev: #121110;
  --bg-card: #161412;
  --gold: #F5B800;
  --gold-deep: #E6A817;
  --gold-dark: #8a6310;
  --crimson: #C41E3A;
  --crimson-deep: #8B0000;
  --ink: #1a1715;
  --text: #EFE7D8;
  --text-dim: #9a9387;
  --text-faint: #5a554d;
  --line: rgba(245, 184, 0, 0.12);
  --line-strong: rgba(245, 184, 0, 0.3);
  --display: 'Oswald', 'Bebas Neue', Impact, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='5'/><feColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.5  0 0 0 0 0.3  0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  animation: grainShift 1.6s steps(6) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  20% { transform: translate(-3%, 4%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-1%, 2%); }
  80% { transform: translate(4%, 1%); }
  100% { transform: translate(0,0); }
}

/* ---------- vignette ---------- */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 48px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: url('assets/honey-badgames-logo.png') center/cover no-repeat;
  filter: drop-shadow(0 0 8px rgba(245,184,0,0.3));
}
.nav-logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
  background: none; border: none;
}
.nav-link:hover { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.lang-switch {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s;
}
.lang-btn.active { background: var(--gold); color: var(--bg); }
.lang-btn:hover:not(.active) { color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-splatter {
  position: absolute;
  inset: -10%;
  z-index: 0;
  opacity: 0.55;
  filter: blur(0.5px);
}
.hero-bg-splatter svg { width: 100%; height: 100%; }

/* ---------- intro overlay (black curtain that lifts) ---------- */
.intro-curtain {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 90;
  pointer-events: none;
  animation: curtainOut 0.6s 2.4s cubic-bezier(.6,0,.4,1) forwards;
}
@keyframes curtainOut {
  to { opacity: 0; }
}

/* ---------- intro splatter explosion ---------- */
.hero.intro .hero-bg-splatter > * {
  opacity: 0;
  transform-origin: center center;
}
.hero.intro .hero-bg-splatter > *:nth-child(1) {
  animation: splatExplode 0.8s 0.1s cubic-bezier(.2,.9,.3,1) forwards, ambientShimmer 5s 2.5s ease-in-out infinite;
}
.hero.intro .hero-bg-splatter > *:nth-child(2) {
  animation: splatExplode 0.8s 0.18s cubic-bezier(.2,.9,.3,1) forwards, ambientShimmer 6.5s 2.8s ease-in-out infinite;
}
.hero.intro .hero-bg-splatter > *:nth-child(3) {
  animation: splatExplode 0.8s 0.26s cubic-bezier(.2,.9,.3,1) forwards, ambientShimmer 7s 3.1s ease-in-out infinite;
}
@keyframes splatExplode {
  0% {
    opacity: 0;
    transform: scale(0.05) rotate(0deg);
    filter: blur(20px);
  }
  35% {
    opacity: 0.9;
    filter: blur(8px);
  }
  70% {
    opacity: 1;
    transform: scale(1.08) rotate(var(--splat-rot, 4deg));
    filter: blur(2px);
  }
  100% {
    opacity: var(--splat-final-opacity, 0.55);
    transform: scale(1) rotate(var(--splat-rot, 4deg));
    filter: blur(0.5px);
  }
}
@keyframes ambientShimmer {
  0%, 100% { filter: blur(0.5px) brightness(1); }
  50% { filter: blur(0.5px) brightness(1.15); }
}

.hero-glow {
  position: absolute;
  width: 80vmin; height: 80vmin;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,184,0,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: glowFadeIn 0.6s 0.9s ease-out forwards, pulseGlow 6s 1.5s ease-in-out infinite;
}
@keyframes glowFadeIn {
  to { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 32px;
  max-width: 1100px;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 2.5s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}

/* ---------- hero logo composition ---------- */
.hero-logo-stack {
  position: relative;
  width: min(640px, 75vw);
  margin: 0 auto 24px;
  aspect-ratio: 1028 / 637;
}
.hero-logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(245,184,0,0.25)) drop-shadow(0 0 40px rgba(196,30,58,0.15));
}
/* Splatter-only layer (same image, but masked to be visible behind a black overlay
   that hides badger + text initially — those are revealed in stages) */
.hero-logo-img.splatter-layer {
  opacity: 0;
  animation: logoLayerSplat 0.7s 0.1s cubic-bezier(.2,.9,.3,1) forwards;
  transform-origin: center center;
}
@keyframes logoLayerSplat {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-8deg);
    filter: blur(24px) drop-shadow(0 20px 60px rgba(245,184,0,0.25));
  }
  50% {
    opacity: 1;
    filter: blur(6px) drop-shadow(0 20px 60px rgba(245,184,0,0.25));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0) drop-shadow(0 20px 60px rgba(245,184,0,0.25)) drop-shadow(0 0 40px rgba(196,30,58,0.15));
  }
}

/* Black mask that hides badger + wordmark area initially, then lifts at 0.8s.
   Two pieces: left mask covers the badger circle, right mask covers the wordmark. */
.logo-mask {
  position: absolute;
  background: #0a0a0a;
  z-index: 2;
  pointer-events: none;
}
.logo-mask.badger-mask {
  /* badger sits roughly left-center of the logo */
  left: 14%;
  top: 18%;
  width: 28%;
  height: 64%;
  border-radius: 50%;
  filter: blur(14px);
  animation: maskBadger 0.5s 0.85s cubic-bezier(.4,0,.4,1) forwards;
}
.logo-mask.text-mask {
  /* wordmark sits roughly right side */
  left: 44%;
  top: 22%;
  width: 52%;
  height: 60%;
  filter: blur(8px);
  animation: maskText 0.7s 1.55s cubic-bezier(.6,0,.3,1) forwards;
  transform-origin: left center;
}
@keyframes maskBadger {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.4); }
}
@keyframes maskText {
  0% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0); }
}

/* Badger pop overlay — a soft scale pulse that rides on top of the badger area
   when the mask peels back, to add the "scale 0.8 → 1.0 with glow" feel. */
.badger-pulse {
  position: absolute;
  left: 14%;
  top: 18%;
  width: 28%;
  height: 64%;
  background: radial-gradient(circle, rgba(245,184,0,0.55) 0%, rgba(245,184,0,0.15) 40%, transparent 70%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.4);
  animation: badgerPulse 0.7s 0.85s cubic-bezier(.2,.8,.3,1) forwards;
}
@keyframes badgerPulse {
  0% { opacity: 0; transform: scale(0.4); }
  40% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* Wordmark impact shake — applied to whole logo stack at the moment the text is revealed */
.hero-logo-stack {
  animation: impactShake 0.4s 1.55s cubic-bezier(.36,.07,.19,.97);
}
@keyframes impactShake {
  0% { transform: translate(0,0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, 1px); }
  80% { transform: translate(1px, 0); }
  100% { transform: translate(0,0); }
}

.hero-tagline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 84px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 2.7s forwards;
}
.hero-tagline em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s 2.85s forwards;
}
.hero-cta-row {
  display: flex; gap: 20px; justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 3s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 36px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s, transform 0.3s;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateX(0); }
.btn:hover { box-shadow: 0 8px 30px -8px rgba(245,184,0,0.6); }
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary::before { background: var(--crimson); }
.btn-primary:hover { color: var(--text); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost::before { background: rgba(255,255,255,0.06); }
.btn-ghost:hover { color: var(--text); }

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 1s 3.2s forwards;
}
.scroll-indicator-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- section primitives ---------- */
.section {
  position: relative;
  padding: 140px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-tag::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.section-title .accent { color: var(--gold); }
.section-subtitle {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.7;
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-image-placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(245,184,0,0.04) 14px 15px),
    linear-gradient(160deg, #1a1715 0%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.about-image-placeholder .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(245,184,0,0.15), transparent 60%);
  pointer-events: none;
}
.about-image-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.about-image-corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.about-image-corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.about-image-corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.about-image-corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.about-body p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 22px;
  line-height: 1.75;
}
.about-body p strong { color: var(--text); font-weight: 500; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about-stat-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- games ---------- */
.games-section { background: linear-gradient(180deg, transparent, rgba(245,184,0,0.02), transparent); }
.games-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.game-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.5s, border-color 0.4s;
}
.game-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.game-card.featured { grid-row: span 2; min-height: 640px; }
.game-card.small { min-height: 308px; }
.game-card-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.game-card:hover .game-card-art { transform: scale(1.06); }
.game-card-art-placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.025) 18px 19px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.game-card-art-placeholder .ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px dashed var(--text-faint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.game-card-art-placeholder.kronos {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(196,30,58,0.25), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(245,184,0,0.18), transparent 55%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(245,184,0,0.05) 22px 23px),
    linear-gradient(180deg, #1a0e0a 0%, #0a0a0a 100%);
}
.game-card-art-placeholder.titan {
  background:
    radial-gradient(circle at 60% 40%, rgba(245,184,0,0.18), transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,0.02) 16px 17px),
    linear-gradient(180deg, #14130f 0%, #0a0a0a 100%);
}
.game-card-art-placeholder.hollow {
  background:
    radial-gradient(circle at 30% 70%, rgba(196,30,58,0.15), transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,0.02) 12px 13px),
    linear-gradient(180deg, #100f0d 0%, #0a0a0a 100%);
}

.game-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.game-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px;
}
.game-card.small .game-card-content { padding: 24px; }
.game-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: 16px;
}
.game-card-status.dev {
  border-color: var(--crimson);
  color: var(--crimson);
  background: rgba(196,30,58,0.08);
}
.game-card-status.dev::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 8px var(--crimson);
  animation: pulse 1.6s infinite;
}
.game-card-status.coming {
  border-color: var(--text-dim);
  color: var(--text-dim);
}
.game-card-status.concept {
  border-color: var(--text-faint);
  color: var(--text-faint);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.game-card-genre {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.game-card-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.game-card.featured .game-card-title { font-size: 56px; }
.game-card-desc {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 480px;
  margin-bottom: 16px;
}
.game-card-cta {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.game-card:hover .game-card-cta { gap: 14px; }

/* ---------- shards of kronos ---------- */
.kronos {
  position: relative;
  margin-top: 60px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(196,30,58,0.15), transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(245,184,0,0.08), transparent 50%),
    var(--bg-elev);
  overflow: hidden;
}
.kronos-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.kronos-banner-art {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,184,0,0.2), transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(196,30,58,0.35), transparent 50%),
    repeating-linear-gradient(110deg, transparent 0 32px, rgba(245,184,0,0.04) 32px 33px),
    linear-gradient(180deg, #1a0d10 0%, #0a0a0a 100%);
}
.kronos-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.9) 100%);
}
.kronos-banner-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 56px;
  z-index: 2;
}
.kronos-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kronos-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.kronos-title .gold { color: var(--gold); }
.kronos-sub {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.kronos-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding: 64px 56px;
}
.kronos-story h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text);
}
.kronos-story p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.kronos-story p strong { color: var(--gold); font-weight: 500; }
.kronos-quote {
  border-left: 2px solid var(--gold);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.kronos-meta {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.kronos-meta-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.kronos-meta-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.kronos-meta-val {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}
.kronos-meta-val.gold { color: var(--gold); }

.kronos-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.kronos-gallery {
  padding: 0 56px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.kronos-gallery-item {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(245,184,0,0.03) 14px 15px),
    linear-gradient(160deg, #1a1612 0%, #0a0a0a 100%);
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.kronos-gallery-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.kronos-gallery-item:nth-child(1) { background: radial-gradient(circle at 40% 60%, rgba(196,30,58,0.2), transparent 60%), repeating-linear-gradient(135deg, transparent 0 14px, rgba(245,184,0,0.03) 14px 15px), linear-gradient(160deg, #1a1612, #0a0a0a); }
.kronos-gallery-item:nth-child(2) { background: radial-gradient(circle at 70% 30%, rgba(245,184,0,0.15), transparent 55%), repeating-linear-gradient(135deg, transparent 0 14px, rgba(245,184,0,0.03) 14px 15px), linear-gradient(160deg, #181410, #0a0a0a); }
.kronos-gallery-item:nth-child(3) { background: radial-gradient(circle at 30% 30%, rgba(196,30,58,0.18), transparent 55%), repeating-linear-gradient(135deg, transparent 0 14px, rgba(245,184,0,0.03) 14px 15px), linear-gradient(160deg, #1a1612, #0a0a0a); }
.kronos-gallery-item:nth-child(4) { background: radial-gradient(circle at 60% 70%, rgba(245,184,0,0.18), transparent 55%), repeating-linear-gradient(135deg, transparent 0 14px, rgba(245,184,0,0.03) 14px 15px), linear-gradient(160deg, #181410, #0a0a0a); }
.kronos-gallery-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.kronos-gallery-item .num {
  font-family: var(--display);
  font-size: 32px;
  color: var(--text-faint);
  margin-bottom: 6px;
  font-weight: 600;
}

/* ---------- newsletter ---------- */
.newsletter {
  position: relative;
  padding: 120px 48px;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,184,0,0.06), transparent 60%),
    var(--bg);
}
.newsletter-splatter {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}
.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-color: var(--gold); box-shadow: 0 0 30px rgba(245,184,0,0.15); }
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 22px 24px;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-faint); }
.newsletter-submit {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 0 36px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.newsletter-submit:hover { background: var(--crimson); color: var(--text); }
.newsletter-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 18px;
}
.newsletter-success {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 22px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.newsletter-success .check {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  gap: 24px;
}
.contact-info-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.contact-info-val {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.contact-info-val a { color: inherit; text-decoration: none; transition: color 0.3s; }
.contact-info-val a:hover { color: var(--gold); }

.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.social:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(245,184,0,0.04); }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
}
.social-name {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.social-handle {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 80px 48px 32px;
  margin-top: 60px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 18px;
}
.footer-brand-text {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col-title {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 200;
  width: 0;
  box-shadow: 0 0 12px rgba(245,184,0,0.7);
}

/* ---------- decorative ink splatters ---------- */
.deco-splatter {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ---------- intro skip (replay flag missing or reduced motion) ---------- */
.hero.no-intro .intro-curtain { display: none; }
.hero.no-intro .hero-bg-splatter > * { opacity: var(--splat-final-opacity, 0.55); animation: none; }
.hero.no-intro .hero-glow { opacity: 1; animation: pulseGlow 6s ease-in-out infinite; }
.hero.no-intro .hero-logo-img.splatter-layer { opacity: 1; animation: none; transform: none; filter: drop-shadow(0 20px 60px rgba(245,184,0,0.25)) drop-shadow(0 0 40px rgba(196,30,58,0.15)); }
.hero.no-intro .logo-mask { display: none; }
.hero.no-intro .badger-pulse { display: none; }
.hero.no-intro .hero-logo-stack { animation: none; }
.hero.no-intro .hero-eyebrow,
.hero.no-intro .hero-tagline,
.hero.no-intro .hero-sub,
.hero.no-intro .hero-cta-row,
.hero.no-intro .scroll-indicator { opacity: 1; animation: none; }

@media (prefers-reduced-motion: reduce) {
  .hero .intro-curtain { display: none; }
  .hero .hero-bg-splatter > * { opacity: var(--splat-final-opacity, 0.55) !important; animation: none !important; transform: none !important; filter: none !important; }
  .hero .hero-glow { opacity: 1 !important; animation: none !important; }
  .hero .hero-logo-img.splatter-layer { opacity: 1 !important; animation: none !important; transform: none !important; filter: drop-shadow(0 20px 60px rgba(245,184,0,0.25)) !important; }
  .hero .logo-mask, .hero .badger-pulse { display: none !important; }
  .hero .hero-logo-stack { animation: none !important; }
  .hero .hero-eyebrow,
  .hero .hero-tagline,
  .hero .hero-sub,
  .hero .hero-cta-row,
  .hero .scroll-indicator { opacity: 1 !important; animation: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 22px; }
  .section { padding: 100px 24px; }
  .about, .contact, .kronos-body { grid-template-columns: 1fr; gap: 40px; }
  .games-grid { grid-template-columns: 1fr; }
  .game-card.featured { grid-row: auto; min-height: 480px; }
  .kronos-banner { height: 360px; }
  .kronos-banner-content { padding: 32px; }
  .kronos-body { padding: 40px 32px; }
  .kronos-gallery { padding: 0 32px 40px; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .lang-switch { display: flex; }
  .hero-cta-row { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-submit { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-stats { grid-template-columns: 1fr; gap: 18px; }
  .socials { grid-template-columns: 1fr; }
}
