/* ── FONTS ── */
@font-face { font-family: 'Melete'; src: url('../css/fonts/Melete-Light.woff2') format('woff2'), url('../css/fonts/Melete-Light.woff') format('woff'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'Melete'; src: url('../css/fonts/Melete-Regular.woff2') format('woff2'), url('../css/fonts/Melete-Regular.woff') format('woff'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Melete'; src: url('../css/fonts/Melete-Bold.woff2') format('woff2'), url('../css/fonts/Melete-Bold.woff') format('woff'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Montserrat'; src: url('../css/fonts/Montserrat-Light.woff') format('woff'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'Montserrat'; src: url('../css/fonts/Montserrat-Regular.woff') format('woff'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Montserrat'; src: url('../css/fonts/Montserrat-Bold.woff') format('woff'); font-weight: 700; font-style: normal; }

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:        #C70000;
  --red-bright: #ff1a1a;
  --red-glow:   rgba(199,0,0,0.25);
  --red-neon:   rgba(255,0,0,0.6);
  --black:      #050505;
  --dark:       #0a0a0a;
  --card:       #0f0f0f;
  --border:     rgba(255,255,255,0.06);
  --border-red: rgba(199,0,0,0.3);
  --text:       #ffffff;
  --muted:      #aaaaaa;
  --font-head:  'Melete', sans-serif;
  --font-body:  'Montserrat', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; overflow-x: hidden; background: #000; }
body { background: transparent; color: var(--text); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; cursor: none; }
body.modal-open { overflow: hidden; position: fixed; width: 100%; left: 0; }
section, footer { position: relative; z-index: 3; }
@media (hover: none) { body { cursor: auto; } }

/* ── BACKGROUND ── */
.lava-bg {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
  opacity: 0.82; filter: saturate(1.05) brightness(0.88);
  will-change: transform; transform: translateZ(0);
}
.background-glows {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; opacity: 0.92;
}
.glow-blob {
  position: absolute; width: min(46vw,560px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,28,28,0.2) 0%, rgba(199,0,0,0.11) 34%, rgba(199,0,0,0) 72%);
  filter: blur(58px); opacity: 0.48; mix-blend-mode: screen;
  transform: translate3d(0,0,0);
  animation: driftGlow 38s ease-in-out infinite alternate;
  will-change: transform;
}
.glow-blob-one   { left: -12vw; top: 10vh; animation-duration: 41s; }
.glow-blob-two   { right: -9vw; top: 5vh; width: min(38vw,480px); animation-delay: -9s; animation-duration: 46s; }
.glow-blob-three { left: 16vw; bottom: -16vh; width: min(44vw,540px); animation-delay: -17s; animation-duration: 52s; }
.glow-blob-four  { right: 16vw; bottom: 16vh; width: min(32vw,400px); opacity: 0.38; animation-delay: -25s; animation-duration: 44s; }
@keyframes driftGlow {
  0%   { transform: translate3d(-5vw,-3vh,0) scale(0.82); }
  35%  { transform: translate3d(9vw,7vh,0) scale(1.08); }
  70%  { transform: translate3d(-2vw,14vh,0) scale(0.94); }
  100% { transform: translate3d(5vw,-4vh,0) scale(1.16); }
}
/* Dark overlay — dims the background */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(0,0,0,0.42);
}

/* Vignette overlay */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.0), rgba(0,0,0,0.55) 80%),
    linear-gradient(90deg, rgba(0,0,0,0.65), transparent 28%, transparent 72%, rgba(0,0,0,0.65)),
    linear-gradient(0deg, rgba(0,0,0,0.60), transparent 28%, transparent 78%, rgba(0,0,0,0.42));
}

/* ── GRAIN & SCANLINES ── */
.grain {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px; animation: grainAnim 0.8s steps(1) infinite;
}
@keyframes grainAnim {
  0%   { background-position: 0 0; }
  20%  { background-position: -30px 10px; }
  40%  { background-position: 20px -15px; }
  60%  { background-position: -10px 25px; }
  80%  { background-position: 15px -5px; }
  100% { background-position: 0 0; }
}


/* ── CANVAS LAYERS ── */
#trailCanvas     { position: fixed; inset: 0; z-index: 9994; pointer-events: none; width: 100vw; height: 100vh; }
#lightningCanvas { position: fixed; inset: 0; z-index: 9; pointer-events: none; width: 100vw; height: 100vh; }
#threeCanvas     { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }

