/* ============================================
   DUELS - GAME LANDING PAGE
   Cinzel Decorative + dark medieval fire/ice
   ============================================ */

:root {
  --bg-abyss: #070709;
  --bg-deep: #0c0c10;
  --bg-elevated: #1a1a24;
  --bg-card: #15151f;

  --fire-100: #fff4e6;
  --fire-300: #ffb84d;
  --fire-500: #ff6b00;
  --fire-600: #e05500;
  --fire-glow: rgba(255, 107, 0, 0.4);

  --ice-300: #66e0ff;
  --ice-500: #00d4ff;
  --ice-glow: rgba(0, 212, 255, 0.4);

  --iron-300: #b8c0cc;
  --iron-500: #8892a4;

  --poison-400: #7cff6b;

  --text-primary: #f0eee6;
  --text-secondary: #a8a6b3;
  --text-muted: #5c5a66;

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Crimson Pro', serif;

  --section-pad: clamp(80px, 12vh, 140px);
  --container-max: 1200px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg-abyss);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 17px;
}

a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ---- GRADIENT TEXT ---- */

.text--fire {
  background: linear-gradient(135deg, var(--fire-300), var(--fire-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text--ice {
  background: linear-gradient(135deg, var(--ice-300), var(--ice-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text--iron {
  background: linear-gradient(135deg, var(--iron-300), var(--iron-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ---- SECTION HEADERS ---- */

.section-header { text-align: center; margin-bottom: 56px; }

.section-header__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--fire-500);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 20px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 100px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.15;
  font-variant-ligatures: no-common-ligatures no-discretionary-ligatures;
  -webkit-font-feature-settings: "liga" 0, "dlig" 0;
  font-feature-settings: "liga" 0, "dlig" 0;
}

.section-header__desc {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-weight: 500;
}

/* ---- NAV ---- */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 20px 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav--scrolled {
  background: rgba(7, 7, 9, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
}

.nav__inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo { text-decoration: none; display: flex; align-items: center; }
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--fire-300), var(--fire-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav__logo-img { display: none; }

.nav__links { display: flex; list-style: none; gap: 28px; }
.nav__links a { white-space: nowrap; }

.nav__links a {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  transition: color 0.3s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--fire-500);
  transition: width 0.3s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; padding: 10px 28px;
  border: 2px solid var(--fire-500); color: var(--fire-500);
  border-radius: 4px; transition: all 0.3s var(--ease-out-expo);
}
.nav__cta:hover { background: var(--fire-500); color: var(--bg-abyss); box-shadow: 0 0 30px var(--fire-glow); }
.nav__buttons { display: flex; align-items: center; gap: 18px; }
.nav__cta--discord { border-color: #5865F2; color: #5865F2; display: flex; align-items: center; gap: 6px; }
.nav__cta--discord:hover { background: #5865F2; color: #fff; box-shadow: 0 0 30px rgba(88,101,242,0.4); }
.nav__cta--youtube { border-color: #FF0000; color: #FF0000; display: flex; align-items: center; gap: 6px; }
.nav__cta--youtube:hover { background: #FF0000; color: #fff; box-shadow: 0 0 30px rgba(255,0,0,0.4); }


.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(7, 7, 9, 0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu--open { opacity: 1; pointer-events: auto; }
.mobile-menu__links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 32px; }
.mobile-menu__links a { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: 2px; color: var(--text-secondary); transition: color 0.3s; }
.mobile-menu__links a:hover { color: var(--fire-500); }
.mobile-menu__cta { color: var(--fire-500) !important; }

/* ---- HERO ---- */

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: 33% 45%; transform: scale(1.35) translateX(15%) translateY(-13%); }
.hero__bg-img--mobile { display: none; }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(7,7,9,0.7) 0%, rgba(7,7,9,0.35) 45%, transparent 70%),
    linear-gradient(to bottom, rgba(7,7,9,0.2) 0%, transparent 40%, rgba(7,7,9,0.3) 80%, var(--bg-abyss) 100%);
}

.hero__content { position: relative; z-index: 2; text-align: center; padding: 140px 24px 80px; max-width: var(--container-max); margin: 0 auto; width: 100%; transform: translateX(-100px); }

.hero__logo { display: block; margin: 0 auto 16px; width: clamp(220px, 28vw, 380px); filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6)); animation: fadeInDown 0.8s var(--ease-out-expo) both; }

.hero__badge {
  position: relative; z-index: 3;
  display: inline-block; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase; color: #fff;
  padding: 10px 28px; border: 1.5px solid rgba(255,184,77,0.5); border-radius: 100px;
  background: rgba(255,107,0,0.15); backdrop-filter: blur(8px);
  text-shadow: 0 0 12px rgba(255,107,0,0.4);
  transition: all 0.3s;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease-out-expo) 0.2s both;
}

.hero__title { line-height: 1; margin-bottom: 28px; }
.hero__title-line { display: block; }

.hero__title-line--1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 42px); font-weight: 700;
  letter-spacing: 10px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.4);
  margin-bottom: 8px;
  animation: fadeInDown 0.8s var(--ease-out-expo) 0.4s both;
}

.hero__title-line--2 {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px); font-weight: 900; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--fire-100), var(--fire-300) 40%, var(--fire-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 50px var(--fire-glow)) drop-shadow(0 4px 8px rgba(0,0,0,0.6));
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero__title--stacked { margin-bottom: 24px; }
.hero__title-line--fire-stacked {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 100px); font-weight: 900; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--fire-100), var(--fire-300) 40%, var(--fire-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 50px var(--fire-glow)) drop-shadow(0 4px 8px rgba(0,0,0,0.6));
  margin-bottom: 4px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}
