
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;
}

body {
  background-color: black;
  color: red;
  font-family: 'Press Start 2P', monospace;
  padding: 20px;
}


a {
  color: red;
  text-decoration: none;
}


a:hover {
  color: yellow;
  text-decoration: underline;
}
#home {
  position: relative;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  color: red;
  font-family: 'Press Start 2P', monospace;
  
}
#home #vgtvlogo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.copyright {
  font-size: 80%; 
  color: yellow;     
  text-align: center; 
  margin-top: 10px;
}

@keyframes pulseGlow {
  0% {
    filter: drop-shadow(0 0 3px red);
  }
  50% {
    filter: drop-shadow(0 0 10px yellow);
  }
  100% {
    filter: drop-shadow(0 0 3px red);
  }
}

#vgtvlogo {
  animation: pulseGlow 1.5s infinite;
  transition: all 0.3s ease;
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;

}
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#vgtvlogo:hover {
  animation: pulseGlow 0.8s infinite;
  filter: drop-shadow(0 0 5px white) drop-shadow(0 0 15px red);
}
#home {
  position: relative;
  z-index: 1;
  color: red;
  font-family: 'Press Start 2P', monospace;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("fondomain.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.4; 
  z-index: -1;  
}

main {
  padding: 20px;
  text-align: center;
}

.secciones {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.seccion-item {
  background-color: red;
  color: black;
  font-family: 'Press Start 2P', monospace;
  text-decoration: none;
  padding: 15px 30px;
  border: 3px solid white;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 8px yellow;
  transition: background-color 0.3s, color 0.3s;
  user-select: none;
}

.seccion-item:hover {
  background-color: yellow;
  color: red;
}
  .youtube-feed {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.youtube-feed iframe {
  max-width: 800px;
  width: 100%;
  height: 450px;
  border: 3px solid red;
  box-shadow: 0 0 10px yellow;
}
.caja-acerca {
  width: 80%;
  max-width: 800px;
  height: 300px;
  margin: 30px auto;
  padding: 20px;
  background-color: black;
  color: red;
  border: 4px double red;
  box-shadow: 0 0 12px yellow;
  font-family: 'Silkscreen', monospace;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  border-radius: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: red black;
  color: white !important;
}

.blanco {
  color: white !important;
}
  border-radius: 4px;
}
.boletin-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.boletin-videos iframe {
  width: 320px;
  height: 180px;
  border: 3px solid red;
  box-shadow: 0 0 10px yellow;
  transition: transform 0.2s ease;
}

.boletin-videos iframe:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px white;
}
.logo-link {
  display: inline-block;
}

.logo-link:hover {
  background-color: yellow;
  box-shadow: 0 0 10px white;
}

.logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
main section {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

main section.activa {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.boletin-videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.video-descripcion {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  max-width: 800px;
  background-color: black;
  padding: 10px;
  border: 2px solid red;
  border-radius: 8px;
  box-shadow: 0 0 10px yellow;
}

.video-descripcion iframe {
  width: 320px;
  height: 180px;
  flex-shrink: 0;
  border: none;
}

.descripcion-video {
  color: white;
  font-family: 'Silkscreen', monospace;
  font-size: 9px;
  line-height: 1.5;
  text-align: justify;
  flex: 1;
}