/* ── CURSOR ── */
.cursor-outer {
  position: fixed; width: 38px; height: 38px; border: 1px solid rgba(199,0,0,0.5);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: width .25s, height .25s, border-color .25s;
}
.cursor-inner {
  position: fixed; width: 6px; height: 6px; background: #ff1a1a;
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px #ff1a1a, 0 0 20px rgba(255,0,0,0.5);
}
body.cur-hover .cursor-outer { width: 58px; height: 58px; border-color: var(--red); background: rgba(199,0,0,0.04); }
@media (hover: none) { .cursor-outer, .cursor-inner, #trailCanvas { display: none !important; } }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: #000; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; }
.loader-logo-img { height: 52px; width: auto; filter: drop-shadow(0 0 12px var(--red)); }
.loader-text { font-family: var(--font-head); font-size: clamp(26px,6vw,48px); letter-spacing: 8px; color: var(--text); text-shadow: 0 0 20px var(--red), 0 0 40px var(--red-neon); }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.08); margin: 0 auto; border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0%; background: var(--red); box-shadow: 0 0 10px var(--red); transition: width 0.05s linear; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 40px; display: flex; align-items: center;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(5,5,5,0.95); backdrop-filter: blur(20px);
  padding: 14px 40px; border-bottom: 1px solid var(--border-red);
  box-shadow: 0 0 30px rgba(199,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-family: var(--font-head); font-size: 24px; letter-spacing: 4px; }
.nav-logo-img { height: 34px; width: auto; object-fit: contain; filter: drop-shadow(0 0 6px var(--red)); }
.nav-logo-text { text-shadow: 0 0 15px rgba(255,255,255,0.3); }
@media (max-width: 768px) { nav { padding: 16px 24px; } nav.scrolled { padding: 12px 24px; } }

/* ── HERO ── */
#hero {
  min-height: 100svh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: visible; padding-block: 72px 52px;
}
.hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 92px 24px 70px; max-width: 900px;
}
.hero-content::before { display: none; }
.hero-title { font-family: var(--font-head); font-size: clamp(36px,7vw,100px); line-height: 0.95; margin-bottom: 36px; letter-spacing: 4px; }
.title-mask { display: block; overflow: visible; padding: 0.05em 0.22em 0.14em; margin-inline: -0.22em; }
.title-line { display: block; transform: translateY(110%); opacity: 0; }
.glitch-text {
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 4px rgba(255,255,255,0.10);
}
.glitch-text.neon-active { animation: neonWhite 5s ease-in-out infinite; }
.title-red {
  color: var(--red) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 10px rgba(199,0,0,0.9), 0 0 20px rgba(199,0,0,0.5);
}
.title-red.neon-active { animation: neonRed 5s ease-in-out infinite 2.5s; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; opacity: 0; transform: translateY(16px); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: #fff; padding: 15px 32px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  border-radius: 2px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.neon-btn { box-shadow: 0 0 20px var(--red-glow), inset 0 0 20px rgba(199,0,0,0.1); }
.neon-btn:hover { background: #a30000; transform: translateY(-2px); box-shadow: 0 0 40px var(--red-neon), 0 12px 40px rgba(199,0,0,0.4) !important; }
.btn-primary svg { width: 15px; transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  color: var(--text); padding: 15px 32px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid var(--border-red); background: rgba(199,0,0,0.03);
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  border-radius: 2px; transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
}
.btn-secondary:hover { border-color: var(--red); background: rgba(199,0,0,0.07); box-shadow: 0 0 20px var(--red-glow); transform: translateY(-2px); }
.magnetic { position: relative; }

/* ── SHARED SECTION STYLES ── */
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.section-label-line { width: 48px; height: 1px; background: var(--red); box-shadow: 0 0 8px var(--red); flex-shrink: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.42s cubic-bezier(.22,1,.36,1), transform 0.42s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.tilt-card { transform-style: preserve-3d; will-change: transform; }
@media (max-width: 600px) { .section-label { margin-bottom: 42px; } }

/* ── SECTION TITLE GLOW ── */
.section-title-glow { display: inline-flex; gap: 0; flex-wrap: nowrap; width: max-content; }
.section-title-glow .glow-letter {
  display: inline-block; color: var(--red);
  font-family: var(--font-head); font-size: clamp(28px,3.2vw,48px);
  letter-spacing: 5px; line-height: 1.1; opacity: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.5), 0 0 6px rgba(199,0,0,0.35), 0 0 14px rgba(199,0,0,0.15);
  animation: glowPulse var(--sweep-duration, 6.4s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.5), 0 0 6px rgba(199,0,0,0.35), 0 0 14px rgba(199,0,0,0.15); }
  50%      { text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.5), 0 0 16px rgba(255,30,30,1), 0 0 40px rgba(255,0,0,0.85), 0 0 80px rgba(199,0,0,0.5); }
}