.hero__title-line--fire-stacked:nth-child(2) { animation-delay: 0.55s; }
.hero__title-line--fire-big { font-size: clamp(52px, 9vw, 120px); animation-delay: 0.7s !important; }

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px); font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.4);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}
.hero__subtitle--sentence {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px); font-weight: 400;
  letter-spacing: normal; text-transform: none;
  color: rgba(255,255,255,0.8); line-height: 1.6;
  max-width: 540px; margin: 0 auto 40px;
}

.hero__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out-expo) 1s both;
}

.hero__actions .store-badge { backdrop-filter: blur(12px); background: rgba(0,0,0,0.7); }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 1.4s both;
}
.hero__scroll span { font-family: var(--font-heading); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--fire-500), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ---- SOCIAL PROOF BAR ---- */

.proof-bar {
  position: relative;
  padding: 48px 0;
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  overflow: hidden;
}

.proof-bar__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 50% 50%, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.proof-bar__stat:has(.proof-bar__badge) { flex: 2; }
.proof-bar__badge { max-width: 100%; height: 180px; width: auto; filter: drop-shadow(0 0 30px rgba(255,184,77,0.2)); }

.proof-bar__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.proof-bar__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
}

.proof-bar__icon {
  width: 24px;
  height: 24px;
  color: var(--fire-500);
  margin-bottom: 4px;
  opacity: 0.8;
}

.proof-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--fire-100), var(--fire-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.proof-bar__label {
  font-family: var(--font-body);
  font-size: 15px;
  color: #d4d2c9;
  line-height: 1.5;
  white-space: nowrap;
}

.proof-bar__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 107, 0, 0.2), transparent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .proof-bar { padding: 40px 0; }

  .proof-bar__stats {
    flex-wrap: wrap;
    gap: 32px 0;
  }

  .proof-bar__stat {
    flex: 0 0 50%;
    max-width: none;
  }

  .proof-bar__divider { display: none; }

  .proof-bar__heading { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .proof-bar__stat {
    flex: 0 0 100%;
  }

  .proof-bar__stats { gap: 28px; }
}

/* ---- FEATURES ---- */

.features { padding: var(--section-pad) 0; background: var(--bg-deep); position: relative; }
.features::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--fire-500), transparent); opacity: 0.3; }

.features__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature-card {
  position: relative; overflow: hidden; border-radius: 16px;
  min-height: 340px; display: flex; align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s var(--ease-out-expo);
}

.feature-card__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform 0.6s var(--ease-out-expo);
}
.feature-card--fire .feature-card__bg { object-position: 52% 45%; }
.feature-card--ice .feature-card__bg { object-position: 50% 15%; }
.feature-card--iron .feature-card__bg { object-position: 50% 37%; }
.feature-card--poison .feature-card__bg { object-position: 50% 8%; }

.feature-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  transition: opacity 0.4s;
}
.feature-card--fire::after { background: linear-gradient(to top, rgba(7,7,9,0.95) 15%, rgba(7,7,9,0.6) 45%, rgba(255,107,0,0.15) 100%); }
.feature-card--ice::after { background: linear-gradient(to top, rgba(7,7,9,0.95) 15%, rgba(7,7,9,0.6) 45%, rgba(0,212,255,0.15) 100%); }
.feature-card--iron::after { background: linear-gradient(to top, rgba(7,7,9,0.95) 15%, rgba(7,7,9,0.6) 45%, rgba(184,192,204,0.15) 100%); }
.feature-card--poison::after { background: linear-gradient(to top, rgba(7,7,9,0.95) 15%, rgba(7,7,9,0.6) 45%, rgba(124,255,107,0.15) 100%); }

