/* styles.css */

/* Fuentes y base */
body {
  background-color: #000000;
  margin: 0;
  padding: 0;
  font-family: 'Special forces', monospace;
  color: #ff4e00; /* Títulos y texto en naranja técnico */
  overflow-x: hidden;
}

/* Marquees */
.marquee-left, .marquee-right {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 20px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.8rem;
  color: #ff4e00;
  z-index: 999;
}
.marquee-left { left: 0; }
.marquee-right { right: 0; }

/* Header ASCII */
.ascii-header {
  text-align: center;
  padding: 2rem 1rem;
}
.ascii-art {
  color: #ff4e00; /* ASCII en naranja técnico */
  font-size: 1.75rem;
  line-height: 1;
  white-space: pre;
  margin: 0 auto;
  max-width: 90%;
  text-shadow: 1px 1px 0 #00ffff, -1px -1px 0 #00ffff; /* Sombra cian para efecto 3D */
}
.hacksito-title {
  font-size: 5rem;
  color: #ff4e00;
  margin: 1rem 0;
  text-shadow: 2px 2px 0 #00ff11;
}
.ascii-subtitle {
  color: #888;
  font-size: 0.9rem;
}

/* ASCII sections */
.ascii-section {
  padding: 1rem;
  text-align: center;
}

/* Button panel */
.button-panel {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}
.hack-button {
  position: relative;
  background-color: transparent;
  border: 2px solid #ff4e00;
  color: #ff4e00;
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  font-family: monospace;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.hack-button:hover {
  background-color: rgba(255, 78, 0, 0.1);
  box-shadow: 0 0 10px #ff4e00;
}

/* Hover box */
.hover-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  border: 1px solid #00ffff;
  padding: 1rem;
  font-size: 0.85rem;
  color: #00ffff;
  white-space: pre-wrap;
  z-index: 1000;
  min-width: 200px;
  text-shadow: 1px 1px 0 #ff4e00;
}
.hack-button.active .hover-box {
  display: block;
}

/* Links inside hover-box */
.hover-box a {
  color: #ff4e00;
  text-decoration: none;
}
.hover-box a:hover {
  text-shadow: 0 0 5px #ff4e00;
}

/* Footer */
.footer {
  text-align: center;
  color: #444;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  text-shadow: 1px 1px 0 #00ffff;
}

/* Marquee animation override for smoother scroll */
marquee {
  -webkit-marquee-speed: fast;
  -webkit-marquee-increment: 8;
  font-size: 2rem;
}
/* Hover reveal for Hacker Types panel */
.types-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  border: 1px solid #00ffff;
  padding: 1rem;
  color: #ff4e00;
  white-space: nowrap;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