/* ── SERVICES ── */
#services { padding: 120px 40px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 2px; }
.service-card {
  background: var(--card); padding: 44px 36px; position: relative;
  overflow: hidden; border: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--red); box-shadow: 0 0 10px var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #111; box-shadow: 0 0 30px rgba(199,0,0,0.06), inset 0 0 40px rgba(199,0,0,0.02); }
.service-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--red); filter: drop-shadow(0 0 6px var(--red)); }
.service-title {
  font-family: var(--font-head); font-size: clamp(22px,2.4vw,26px);
  letter-spacing: 1.2px; line-height: 1.08; margin-bottom: 14px;
  text-shadow: 0 0 3px rgba(255,255,255,0.08);
  animation: neonWhite 7s ease-in-out infinite;
}
.service-card:nth-child(2) .service-title { animation-delay: 2.3s; }
.service-card:nth-child(3) .service-title { animation-delay: 4.6s; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.85; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } #services { padding: 80px 24px; } }

/* ── WORK ── */
#work { padding: 100px 40px; }
.work-header {
  max-width: 1200px; margin: 0 auto 50px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.work-header .section-label { margin-bottom: 0; }
.work-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 22px; background: transparent; border: 1px solid rgba(199,0,0,0.2);
  color: var(--muted); font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer;
  border-radius: 100px; transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 15px var(--red-glow); }
.album-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(18px,3vw,34px); }
.album-card {
  position: relative; min-width: 0; background: transparent;
  border: 0; color: var(--text); cursor: pointer; padding: 8px;
  text-align: left; overflow: visible; border-radius: 4px;
  transition: transform 0.3s, filter 0.3s, opacity 0.3s;
}
.album-card.card-hidden { display: none; }
.album-card::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 24px; height: 64%;
  background: radial-gradient(circle, rgba(199,0,0,0.34), transparent 68%);
  filter: blur(24px); opacity: 0.42; transition: opacity 0.3s, transform 0.3s; pointer-events: none;
}
.album-card:hover, .album-card:focus-visible { filter: drop-shadow(0 0 24px rgba(199,0,0,0.26)); outline: none; }
.album-card:hover::before, .album-card:focus-visible::before { opacity: 1; }
.album-cover { position: relative; display: block; height: clamp(220px,22vw,270px); margin-bottom: 18px; animation: albumFloat 5.5s ease-in-out infinite; }
.album-photo {
  position: absolute; left: 50%; top: 50%; width: 78%; height: 82%;
  object-fit: cover; display: block; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; background: #080808;
  box-shadow: 0 22px 50px rgba(0,0,0,0.58), 0 0 28px rgba(199,0,0,0.2);
  transition: transform 0.45s cubic-bezier(.16,1,.3,1), filter 0.45s, box-shadow 0.45s;
}
.album-photo-main { z-index: 3; transform: translate(-50%,-50%) rotate(0deg); }
.album-photo-back { z-index: 2; opacity: 0.72; filter: grayscale(35%) brightness(0.74); }
.album-photo-back.left  { transform: translate(-58%,-48%) rotate(-10deg); }
.album-photo-back.right { transform: translate(-42%,-51%) rotate(10deg); }
.album-card:hover .album-photo { box-shadow: 0 25px 60px rgba(0,0,0,0.62), 0 0 36px rgba(199,0,0,0.36); }
.album-card:hover .album-photo-main { transform: translate(-50%,-52%) rotate(-1deg) scale(1.03); }
.album-card:hover .album-photo-back.left  { transform: translate(-67%,-50%) rotate(-15deg); }
.album-card:hover .album-photo-back.right { transform: translate(-33%,-52%) rotate(15deg); }
.album-meta { position: relative; display: grid; gap: 6px; padding-top: 8px; }
.album-meta strong { font-family: var(--font-head); font-size: clamp(22px,2.2vw,28px); line-height: 1.05; letter-spacing: 2px; }
@keyframes albumFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@media (max-width: 1050px) { .album-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 768px)  { #work { padding: 80px 24px; } .album-grid { grid-template-columns: 1fr; } .album-cover { height: 260px; } }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  overflow: hidden; overscroll-behavior: none; touch-action: none;
}
.lightbox.open { opacity: 1; pointer-events: all; backdrop-filter: blur(18px); }
.lightbox-close {
  position: fixed; top: max(16px,env(safe-area-inset-top)); right: max(16px,env(safe-area-inset-right));
  width: 48px; height: 48px; background: var(--card); border: 1px solid var(--border-red);
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; transition: background 0.2s, box-shadow 0.2s; z-index: 2010;
}
.lightbox-close:hover { background: var(--red); box-shadow: 0 0 20px var(--red); }
.album-viewer-inner { position: absolute; inset: 0; }
.album-viewer-head { position: absolute; top: 28px; left: 36px; z-index: 30; pointer-events: none; }
.album-viewer-head span { color: var(--red); display: block; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.album-viewer-head h3 { font-family: var(--font-head); font-size: clamp(22px,3vw,42px); line-height: 0.95; letter-spacing: 2px; }
.album-stage {
  position: absolute; inset: 0; background: transparent; border: 0;
  perspective: 1400px; perspective-origin: 50% 50%;
  cursor: ns-resize; touch-action: none; overscroll-behavior: none;
}
.album-stage::before, .album-stage::after { content: ''; position: absolute; left: 0; right: 0; height: 20%; z-index: 20; pointer-events: none; }
.album-stage::before { top: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.90), rgba(0,0,0,0)); }
.album-stage::after  { bottom: 0; background: linear-gradient(to top, rgba(0,0,0,0.90), rgba(0,0,0,0)); }
.wheel-slot {
  position: absolute; left: 50%; top: 50%;
  width: min(62vw,560px); height: min(58vh,500px);
  display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d; will-change: transform, opacity, filter;
}
.wheel-slot img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block; border-radius: 3px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.65), 0 0 46px rgba(199,0,0,0.28);
  backface-visibility: hidden; pointer-events: none;
}
@media (max-width: 850px) { .album-viewer-head { top: 18px; left: 18px; } .wheel-slot { width: min(88vw,440px); height: min(54vh,440px); } }