.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.feature-card:hover .feature-card__bg { transform: scale(1.06); }

.feature-card__content { position: relative; z-index: 2; padding: 36px; width: 100%; }

.feature-card__title { font-family: var(--font-heading); font-size: 26px; font-weight: 700; margin-bottom: 10px; letter-spacing: 1px; }
.feature-card__desc { font-size: 18px; color: var(--text-secondary); line-height: 1.7; }

/* ---- GAMEPLAY ---- */

.gameplay { padding: var(--section-pad) 0; background: var(--bg-abyss); }
.gameplay__showcase { display: flex; flex-direction: column; gap: 16px; }
.gameplay__main { width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.gameplay__video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-elevated); }
.gameplay__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.gameplay__thumb { border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s var(--ease-out-expo); cursor: pointer; }
.gameplay__thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.5s var(--ease-out-expo); }
.gameplay__thumb:hover { border-color: var(--fire-500); box-shadow: 0 12px 40px rgba(255,107,0,0.15); }
.gameplay__thumb:hover img { transform: scale(1.05); }

/* ---- MODES ---- */

.modes { padding: var(--section-pad) 0; background: var(--bg-deep); position: relative; }
.modes::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--ice-500), transparent); opacity: 0.2; }

.modes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.mode-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06); background: var(--bg-card);
  transition: all 0.4s var(--ease-out-expo);
}
.mode-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.mode-card__img { overflow: hidden; }
.mode-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s var(--ease-out-expo); }
.mode-card:nth-child(1) .mode-card__img img { object-position: 50% 14%; }
.mode-card:nth-child(2) .mode-card__img img { object-position: 50% 13%; }
.mode-card:nth-child(4) .mode-card__img img { object-position: 50% 26%; }
.mode-card:hover .mode-card__img img { transform: scale(1.05); }

.mode-card__content { padding: 24px; }
.mode-card__title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }
.mode-card__desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }

/* ---- ARSENAL ---- */

.arsenal { padding: var(--section-pad) 0; background: var(--bg-abyss); }

.arsenal__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.arsenal__item { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s var(--ease-out-expo); }
.arsenal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out-expo); }
.arsenal__item:nth-child(2) img { object-position: 50% 14%; }
.arsenal__item:nth-child(3) img { object-position: 50% 9%; }
.arsenal__item:nth-child(4) img { object-position: 0% 43%; }
.arsenal__item:nth-child(5) img { object-position: 50% 0%; }
.arsenal__item:hover { border-color: var(--iron-500); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.arsenal__item:hover img { transform: scale(1.05); }
.arsenal__item--wide { grid-column: span 2; }

/* ---- DOWNLOAD CTA ---- */

.download { position: relative; padding: var(--section-pad) 0; overflow: hidden; min-height: 500px; display: flex; align-items: center; }
.download__bg { position: absolute; inset: 0; }
.download__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 75%; }
.download__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg-abyss), rgba(7,7,9,0.4) 30%, rgba(7,7,9,0.4) 70%, var(--bg-deep)); z-index: 1; }

