/* ========================================================
   Basic.Glitch — style.css
   ======================================================== */

/* Variables */
:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --fg: #e6eef8;
  --muted: #9aa7b6;
  --neon: #00fff7;
  --neon-mag: #ff1ccf;
  --neon-2: #00ff3e;
  --neon-org: #ff5f1f;
  --neon-limon: #d0ff00;
  --neon-blu: #0a7aff;
  --neon-yel: #ffff00;
  --neon-pur: #c724ff;
  --border: rgba(255,255,255,0.04);
  --glass: rgba(255,255,255,0.03);
  --card-radius: 12px;
  --max-width: 1100px;
  --stroke-width: 2px;
  --stroke-color: #0a7aff;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Basic reset */
* {
  box-sizing: border-box;
}

/* ACCESSIBILITY: Keyboard Focus Styles */
:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 4px;
  box-shadow: 0 0 10px var(--neon);
  border-radius: 4px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Audiowide", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--fg);
}

/* GLOBAL ICON GLOW & SIZE */
img[src*=".svg"], .icon {
  width: 24px;
  height: 24px;
  filter: invert(1) drop-shadow(0 0 5px var(--neon));
  transition: filter 0.3s ease, transform 0.3s ease;
  object-fit: contain;
}

img[src*=".svg"]:hover, .icon:hover {
  filter: invert(1) drop-shadow(0 0 12px var(--neon));
  transform: scale(1.1);
}

.about-icons .icon {
  width: 48px;
  height: 48px;
}

.nav-link img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

body {
  position: relative;
}

/* REUSABLE NEON GRID SECTION */
.neon-grid-section {
  position: relative;
  background: #000 !important;
  min-height: 50vh;
  overflow: hidden;
  width: 100%;
}

.neon-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background-image: 
    linear-gradient(to right, rgba(0, 255, 247, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 255, 247, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMoveDownRight 40s linear infinite;
}

.neon-grid-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background-image: 
    linear-gradient(to right, rgba(255, 28, 207, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 28, 207, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 30px 30px;
  animation: gridMoveUpLeft 35s linear infinite;
}

/* 3D CARD */
.cyber-card {
  position: relative;
  cursor: pointer;
  width: 320px;
  height: 450px;
  border-radius: 15px;
}

.card-3d-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cyber-card:hover .card-3d-wrapper {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; 
  -webkit-backface-visibility: hidden;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: space-between;
  overflow: hidden; /* Clips background to face radius */
  top: 0;
  left: 0;
  background: rgba(10, 15, 30, 0.95);
  border: 2px solid var(--border);
}

.card-front {
  transform: rotateY(0deg);
  z-index: 2;
}

.card-back {
  transform: rotateY(180deg);
  z-index: 1;
}

.card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
  z-index: 3;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: var(--neon);
  text-transform: uppercase;
}

p {
  color: var(--fg);
}

a {
  color: var(--neon-2);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width); 
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

img {
  max-width: 100%;
  height: auto;
}

/* HEADER */
.site-header{position:sticky;top:0;background:rgba(0,0,0,0.9);border-bottom:1px solid var(--border);z-index:999;backdrop-filter:blur(10px); width: 100%;}
.header-inner{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:15px;padding:15px 0}
.brand{font-family:"Orbitron",sans-serif;color:var(--neon);font-weight:700;text-decoration:none;font-size:1.5rem;transition:color 0.3s ease, text-shadow 0.3s ease;}
.nav{display:flex;gap:12px;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
.nav-link{display:flex;align-items:center;gap:6px;color:var(--fg);text-decoration:none;padding:6px 10px;border-radius:8px;font-weight:600; font-size: 0.9rem; white-space: nowrap;}
.nav-link:hover{color:var(--neon-2);text-shadow:0 0 8px rgba(0,255,74,0.08)}

/* Brand Color Randomizer Classes */
.brand-neon-1 { color: var(--neon) !important; text-shadow: 0 0 10px var(--neon); }
.brand-neon-2 { color: var(--neon-mag) !important; text-shadow: 0 0 10px var(--neon-mag); }
.brand-neon-3 { color: var(--neon-2) !important; text-shadow: 0 0 10px var(--neon-2); }
.brand-neon-4 { color: var(--neon-org) !important; text-shadow: 0 0 10px var(--neon-org); }
.brand-neon-5 { color: var(--neon-limon) !important; text-shadow: 0 0 10px var(--neon-limon); }
.brand-neon-6 { color: var(--neon-blu) !important; text-shadow: 0 0 10px var(--neon-blu); }
.brand-neon-7 { color: var(--neon-yel) !important; text-shadow: 0 0 10px var(--neon-yel); }
.brand-neon-8 { color: var(--neon-pur) !important; text-shadow: 0 0 10px var(--neon-pur); }

/* HERO */
.hero{min-height:70vh;position:relative;z-index:1;display:flex;align-items:center;justify-content:center;overflow:hidden;color:white}
.hero-bg{position:absolute;inset:0;background-position:center;background-size:cover;background-repeat:no-repeat;filter:brightness(.95) saturate(1.02);z-index:0}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.6);z-index:1}
.hero-inner{position:relative;z-index:2;text-align:center;padding:20px;color: var(--fg); width: 100%;}

