/* ============================================================
   THE JOY OF CREATION: DOOM REBORN — style.css
   Theme: FNAF Security Monitor / Concrete & Fiery Sparks
============================================================ */

/* ─── Reset & Tokens ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #050505;
  --dark-gray: #0f1011;
  --concrete: #1a1c1e;
  --orange: #ff5100;
  --orange-glow: rgba(255, 81, 0, 0.4);
  --white: #ffffff;
  --off-white: #e3e4e6;
  --gray-800: #16181b;
  --gray-700: #22252a;
  --gray-600: #33383f;
  --gray-400: #888e96;
  --red: #ff2222;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-horror: 'Creepster', cursive;
  --nav-h: 75px;
  --section-pad: 120px;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom cursor ─── */
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.3s;
  z-index: 9999;
  box-shadow: 0 0 10px var(--orange-glow);
}

/* ─── Noise & TV Static ─── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.99' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: static-shift 0.15s steps(2) infinite;
}

@keyframes static-shift {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 20px -50px;
  }

  100% {
    background-position: -10px 30px;
  }
}

/* ─── TV Scanlines & Bezel Overlay ─── */
.crt-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  background:
    radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.85) 100%),
    repeating-linear-gradient(rgba(18, 16, 16, 0) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(18, 16, 16, 0) 100%);
  background-size: 100% 100%, 100% 4px;
}

/* ─── Concrete Texture Styling ─── */
.bg-concrete {
  background:
    linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.95)),
    radial-gradient(circle at 50% 50%, rgba(255, 81, 0, 0.05), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='5' result='noise'/%3E%3CfeDiffuseLighting in='noise' lighting-color='%23fff' surfaceScale='2'%3E%3CfeDistantLight azimuth='45' elevation='60'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23paper)' opacity='0.15'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

/* ─── Embers Particles Container ─── */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px var(--orange), 0 0 20px var(--orange);
  opacity: 0.8;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.8;
  }

  50% {
    opacity: 1;
    transform: translateY(-50vh) translateX(var(--travel-x, 30px)) scale(1.2);
  }

  100% {
    transform: translateY(-105vh) translateX(calc(var(--travel-x, -20px) * 1.5)) scale(0.5);
    opacity: 0;
  }
}

/* ─── Utility ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-horror);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin-top: 14px;
}

.highlight {
  color: var(--orange);
  text-shadow: 0 0 8px var(--orange-glow);
}

.red {
  color: var(--red);
  font-weight: 600;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav.scrolled {
  background: rgba(10, 11, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 81, 0, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-text-logo {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform var(--transition);
  display: inline-block;
  cursor: none;
}

.nav-text-logo:hover {
  transform: scale(1.03);
}

.nav-text-logo .accent-orange {
  color: var(--orange);
  font-family: var(--font-horror);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px var(--orange-glow);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a.nav-cta {
  color: var(--white);
  border: 1px solid var(--gray-600);
  padding: 6px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a.nav-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 15px var(--orange-glow);
  color: var(--white);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 15px var(--orange-glow);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #ff6600;
  box-shadow: 0 0 25px rgba(255, 81, 0, 0.7);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-600);
}

.btn-ghost:hover {
  border-color: var(--orange);
  background: rgba(255, 81, 0, 0.08);
  box-shadow: 0 0 15px var(--orange-glow);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 46px;
  font-size: 0.95rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.85)),
    radial-gradient(circle at 50% 50%, rgba(255, 81, 0, 0.1) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='concrete'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.08' numOctaves='4' result='noise'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23concrete)'/%3E%3C/svg%3E");
  background-color: #0b0c0d;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--orange);
  text-shadow: 0 0 8px var(--orange-glow);
}

.hero-text-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  user-select: none;
}

.hero-text-logo .logo-top {
  font-family: var(--font-body);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #d1d5db;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 2px 2px 2px rgba(255, 255, 255, 0.15);
  margin-right: -0.15em;
}

.hero-text-logo .logo-mid {
  font-family: var(--font-horror);
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ff3c00;
  text-shadow: 0 0 10px #ff3c00, 0 0 30px rgba(255, 60, 0, 0.8), 0 0 50px rgba(255, 60, 0, 0.5);
  line-height: 0.95;
  margin-bottom: 8px;
  animation: fire-flicker 3s ease-in-out infinite alternate;
}

.hero-text-logo .logo-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  letter-spacing: 0.3em;
  color: var(--off-white);
  text-transform: uppercase;
  margin-right: -0.3em;
  opacity: 0.8;
}

@keyframes fire-flicker {

  0%,
  100% {
    text-shadow: 0 0 10px #ff3c00, 0 0 30px rgba(255, 60, 0, 0.8), 0 0 50px rgba(255, 60, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 12px #ff6600, 0 0 35px rgba(255, 102, 0, 0.9), 0 0 60px rgba(255, 102, 0, 0.6), 0 0 10px rgba(255, 255, 255, 0.2);
  }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--off-white);
  font-weight: 300;
  letter-spacing: 0.08em;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

.scroll-hint {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gray-400);
}

.scroll-line {
  width: 2px;
  height: 45px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ─── GLITCH ─── */