/* ── CONTACT ── */
#contact { padding: 120px 40px; }
.contact-label-wrap { max-width: 1200px; margin: 0 auto 0; }
.contact-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-body); font-size: 13px; padding: 13px 16px;
  border-radius: 2px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(199,0,0,0.12), 0 0 20px rgba(199,0,0,0.08); }
.form-group textarea { resize: vertical; min-height: 104px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { display: flex; justify-content: center; }
.form-success { display: none; text-align: center; padding: 40px; background: rgba(199,0,0,0.06); border: 1px solid var(--red); border-radius: 2px; }
.form-success p { font-family: var(--font-head); font-size: 32px; letter-spacing: 4px; margin-bottom: 10px; }
.form-success span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .form-row { grid-template-columns: 1fr; } #contact { padding: 80px 24px; } }

/* ── FOOTER ── */
footer { padding: 36px 40px; border-top: 1px solid var(--border-red); display: flex; align-items: center; justify-content: center; }
.footer-copy { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
@media (max-width: 600px) { footer { padding: 32px 24px; } }

/* ── KEYFRAMES ── */
@keyframes neonWhite {
  0%   { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 4px rgba(255,255,255,0.10); }
  20%  { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 12px rgba(255,255,255,0.35), 0 0 30px rgba(255,255,255,0.18); }
  50%  { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 24px rgba(255,255,255,0.80), 0 0 55px rgba(255,255,255,0.45), 0 0 100px rgba(200,220,255,0.22); }
  80%  { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 12px rgba(255,255,255,0.35), 0 0 30px rgba(255,255,255,0.18); }
  100% { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 4px rgba(255,255,255,0.10); }
}
@keyframes neonRed {
  0%   { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 10px rgba(199,0,0,0.9), 0 0 22px rgba(199,0,0,0.5); }
  20%  { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 16px rgba(255,20,20,1.0), 0 0 32px rgba(255,0,0,0.7); }
  50%  { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 22px rgba(255,40,40,1.0), 0 0 44px rgba(255,0,0,0.8); }
  80%  { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 16px rgba(255,20,20,1.0), 0 0 32px rgba(255,0,0,0.7); }
  100% { text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.8), 0 0 10px rgba(199,0,0,0.9), 0 0 22px rgba(199,0,0,0.5); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