.title {
  font-size: clamp(2.6rem, 9vw, 7.7rem);
  margin: 0 0 6px;
  color: transparent !important;
  background: linear-gradient(90deg, var(--neon), var(--neon-pur), var(--neon-mag)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.subtitle {
  font-size: clamp(1.6rem, 6vw, 4.4rem);
  margin: 0 auto 12px;
  max-width: 780px;
  color: transparent !important;
  background: linear-gradient(90deg, var(--neon), var(--neon-mag), var(--neon-org)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* FILTER DEFINITION */
.svg-filter { position: absolute; width: 0; height: 0; pointer-events: none; }

/* BUTTONS */
.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--neon);
  background: rgba(0, 255, 247, 0.05);
  color: var(--neon);
  font-family: 'Share Tech Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.2);
}

.btn-neon:hover {
  background: rgba(0, 255, 247, 0.15);
  box-shadow: 0 0 20px var(--neon);
  transform: translateY(-2px);
  filter: url('#glitch-filter');
}

.nav-link:hover {
  color: var(--neon-2);
  text-shadow: 0 0 8px rgba(0,255,74,0.08);
  filter: url('#glitch-filter');
}

/* SCROLL GLITCH ANIMATION */
@keyframes scrollGlitchAnim {
  0% { transform: translate(0); filter: hue-rotate(0deg); }
  20% { transform: translate(-2px, 2px); filter: hue-rotate(90deg); }
  40% { transform: translate(2px, -2px); filter: hue-rotate(180deg); }
  60% { transform: translate(-2px, 2px); filter: hue-rotate(270deg); }
  80% { transform: translate(2px, -2px); filter: hue-rotate(0deg); }
  100% { transform: translate(0); filter: hue-rotate(0deg); }
}

.scroll-glitch-active body {
  animation: scrollGlitchAnim 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.btn-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 247, 0.3);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.3);
  font-family: 'Share Tech Mono', monospace;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-small:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

.btn-small.active {
  background: var(--neon);
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 15px var(--neon);
}

/* GALLERY */
.gallery-grid { display: grid; gap: 18px; justify-content: center; }
@media(min-width:640px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}

.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--panel);
  border-radius: var(--card-radius);
  padding: 14px;
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* CYBER TITLES */
.cyber-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.cyber-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 8vw, 3.5rem); 
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  width: 100%;
  overflow-wrap: anywhere; 
  word-break: normal; 
}

.cyber-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon);
  text-stroke: 1.5px var(--neon);
  position: relative;
  display: inline; 
}

.cyber-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--neon);
  z-index: -1;
  text-shadow: 0 0 20px var(--neon), 0 0 40px var(--neon);
  animation: glitch 3s infinite;
  pointer-events: none;
}

.cyber-text-mag { -webkit-text-stroke: 1.5px var(--neon-mag); text-stroke: 1.5px var(--neon-mag); }
.cyber-text-mag::before { color: var(--neon-mag); text-shadow: 0 0 20px var(--neon-mag); }

.cyber-text-pur { -webkit-text-stroke: 1.5px var(--neon-pur); text-stroke: 1.5px var(--neon-pur); }
.cyber-text-pur::before { color: var(--neon-pur); text-shadow: 0 0 20px var(--neon-pur); }

