/* MAIN.CSS - RESET E BASE CYBERPUNK */

.about-quote {
  margin-top: 1.2em;
  font-size: 1.2em;
  color: #00ffe7;
  text-shadow: 0 0 6px #00ffe7, 0 0 20px #00ffe766;
  animation: glitch-anim 2.2s infinite linear alternate;
  position: relative;
  z-index: 1;
}
@keyframes glitch-anim {
  0% { text-shadow: 0 0 6px #00ffe7, 0 0 20px #00ffe766; }
  20% { text-shadow: 2px 0 #ff00ea, -2px 0 #00ffe7; }
  40% { text-shadow: -2px 0 #00ffe7, 2px 0 #ff00ea; }
  60% { text-shadow: 0 2px #00ffe7, 0 -2px #ff00ea; }
  100% { text-shadow: 0 0 6px #00ffe7, 0 0 20px #00ffe766; }
}

.projects-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.project-card.neon {
  background: rgba(10,10,30,0.85);
  border: 2px solid var(--neon-cyan);
  border-radius: 12px;
  box-shadow: 0 0 18px var(--neon-cyan), 0 0 40px var(--neon-magenta);
  padding: 1.5rem 1.1rem 1.1rem 1.1rem;
  transition: transform 0.23s, box-shadow 0.23s;
  position: relative;
  overflow: hidden;
  animation: cyber-card-in 1.1s cubic-bezier(.7,-0.2,.3,1.3);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  text-align: center;
}
.project-card.neon:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 0 30px #00ffe7, 0 0 80px #ff00ea77;
  background: #00ffe7;
  color: #181924;
}
.project-logo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3em;
}
.project-logo {
  max-height: 36px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 7px;
  padding: 2px 6px;
  box-shadow: 0 0 10px #00ffe7;
  filter: drop-shadow(0 0 7px #00ffe7);
  transition: filter 0.22s, box-shadow 0.22s;
}
.project-logo:hover {
  filter: drop-shadow(0 0 12px #00ffe7);
  box-shadow: 0 0 24px #00ffe7;
}
@media (max-width: 700px) {
  .project-logo {
    max-height: 28px;
    padding: 2px 3px;
  }
}
.project-icon {
  font-size: 2.1em;
  margin-bottom: 0.5em;
}
.project-title {
  font-weight: 700;
  margin-bottom: 0.3em;
  font-size: 1.18em;
}

/* Timeline Neon */
.timeline-neon {
  position: relative;
  margin: 2rem auto 1rem auto;
  padding-left: 2.5rem;
  border-left: 2.5px solid #00ffe7;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}
.timeline-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #181924;
  border: 2.5px solid #00ffe7;
  box-shadow: 0 0 10px #00ffe7, 0 0 30px #00ffe766;
  position: absolute;
  left: -31px;
  top: 4px;
}
.timeline-content {
  background: rgba(0,255,231,0.07);
  border-radius: 10px;
  padding: 0.7em 1.2em;
  color: #00ffe7;
  margin-left: 0.5em;
  min-width: 220px;
}
.timeline-title {
  font-weight: 700;
  font-size: 1.1em;
}
.timeline-org {
  font-size: 0.98em;
  opacity: 0.8;
}

/* Social Cards */
.social-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.3rem;
}
.social-card.neon {
  background: rgba(10,10,30,0.93);
  border: 2px solid #00ffe7;
  border-radius: 18px;
  box-shadow: 0 0 18px #00ffe7, 0 0 40px #00ffe7aa;
  padding: 1.3rem 1.2rem 1.1rem 1.2rem;
  color: #00ffe7;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s, background 0.22s, color 0.22s;
  text-align: center;
}
.social-card.neon:hover {
  background: #00ffe7;
  color: #181924;
  box-shadow: 0 0 32px #00ffe7, 0 0 70px #ff00ea;
  border-color: #ff00ea;
}
.social-content {
  color: inherit;
}

.social-card.neon:hover {
  background: #00ffe7;
  color: #181924;
  box-shadow: 0 0 30px #00ffe7, 0 0 60px #ff00ea77;
}
.social-icon {
  font-size: 2em;
  margin-top: 0.1em;
}
.social-title {
  font-weight: 700;
  font-size: 1.1em;
}
.social-desc {
  font-size: 0.98em;
  opacity: 0.85;
}

/* Ambiente Blocks */
.ambiente-blocks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.3rem;
}

/* Backed Projects Section */
.backed-section {
  margin: 2.5rem 0;
  padding: 2rem 1rem;
  background: rgba(10,10,30,0.7);
  border-radius: 12px;
  box-shadow: 0 0 20px var(--neon-cyan);
}
.backed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
  justify-items: center;
}
.backed-card.neon {
  background: rgba(10,10,30,0.93);
  border: 2px solid #00ffe7;
  border-radius: 16px;
  box-shadow: 0 0 18px #00ffe7, 0 0 40px #00ffe7aa;
  padding: 1.3rem 1.1rem 1.1rem 1.1rem;
  color: #00ffe7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: box-shadow 0.22s, border-color 0.22s, background 0.22s, color 0.22s;
  min-width: 0;
  max-width: 340px;
  text-align: center;
  position: relative;
}
.backed-card.neon:hover {
  background: #00ffe7;
  color: #181924;
  box-shadow: 0 0 32px #00ffe7, 0 0 70px #ff00ea;
  border-color: #ff00ea;
}
.backed-title {
  font-weight: 800;
  font-size: 1.13em;
  letter-spacing: 0.5px;
  margin-bottom: 0.1em;
}
.backed-desc {
  font-size: 1.04em;
  opacity: 0.88;
  margin-bottom: 0.2em;
}
.backed-link {
  color: #fff;
  background: linear-gradient(90deg, #00ffe7 60%, #ff00ea 100%);
  padding: 0.21em 0.9em;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.97em;
  text-decoration: none;
  box-shadow: 0 0 8px #00ffe7, 0 0 18px #ff00ea77;
  transition: background 0.16s, color 0.16s;
  margin-top: 0.2em;
  display: inline-block;
}
.backed-link:hover {
  background: #ff00ea;
  color: #fff;
  box-shadow: 0 0 18px #ff00ea, 0 0 26px #00ffe7;
}
@media (max-width: 700px) {
  .backed-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .backed-card.neon {
    padding: 1.1rem 0.8rem 0.9rem 0.8rem;
    max-width: 100%;
  }
}

.ambiente-block.neon-border {
  background: rgba(10,10,30,0.93);
  border: 2px solid #00ffe7;
  border-radius: 18px;
  box-shadow: 0 0 18px #00ffe7, 0 0 40px #00ffe7aa;
  padding: 1.2rem 1.2rem 1.1rem 1.2rem;
  color: #00ffe7;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s, background 0.22s, color 0.22s;
  text-align: center;
}
.ambiente-block.neon-border:hover {
  background: #00ffe7;
  color: #181924;
  box-shadow: 0 0 32px #00ffe7, 0 0 70px #ff00ea;
  border-color: #ff00ea;
}
.ambiente-content {
  color: inherit;
}

.ambiente-block.neon-border:hover {
  border-color: #ff00ea;
  box-shadow: 0 0 30px #ff00ea, 0 0 60px #00ffe7;
}
.ambiente-icon {
  font-size: 2em;
  margin-top: 0.1em;
}
.ambiente-title {
  font-weight: 700;
  font-size: 1.1em;
}
.ambiente-desc {
  font-size: 0.98em;
  opacity: 0.85;
}

/* --- INVESTOR SECTION --- */
.investor-blocks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.3rem;
}
.investor-block.neon-border {
  background: rgba(10, 10, 30, 0.93);
  border: 2px solid #00ffe7;
  border-radius: 18px;
  box-shadow: 0 0 14px #00ffe7, 0 0 22px #00ffe7aa;
  padding: 1.3rem 1.2rem 1.2rem 1.2rem;
  color: #00ffe7;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}
.investor-block.neon-border:hover {
  border-color: #ff00ea;
  box-shadow: 0 0 30px #ff00ea, 0 0 60px #00ffe7;
}
.investor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  margin: 0 0 0.3em 0;
}
.investor-logo {
  max-height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 7px #00ffe7);
  background: #fff;
  border-radius: 7px;
  padding: 2px 6px;
  box-shadow: 0 0 10px #00ffe7;
  transition: filter 0.22s, box-shadow 0.22s;
}
.investor-logo:hover {
  filter: drop-shadow(0 0 12px #00ffe7);
  box-shadow: 0 0 24px #00ffe7;
}
@media (max-width: 700px) {
  .investor-logo {
    max-height: 28px;
    padding: 2px 3px;
  }
}

.investor-title a {
  color: #00ffe7;
  font-weight: 700;
  font-size: 1.15em;
  text-shadow: 0 0 5px #00ffe7, 0 0 10px #00ffe7;
  text-decoration: none;
  transition: color 0.2s;
}
.investor-title a:hover {
  color: #ff00ea;
  text-shadow: 0 0 10px #ff00ea, 0 0 20px #00ffe7;
}
.investor-desc {
  font-size: 1em;
  color: #b0f6ff;
  opacity: 0.98;
  text-shadow: 0 0 4px #00ffe7;
}
@media (max-width: 700px) {
  .investor-blocks {
    flex-direction: column;
    gap: 1.1rem;
    align-items: stretch;
  }
  .investor-block.neon-border {
    max-width: 100%;
    min-width: 0;
  }
}

/* Testimonials Bubbles */
.testimonials-bubbles {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.3rem;
}
.testimonial-bubble.neon {
  background: rgba(0,255,231,0.10);
  border: 1.5px solid #00ffe7;
  border-radius: 28px 28px 28px 8px;
  box-shadow: 0 0 18px #00ffe7, 0 0 36px #00ffe733;
  padding: 1.2rem 1.6rem;
  color: #00ffe7;
  min-width: 220px;
  max-width: 350px;
  position: relative;
  font-style: italic;
  transition: box-shadow 0.2s, background 0.2s;
  animation: testimonialAppear 1.2s cubic-bezier(0.6,0.1,0.4,1) both;
}
.testimonial-bubble.neon:hover {
  background: #00ffe7;
  color: #181924;
  box-shadow: 0 0 30px #00ffe7, 0 0 60px #ff00ea77;
}
@keyframes testimonialAppear {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.testimonial-author {
  margin-top: 0.7em;
  font-size: 0.97em;
  opacity: 0.8;
  font-style: normal;
}

/* News Neon */
.news-list.neon-news {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.3rem;
}
.news-card.neon {
  background: rgba(0,255,231,0.07);
  border: 1.5px solid #00ffe7;
  border-radius: 14px;
  box-shadow: 0 0 12px #00ffe7, 0 0 36px #00ffe733;
  padding: 1.1rem 1.5rem;
  color: #00ffe7;
  min-width: 220px;
  max-width: 350px;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
}
.news-card.neon:hover {
  background: #00ffe7;
  color: #181924;
  box-shadow: 0 0 30px #00ffe7, 0 0 60px #ff00ea77;
}

/* Highlight animato per parole chiave */
.highlight-cyber {
  background: linear-gradient(90deg, #00ffe7 30%, #ff00ea 70%);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #181924;
  padding: 0.1em 0.4em;
  border-radius: 8px;
  animation: highlightMove 3s linear infinite alternate;
}
@keyframes highlightMove {
  0% { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

/* Visione - linea neon verticale */
.vision-section {
  position: relative;
  display: flex;
  align-items: stretch;
}
.vision-vertical-bar {
  width: 7px;
  min-width: 7px;
  background: linear-gradient(180deg, #00ffe7 60%, #ff00ea 100%);
  border-radius: 8px;
  margin-right: 1.5rem;
  box-shadow: 0 0 18px #00ffe7, 0 0 40px #ff00ea77;
}
.vision-content {
  flex: 1;
}

/* --- HERO TITLE WRAPPER: RISERVA SPAZIO MASSIMO PER TITOLO GLITCH --- */
.hero-title-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-title-max {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  letter-spacing: inherit;
}
.hero-title, .glitch-text.hero-title, .hero-section .glitch-text {
  min-height: 2.8em;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero-title, .glitch-text.hero-title, .hero-section .glitch-text {
    font-size: clamp(1.2em, 6vw, 1.8em);
  }
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 600px) {
  .hero-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8em;
    margin-bottom: 0.7em;
  }
  .hero-link {
    flex: 0 0 auto;
    margin: 0 0.18em;
  }
  .hero-link svg {
    width: 22px !important;
    height: 22px !important;
  }
  .projects-grid,
  .interessi-grid,
  .social-cards,
  .ambiente-blocks,
  .testimonials-bubbles,
  .news-list.neon-news {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .project-card.neon,
  .social-card.neon,
  .ambiente-block.neon-border,
  .testimonial-bubble.neon,
  .news-card.neon {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 1rem 0.8rem;
    font-size: 1em;
  }
  .about-quote {
    font-size: 1em;
    padding: 0 0.3em;
    text-align: center;
  }
  .timeline-neon {
    padding-left: 1.2rem;
    margin-left: 0;
    border-left-width: 2px;
  }
  .timeline-marker {
    width: 13px;
    height: 13px;
    left: -19px;
    top: 5px;
  }
  .timeline-content {
    min-width: 0;
    font-size: 0.97em;
    padding: 0.5em 0.7em;
  }
  .vision-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .vision-vertical-bar {
    width: 100%;
    min-width: 0;
    height: 6px;
    margin: 0 0 1rem 0;
    background: linear-gradient(90deg, #00ffe7 60%, #ff00ea 100%);
    box-shadow: 0 0 10px #00ffe7, 0 0 20px #ff00ea77;
  }
  .vision-content {
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 0.7em;
    font-size: 0.98em;
    text-align: center;
  }
  .footer-claim {
    font-size: 0.97em;
    margin-top: 0.7em;
    padding: 0 0.4em;
  }
  .highlight-cyber {
    font-size: 1em;
    padding: 0.08em 0.3em;
  }
}
@media (max-width: 480px) {
  .about-section, .vision-section, .projects-section, .associazioni-section, .sociale-section, .ambiente-section, .testimonianze-section, .news-section {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  h2, h3, h4 {
    font-size: 1.1em !important;
  }
  .project-icon, .social-icon, .ambiente-icon {
    font-size: 1.5em;
  }
  .chip.neon {
    font-size: 1em;
    padding: 0.4rem 1rem;
  }
}


.interessi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.chip.neon {
  display: flex;
  align-items: center;
  background: rgba(0,255,231,0.08);
  border: 1.5px solid #00ffe7;
  color: #00ffe7;
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  font-size: 1.15rem;
  border-radius: 24px;
  padding: 0.6rem 1.4rem;
  box-shadow: 0 0 12px #00ffe7, 0 0 24px #00ffe733;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  user-select: none;
}
.chip.neon:hover {
  background: #00ffe7;
  color: #181924;
  box-shadow: 0 0 24px #00ffe7, 0 0 60px #00ffe7;
  transform: scale(1.07);
}
.chip-icon {
  margin-right: 0.6em;
  font-size: 1.3em;
}

:root {
  --accent: #38e6d1;
  --bg-main: #f8f9fa;
  --text-main: #181924;
  --text-secondary: #4a4a4a;
  --box-bg: #fff;
  --box-blur: 8px;
  --border-radius: 20px;
  --font-main: 'Inter', 'system-ui', sans-serif;
  --font-title: 'Montserrat', 'Rajdhani', 'Orbitron', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  font-family: var(--font-main);
  background: var(--dark-bg);
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  transition: background 0.5s;
}
.cyber-body {
  cursor: none;
}
.cyber-header {
  width: 100vw;
  background: rgba(10,10,30,0.9);
  box-shadow: 0 0 30px var(--neon-cyan);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.cyber-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo-glitch {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-shadow: 0 0 8px var(--neon-cyan);
  user-select: none;
}
.logo-glitch span {
  color: var(--neon-magenta);
}
.cyber-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.cyber-nav a {
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.cyber-nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.cyber-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  gap: 1.5rem;
}
.cyber-hero h1 {
  font-family: var(--font-title);
  font-size: 3rem;
  letter-spacing: 2px;
  color: var(--neon-cyan);
}
.cyber-subtitle {
  font-size: 1.25rem;
  color: var(--neon-magenta);
  letter-spacing: 1px;
}
.neon {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan), 0 0 30px var(--neon-cyan);
}
.cyber-btn {
  display: inline-block;
  background: var(--neon-cyan);
  color: #111;
  border: none;
  border-radius: 3px;
  padding: 0.75rem 2rem;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 10px var(--neon-cyan);
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cyber-btn.neon:hover {
  background: var(--neon-magenta);
  color: #fff;
  box-shadow: 0 0 20px var(--neon-magenta);
}
.cyber-section {
  margin: 2.5rem 0;
  padding: 2rem 1rem;
  background: rgba(10,10,30,0.7);
  border-radius: 12px;
  box-shadow: 0 0 20px var(--neon-cyan);
}
.projects-grid, .media-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 1.5rem;
}
.cyber-footer {
  width: 100vw;
  background: rgba(10,10,30,0.95);
  color: var(--neon-cyan);
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  box-shadow: 0 0 30px var(--neon-cyan);
  margin-top: 2rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-social a {
  color: var(--neon-cyan);
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--neon-magenta);
}
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #050510;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.glitch-preloader-text {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--neon-cyan), 0 0 40px var(--neon-cyan);
  margin-bottom: 1.8rem;
  animation: glitch 2s infinite linear alternate-reverse;
}
.preloader-bar {
  width: 220px;
  height: 7px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-cyan));
  border-radius: 4px;
  box-shadow: 0 0 20px var(--neon-cyan);
  animation: preloader-bar-move 2s infinite linear alternate;
}
@keyframes glitch {
  0% { transform: skewX(0deg); }
  10% { transform: skewX(8deg); color: var(--neon-magenta); }
  20% { transform: skewX(-8deg); color: var(--neon-cyan); }
  30% { transform: skewX(3deg); color: var(--neon-yellow); }
  40% { transform: skewX(-3deg); color: var(--neon-cyan); }
  100% { transform: skewX(0deg); }
}
@keyframes preloader-bar-move {
  0% { box-shadow: 0 0 20px var(--neon-cyan); }
  100% { box-shadow: 0 0 40px var(--neon-magenta); }
}