.download__content { position: relative; z-index: 2; text-align: center; }
.download__title { font-family: var(--font-display); line-height: 1.1; margin-bottom: 20px; }
.download__title-line { display: block; font-size: clamp(28px, 5vw, 48px); font-weight: 700; letter-spacing: 3px; }
.download__title-line--accent {
  font-size: clamp(48px, 9vw, 100px);
  background: linear-gradient(135deg, var(--fire-300), var(--fire-500), var(--ice-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 40px var(--fire-glow));
}

.download__subtitle { font-family: var(--font-heading); font-size: clamp(17px, 2vw, 24px); font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 40px; }
.download__buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.store-badge { display: flex; align-items: center; gap: 14px; padding: 14px 28px; border-radius: 10px; background: #000; border: 1.5px solid #a6a6a6; transition: all 0.4s var(--ease-out-expo); min-width: 220px; }
.store-badge:hover { transform: translateY(-4px); border-color: #fff; box-shadow: 0 8px 32px rgba(255,255,255,0.1); }
.store-badge__icon { flex-shrink: 0; }
.store-badge__text { text-align: left; }
.store-badge__label { display: block; font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 0.5px; color: #ccc; line-height: 1.2; }
.store-badge__store { display: block; font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 24px; font-weight: 600; color: #fff; line-height: 1.2; }

/* ---- FOOTER ---- */

.footer { padding: 60px 0 40px; background: var(--bg-deep); border-top: 1px solid rgba(255,255,255,0.04); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--fire-500), transparent); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer__logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 3px; background: linear-gradient(135deg, var(--fire-100), var(--fire-300) 40%, var(--fire-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer__tagline { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.footer__tagline a { color: var(--text-secondary); transition: color 0.3s; }
.footer__tagline a:hover { color: var(--fire-500); }
.footer__socials { display: flex; gap: 20px; }
.footer__socials a { color: var(--text-secondary); transition: color 0.3s, transform 0.3s; display: flex; }
.footer__socials a:hover { color: var(--fire-500); transform: scale(1.15); }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s; }
.footer__links a:hover { color: var(--text-primary); }
.footer__copy { font-size: 12px; color: var(--text-muted); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); width: 100%; }

/* ---- ANIMATIONS ---- */

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

section[id] { scroll-margin-top: 80px; }
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
[data-reveal]:nth-child(5) { transition-delay: 0.4s; }
[data-reveal]:nth-child(6) { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .hero { align-items: flex-end; }
  .hero__content { transform: none; padding: 55vh 24px 60px; }
  .hero__bg-img--desktop { display: none; }
  .hero__bg-img--mobile { display: block; object-fit: cover; object-position: 50% 25%; transform: none; width: 100%; height: 100%; }
  .hero__overlay {
    background:
      linear-gradient(to bottom, transparent 0%, transparent 35%, rgba(7,7,9,0.65) 55%, rgba(7,7,9,0.95) 70%, var(--bg-abyss) 85%);
  }
  .modes__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__logo-text { display: none; }
  .nav__logo-img { display: block; height: 36px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
  .nav__links, .nav__buttons { display: none; }
  .nav__burger { display: flex; }

  /* Hero mobile */
  .hero { min-height: auto; display: flex; flex-direction: column; align-items: stretch; }
  .hero__bg { position: relative; width: 100%; aspect-ratio: 3/4; }
  .hero__bg-img--desktop { display: none; }
  .hero__bg-img--mobile { display: block; object-fit: cover; object-position: 50% 35%; transform: none; width: 100%; height: 100%; }
  .hero__overlay {
    background: linear-gradient(to bottom,
      transparent 0%,
      transparent 55%,
      rgba(7,7,9,0.6) 70%,
      var(--bg-abyss) 90%);
  }
  .hero__logo { display: none; }
  .hero__badge {
    position: absolute; z-index: 3;
    top: 60px; left: 0; right: 0;
    margin: 0 auto; width: fit-content;
    font-size: 11px; white-space: nowrap;
  }
  .hero__content {
    position: static; z-index: 2; width: 100%; transform: none;
    padding: 0 20px 48px; margin-top: -60px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 10px;
    background: linear-gradient(to bottom, transparent, var(--bg-abyss) 40px);
  }
  .hero__title { margin: 0; }
  .hero__title-line--1 { font-size: 17px; letter-spacing: 8px; }
  .hero__title-line--1 { font-size: 16px; letter-spacing: 6px; }
  .hero__title-line--2 { font-size: clamp(40px, 12vw, 60px); }
  .hero__title-line--fire-stacked { font-size: clamp(36px, 12vw, 60px); }
  .hero__title-line--fire-big { font-size: clamp(42px, 14vw, 72px); }
  .hero__subtitle { font-size: 14px; letter-spacing: 3px; line-height: 1.9; margin: 0; }
  .hero__subtitle--sentence { font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 1px; max-width: 320px; margin: 0 auto 24px; line-height: 1.7; }
  .hero__actions { flex-direction: column; align-items: center; gap: 10px; width: 100%; margin-top: 6px; }
  .hero__actions .store-badge { width: 88%; max-width: 340px; min-width: unset; justify-content: center; }
  .hero__scroll { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .gameplay__grid { grid-template-columns: repeat(2, 1fr); }
  .arsenal__gallery { grid-template-columns: repeat(2, 1fr); }
  .arsenal__item--wide { grid-column: span 2; }
}

@media (max-width: 480px) {
  .modes__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
  .arsenal__gallery { grid-template-columns: 1fr; }
  .arsenal__item--wide { grid-column: span 1; }
  .download__buttons { flex-direction: column; align-items: center; }
  .download__buttons .store-badge { width: 88%; max-width: 340px; min-width: unset; justify-content: center; }
}