.cyber-text-blu { -webkit-text-stroke: 1.5px var(--neon-blu); text-stroke: 1.5px var(--neon-blu); }
.cyber-text-blu::before { color: var(--neon-blu); text-shadow: 0 0 20px var(--neon-blu); }

.cyber-text-grn { -webkit-text-stroke: 1.5px var(--neon-2); text-stroke: 1.5px var(--neon-2); }
.cyber-text-grn::before { color: var(--neon-2); text-shadow: 0 0 20px var(--neon-2); }

.cyber-text-org { -webkit-text-stroke: 1.5px var(--neon-org); text-stroke: 1.5px var(--neon-org); }
.cyber-text-org::before { color: var(--neon-org); text-shadow: 0 0 20px var(--neon-org); }

.cyber-text-lim { -webkit-text-stroke: 1.5px var(--neon-limon); text-stroke: 1.5px var(--neon-limon); }
.cyber-text-lim::before { color: var(--neon-limon); text-shadow: 0 0 20px var(--neon-limon); }

.cyber-text-yel { -webkit-text-stroke: 1.5px var(--neon-yel); text-stroke: 1.5px var(--neon-yel); }
.cyber-text-yel::before { color: var(--neon-yel); text-shadow: 0 0 20px var(--neon-yel); }

@keyframes glitch {
  0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(0); }
  5% { clip-path: inset(25% 0 30% 0); transform: translate(-2px, 2px); }
  10% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
  15% { clip-path: inset(60% 0 30% 0); transform: translate(-1px, 1px); }
  20% { clip-path: inset(10% 0 80% 0); transform: translate(1px, -1px); }
}

/* COMMISSIONS */
.cyber-commissions {
  position: relative;
  padding: 5rem 2rem;
  min-height: 100vh;
  overflow: visible;
  z-index: 1;
}

.card-tier-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--muted);
  text-align: center;
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: var(--fg);
  text-align: center;
  margin: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
}

