/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Share Tech Mono', monospace;
}

body {
  background: #050505;
  color: #00ff88;
  line-height: 1.6;
}

/* SCANLINES RETRO */
.scanlines {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 999;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  background: radial-gradient(circle, #0a0a0a, #000);
}

#hero h1 {
  font-size: 3rem;
  text-shadow: 0 0 10px #00ff88;
}

.typing {
  margin-top: 1rem;
  opacity: 0.8;
}

/* SECCIONES */
section {
  padding: 3rem 2rem;
  border-top: 1px solid #003322;
}

h2 {
  margin-bottom: 1rem;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stats-grid div {
  background: #020202;
  padding: 1.5rem;
  border: 1px solid #00ff88;
  text-align: center;
}

.stats-grid span {
  font-size: 2rem;
  display: block;
}

/* GALERÍA */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  border: 2px solid #00ff88;
  filter: grayscale(60%);
  transition: 0.3s;
}

.gallery img:hover {
  filter: none;
  transform: scale(1.05);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  #hero h1 {
    font-size: 2.2rem;
  }
}

.cursor {
  display: inline-block;
  animation: blink 1s steps(2, start) infinite;
}

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


.scroll-indicator {
  margin-top: 3rem;
  font-size: 2rem;
  color: #00ff88;
  text-align: center;
  animation: blink 1.2s infinite;
  opacity: 0.8;
}