.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch-text::before {
  color: rgba(255, 81, 0, 0.8);
  animation: glitch-1 4s steps(1) infinite;
}

.glitch-text::after {
  color: rgba(255, 255, 255, 0.3);
  animation: glitch-2 4s steps(1) infinite;
}

@keyframes glitch-1 {

  0%,
  95%,
  100% {
    clip-path: none;
    transform: none;
  }

  96% {
    clip-path: inset(30% 0 40% 0);
    transform: translate(-4px, -2px);
  }

  98% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(4px, 2px);
  }
}

@keyframes glitch-2 {

  0%,
  93%,
  100% {
    clip-path: none;
    transform: none;
  }

  94% {
    clip-path: inset(10% 0 80% 0);
    transform: translate(3px, 1px);
  }

  97% {
    clip-path: inset(45% 0 35% 0);
    transform: translate(-3px, -1px);
  }
}

/* ─── ABOUT ─── */
.about {
  padding: var(--section-pad) 0;
  background: var(--dark-gray);
  position: relative;
  border-top: 1px solid rgba(255, 81, 0, 0.15);
  border-bottom: 1px solid rgba(255, 81, 0, 0.15);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.lore {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 24px;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}

.lore.italic {
  font-style: italic;
  color: var(--gray-400);
}

.divider {
  width: 50px;
  height: 1px;
  background: var(--gray-600);
  margin: 30px 0;
}

.desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 6px;
  padding: 24px 20px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 81, 0, 0.12);
}

.feature-icon {
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
}

.feature-card h3 {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ─── TRAILER & SECURITY SCREEN ─── */
.trailer-section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* CCTV Style Container Frame */
.cctv-frame {
  position: relative;
  background: #000;
  border: 12px solid #222;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 81, 0, 0.1);
  overflow: hidden;
}

/* Screen HUD Overlays */
.cctv-hud {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  padding: clamp(12px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  letter-spacing: 0.15em;
}

.cctv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cctv-rec {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff2222;
}

.cctv-rec-dot {
  width: 10px;
  height: 10px;
  background: #ff2222;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff2222;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

.cctv-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cctv-corners {
  position: absolute;
  inset: 20px;
  z-index: 2;
  pointer-events: none;
  background: 
    linear-gradient(to right, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 0 0,
    linear-gradient(to bottom, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 0 0,
    linear-gradient(to left, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 100% 0,
    linear-gradient(to bottom, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 100% 0,
    linear-gradient(to right, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 0 100%,
    linear-gradient(to top, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 0 100%,
    linear-gradient(to left, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 100% 100%,
    linear-gradient(to top, rgba(255, 255, 255, 0.45) 2px, transparent 2px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.video-wrapper {
  position: relative;
  z-index: 1;
}

.trailer-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border: none;
  outline: none;
}

/* ─── GALLERY ─── */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--dark-gray);
  border-top: 1px solid rgba(255, 81, 0, 0.15);
  border-bottom: 1px solid rgba(255, 81, 0, 0.15);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--gray-700);
  cursor: none;
  aspect-ratio: 16 / 9;
  background: var(--gray-800);
  transition: border-color var(--transition);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  border-color: var(--orange);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 3;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
  transform: scale(0.85);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--gray-600);
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: none;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--orange);
}

/* ─── DOWNLOAD CTA ─── */
.download-section {
  padding: var(--section-pad) 0;
  position: relative;
  background: var(--black);
}

.download-card {
  text-align: center;
  position: relative;
  padding: 90px 40px;
  border: 1px solid rgba(255, 81, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 11, 12, 0.9), rgba(10, 11, 12, 0.95)),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff5100' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.download-glitch {
  font-family: var(--font-horror);
  font-size: clamp(4rem, 12vw, 8.5rem);
  color: rgba(255, 81, 0, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  animation: bg-glitch 5s steps(1) infinite;
}

@keyframes bg-glitch {

  0%,
  90%,
  100% {
    transform: translate(-50%, -50%) skew(0deg);
    opacity: 0.05;
  }

  91% {
    transform: translate(-48%, -50%) skew(-3deg);
    opacity: 0.08;
  }

  93% {
    transform: translate(-52%, -50%) skew(2deg);
    opacity: 0.04;
  }
}

.download-title {
  font-family: var(--font-horror);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  position: relative;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.download-sub {
  color: var(--gray-400);
  font-size: 1rem;
  margin-bottom: 40px;
  position: relative;
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px 0 40px;
  background: var(--dark-gray);
  border-top: 1px solid rgba(255, 81, 0, 0.15);
  text-align: center;
}

.footer-text-logo {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-text-logo span {
  color: var(--orange);
  font-family: var(--font-horror);
  font-size: 1.5rem;
  text-shadow: 0 0 8px var(--orange-glow);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.footer-sub {
  font-size: 0.72rem;
  color: var(--gray-600);
}

/* ─── Animations for scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 60px 20px;
  }

  :root {
    --section-pad: 75px;
  }
}