.card-price {
  font-family: 'Audiowide', cursive;
  font-size: 3rem;
  text-align: center;
  color: var(--fg);
  margin: 1rem 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.card-features {
  margin: 1.5rem 0;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature {
  font-family: 'Share Tech Mono', monospace;
  color: var(--muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.back-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.back-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.back-details p {
  font-family: 'Share Tech Mono', monospace;
  color: var(--fg);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.cyber-button {
  width: 100%;
  padding: 12px;
  background: rgba(0, 255, 247, 0.1);
  border: 1px solid var(--neon);
  color: var(--neon);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.cyber-button:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 20px var(--neon);
}

/* TIER SPECIFIC ACCENTS */
[data-tier="nano"] .card-front, [data-tier="nano"] .card-back { border-color: var(--neon); }
[data-tier="nano"] .card-title { -webkit-text-stroke: 1px var(--neon); text-shadow: 0 0 10px var(--neon); }
[data-tier="nano"] .back-title { color: var(--neon); }

[data-tier="broboticus"] .card-front, [data-tier="broboticus"] .card-back { border-color: var(--neon-2); }
[data-tier="broboticus"] .card-title { -webkit-text-stroke: 1px var(--neon-2); text-shadow: 0 0 10px var(--neon-2); }
[data-tier="broboticus"] .back-title { color: var(--neon-2); }

[data-tier="binary"] .card-front, [data-tier="binary"] .card-back { border-color: var(--neon-blu); }
[data-tier="binary"] .card-title { -webkit-text-stroke: 1px var(--neon-blu); text-shadow: 0 0 10px var(--neon-blu); }
[data-tier="binary"] .back-title { color: var(--neon-blu); }

[data-tier="synthweave"] .card-front, [data-tier="synthweave"] .card-back { border-color: var(--neon-org); }
[data-tier="synthweave"] .card-title { -webkit-text-stroke: 1px var(--neon-org); text-shadow: 0 0 10px var(--neon-org); font-size: 1.5rem; }
[data-tier="synthweave"] .back-title { color: var(--neon-org); }

[data-tier="quantum"] .card-front, [data-tier="quantum"] .card-back { border-color: var(--neon-mag); }
[data-tier="quantum"] .card-title { -webkit-text-stroke: 1px var(--neon-mag); text-shadow: 0 0 10px var(--neon-mag); }
[data-tier="quantum"] .back-title { color: var(--neon-mag); }

[data-tier="singularity"] .card-front, [data-tier="singularity"] .card-back { border-color: var(--neon-pur); }
[data-tier="singularity"] .card-title { -webkit-text-stroke: 1px var(--neon-pur); text-shadow: 0 0 10px var(--neon-pur); }
[data-tier="singularity"] .back-title { color: var(--neon-pur); }

.card-hint {
  font-family: 'Rajdhani', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* 3D CAROUSEL STYLES */
.carousel-scene {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin: 40px 0;
  pointer-events: none;
}

.carousel {
  width: 320px;
  height: 450px;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.carousel-cell {
  position: absolute;
  width: 320px;
  height: 450px;
  left: 0;
  top: 0;
  transform-style: preserve-3d;
  transition: opacity 0.5s, transform 1s;
  pointer-events: none;
}

.carousel-cell.is-active {
  pointer-events: auto;
  z-index: 100;
}

.carousel-cell.is-active .cyber-card {
  box-shadow: 0 0 30px var(--neon);
}

.carousel-cell .cyber-card {
  width: 100%;
  height: 100%;
  margin: 0;
}

.carousel-controls {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
  z-index: 1000;
  pointer-events: auto;
}

.carousel-btn {
  background: rgba(0,0,0,0.7);
  border: 2px solid var(--neon);
  color: var(--neon);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 20px var(--neon);
  transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox.hidden { display: none !important; }
.lb-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lb-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 255, 247, 0.3);
}
.lb-content h3 { margin-top: 20px; color: var(--neon); }
.lb-content p { color: var(--muted); text-align: center; }

/* LIGHTBOX NAVIGATION ICONS */
.lb-btn, .lb-nav {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  position: absolute;
  z-index: 10001;
}

.lb-btn {
  top: 20px;
  right: 20px;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lb-btn:hover, .lb-nav:hover {
  transform: scale(1.2); 
}

.lb-nav:hover {
  transform: translateY(-50%) scale(1.2); 
}

.lb-btn img, .lb-nav img {
  width: 32px;
  height: 32px;
  filter: invert(1) drop-shadow(0 0 5px var(--neon));
}

/* ABOUT PAGE STYLES */
.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
  background: transparent;
  border: 2px solid var(--neon); 
  border-radius: 15px;
  margin: 0 auto 3rem auto;
  max-width: 900px;
  backdrop-filter: none;
  cursor: default;
}

.avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid var(--neon);
  box-shadow: 0 0 20px var(--neon);
  object-fit: cover;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.bio-text { text-align: left; line-height: 1.6; }
.bio-text p { margin-bottom: 1.2rem; }
.about-icons { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; }

@media (max-width: 768px) {
  .carousel-scene { height: 500px; }
  .carousel { width: 280px; height: 400px; }
  .carousel-cell { width: 280px; height: 400px; }
  .cyber-card { width: 280px; height: 400px; }
  .container { padding: 10px; width: 100%; }
  .about-card { padding: 1.5rem; }
  
  /* Section Guardian Mobile Fixes */
  .section-guardian {
    height: 40vh !important; /* Smaller on mobile */
    opacity: 0.4; /* More subtle */
  }
  
  .guardian-container {
    pointer-events: none; /* Don't block clicks to buttons underneath */
  }
  
  .section-guardian {
    pointer-events: auto; /* Re-enable clicks on the image itself */
  }
}

/* FOOTER */
.site-footer {
  padding: 60px 20px;
  background: rgba(0,0,0,0.8);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-link {
  color: var(--neon);
  text-decoration: underline;
  transition: all 0.3s;
}

.footer-link:hover {
  color: var(--neon-mag);
}

@keyframes gridMoveDownRight {
  0% { background-position: 0px 0px; }
  100% { background-position: 120px 120px; }
}

@keyframes gridMoveUpLeft {
  0% { background-position: 30px 30px; }
  100% { background-position: -90px -90px; }
}