/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Press Start 2P', monospace;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  
  /* FONDO ESPACIAL EN CSS PURO */
  background-color: #0d0814;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(1px 1px at 15px 25px, #ffffff 100%, transparent),
    radial-gradient(2px 2px at 80px 120px, #4deeea 100%, transparent),
    radial-gradient(1px 1px at 140px 60px, #ffb800 100%, transparent),
    radial-gradient(2px 2px at 200px 180px, #ff3c00 100%, transparent),
    radial-gradient(1px 1px at 260px 90px, #ffffff 100%, transparent),
    linear-gradient(
      180deg, 
      #08060c 0%, 
      #130a1e 25%, 
      #230f30 50%, 
      #351233 75%, 
      #1a081c 100%
    );

  background-size: 
    40px 40px,
    40px 40px,
    300px 300px,
    300px 300px,
    300px 300px,
    300px 300px,
    300px 300px,
    100% 100%;
    
  background-attachment: fixed;
}

/* Banner Principal */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid #4deeea;
  padding: 40px 20px 60px 20px; /* Padding inferior para dar espacio a la caja centrada */
  background: 
    linear-gradient(180deg, rgba(9, 8, 20, 0.4) 0%, rgba(9, 8, 20, 0.95) 100%), 
    url('img/GoB.jpg') no-repeat center center/cover;
}

.hero-overlay {
  padding: 20px;
}

.tagline {
  font-size: 0.8rem;
  color: #4deeea;
  margin-bottom: 15px;
  text-shadow: 2px 2px 0px #000;
}

.hero h1 {
  font-size: 2.2rem;
  color: #ffb800;
  text-shadow: 4px 4px 0px #ff3c00, -2px -2px 0px #000;
  margin-bottom: 15px;
}

.album-title {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 3px 3px 0px #ff3c00;
}

/* Secciones Generales */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  font-size: 0.95rem;
  color: #4deeea;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0px #000;
}

/* =========================================
   MARCOS Y CAJAS 8-BITS CON BORDE CIAN NEÓN
   ========================================= */

.pixel-box {
  background: rgba(13, 8, 20, 0.85);
  border: 4px solid #00d2ff;
  padding: 12px;
  box-shadow: 
    0 0 15px rgba(0, 210, 255, 0.3),
    5px 5px 0px #ff3c00;
  border-image: linear-gradient(to bottom right, #4deeea, #00d2ff) 1;
}

/* Banner Próximo Show (Perfectamente simétrico en la línea) */
.event-banner {
  background-color: rgba(19, 10, 30, 0.95);
  border: 4px solid #4deeea;
  box-shadow: 
    0 0 20px rgba(77, 238, 234, 0.35),
    0 6px 0px #ff3c00; /* Sombra inferior uniforme para no desplazar el marco */
  margin-top: -50px; /* Altura exacta para alinear con la línea cian */
  position: relative;
  z-index: 10;
  padding: 30px 20px;
}

.event-info {
  font-size: 0.85rem;
  color: #ffb800;
  margin-bottom: 25px;
}

/* =========================================
   BOTONES ESTILO ARCADE
   ========================================= */

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
  text-decoration: none;
  color: #090814;
  background-color: #4deeea;
  border: none;
  cursor: pointer;
  clip-path: polygon(
    0 6px, 6px 6px, 6px 0,
    calc(100% - 6px) 0, calc(100% - 6px) 6px, 100% 6px,
    100% calc(100% - 6px), calc(100% - 6px) calc(100% - 6px), calc(100% - 6px) 100%,
    6px 100%, 6px calc(100% - 6px), 0 calc(100% - 6px)
  );
  box-shadow: 
    0 5px 0 0 #0088aa,
    0 7px 0 0 #ff3c00;
  transition: all 0.1s ease;
}

.btn:hover {
  transform: translateY(2px);
  background-color: #ffffff;
  box-shadow: 
    0 3px 0 0 #0088aa,
    0 5px 0 0 #ff3c00;
}

.btn-ticket {
  background-color: #ff3c00;
  color: #fff;
  box-shadow: 
    0 5px 0 0 #a32200,
    0 7px 0 0 #ffb800;
}

.btn-ticket:hover {
  background-color: #ff5500;
  box-shadow: 
    0 3px 0 0 #a32200,
    0 5px 0 0 #ffb800;
}

/* Grid de Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Grid de Fotos */
.photo-grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.photo-card {
  display: block;
  text-decoration: none;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.photo-card:hover {
  transform: scale(1.02);
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Lightbox / Zoom CSS */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 8, 20, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox:target {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 85%;
  max-height: 80%;
  border: 4px solid #4deeea;
  box-shadow: 0 0 30px rgba(77, 238, 234, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ff3c00;
  font-size: 40px;
  text-decoration: none;
}

/* Footer */
footer {
  padding: 30px;
  background-color: #05040a;
  color: #4deeea;
  font-size: 0.55rem;
  border-top: 4px solid #ff3c00;
}