/* ============================================
   1. PESTAÑAS
   ============================================ */

.banda-tabs {
  display: flex;
  gap: 0;
  background: #0a0a0a;
  border-bottom: 2px solid #1a1a1a;
  padding: 0;
  border-radius: 12px 12px 0 0 !important;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #666;
  padding: 1rem 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Michroma', serif;
}
.tab-btn:hover {
  color: #C0C0C0; /* Plomo */
  background: rgba(139, 0, 0, 0.1);
}
.tab-btn.active {
  color: #CC0000; /* Rojo intenso */
  background: rgba(139, 0, 0, 0.3);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #CC0000; /* Rojo intenso */
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
}
.tab-btn i {
  pointer-events: none;
}

.tab-btn::before {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #1a1a1a;
  color: #C0C0C0; /* Plomo */
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid #2a2a2a;
}
.tab-btn:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

@media (max-width: 768px) {
  .tab-btn {
    font-size: 1.2rem;
    padding: 0.8rem 0.3rem;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    font-size: 1.5rem;
    padding: 0.6rem 0.2rem;
  }
  .tab-btn::before {
    display: none;
  }
}

/* ============================================
   2. CONTENIDO DE PESTAÑAS
   ============================================ */
.tab-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: visible !important;
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
  overflow: visible !important;
  position: relative;
}
.tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  overflow: visible !important;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tab-content {
    padding: 1rem;
  }
}

/* ============================================
   3. RECIENTE LANZAMIENTO
   ============================================ */

.video-thumbnail-container {
  width: 100%;
}
.video-thumbnail-container:last-child {
  margin-bottom: 0;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #2a2a2a;
  transition: all 0.3s ease;
  background: #0a0a0a;
}
.video-thumbnail:hover {
  border-color: #CC0000; /* Rojo intenso */
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(0.7) contrast(1.1);
}
.video-thumbnail:hover img {
  filter: brightness(0.5) contrast(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(139, 0, 0, 0.85); /* Rojo oscuro */
  border: 3px solid #C0C0C0; /* Plomo */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.4);
  z-index: 2;
}
.play-button i {
  color: #C0C0C0; /* Plomo */
  font-size: 1.8rem;
  margin-left: 5px;
  transition: all 0.3s ease;
}
.play-button:hover {
  background: #CC0000; /* Rojo intenso */
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 50px rgba(204, 0, 0, 0.75);
  border-color: #FFFFFF; /* Blanco */
}
.play-button:hover i {
  color: #FFFFFF; /* Blanco */
}
.play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

@media (max-width: 768px) {
  .play-button {
    width: 55px;
    height: 55px;
  }
  .play-button i {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .play-button {
    width: 45px;
    height: 45px;
  }
  .play-button i {
    font-size: 1.1rem;
    margin-left: 3px;
  }
}

/* ============================================
   4. SPOTIFY EMBED
   ============================================ */
.banda-spotify {
  width: 100%;
  position: relative;
}
.banda-spotify-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #0a0a0a;
  transition: all 0.3s ease;
}
.banda-spotify-wrapper:hover {
  border-color: #CC0000; /* Rojo intenso */
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.1);
}
.banda-spotify iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: none;
  border-radius: 12px;
  background: #0a0a0a;
}

@media (max-width: 480px) {
  .banda-spotify-wrapper {
    aspect-ratio: 1 / 1 !important;
    border-radius: 12px;
  }
  .banda-spotify iframe {
    aspect-ratio: 1 / 1;
    max-height: 352px;
  }
}

/* ============================================
   5. DISCOGRAFÍA
   ============================================ */
   
.release-container {
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible !important; 
  margin-bottom: 25px;
}
.release-container:last-child {
  margin-bottom: 0;
}
.release-container:hover {
  border-color: #CC0000; /* Rojo intenso */
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.1);
}
.release-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  overflow: visible !important;
}
.release-left {
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
  overflow: visible !important;
}
.release-right {
  flex: 0 0 62.5%;
  position: relative;
  z-index: 1;
  overflow: visible !important;
}

@media (max-width: 1024px) {
  .release-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .release-left {
    flex: 1 1 auto;
    width: 100%;
  }
  .release-right {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* ============================================
   5.1 RELEASE LEFT
   ============================================ */

.release-cover {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #2a2a2a;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.release-cover:hover {
  border-color: #CC0000; /* Rojo intenso */
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}
.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.release-info {
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.release-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #C0C0C0; /* Plomo */
  letter-spacing: 2px;
  margin: 0;
  font-family: "Michroma";
}
.release-year {
  font-size: 0.9rem;
  color: #666;
  margin: 0.2rem 0 0 0;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .release-cover {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .release-cover {
    max-width: 150px;
  }
  .release-platforms {
    max-width: 150px;
  }
  .release-title {
    font-size: 0.95rem;
  }
}

/* ============================================
   5.2 DROPDOWN
   ============================================ */

.release-platforms {
  width: 100%;
  max-width: 250px;
  position: relative;
  z-index: 100 !important;
  overflow: visible !important;
}
   
.platform-dropdown {
  position: relative;
  width: 100%;
  z-index: 100 !important;
  overflow: visible !important;
}

.platform-btn {
  width: 100%;
  padding: 0.5rem 0.8rem;
  background: #1a1a1a;
  color: #C0C0C0; /* Plomo */
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
  z-index: 100 !important;
}

.platform-btn:hover {
  border-color: #CC0000; /* Rojo intenso */
  background: #8B0000; /* Rojo oscuro */
}

.platform-btn i {
  transition: transform 0.3s ease;
}

.platform-dropdown.active .platform-btn i {
  transform: rotate(180deg);
}

.platform-menu {
  font-family: 'Play', serif;
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  list-style: none;
  padding: 0.3rem 0;
  margin: 0;
  z-index: 99999 !important;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  min-width: 100%;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom center;
}

.platform-dropdown.active .platform-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.platform-menu::-webkit-scrollbar {
  width: 4px;
}
.platform-menu::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 4px;
}
.platform-menu::-webkit-scrollbar-thumb {
  background: #CC0000; /* Rojo intenso */
  border-radius: 4px;
}

.platform-menu li {
  padding: 0 !important;
  border-bottom: 1px solid #0a0a0a;
  display: block !important;
  transition: all 0.3s ease;
}
.platform-menu li:last-child {
  border-bottom: none;
}

.platform-menu li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1rem;
  color: #C0C0C0; /* Plomo */
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  pointer-events: auto;
  
  transition: all 0.3s ease !important;
}

.platform-menu li a:hover {
  background: #8B0000; /* Rojo oscuro */
  color: #FFFFFF; /* Blanco */
}

.platform-menu li a i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .release-platforms {
    max-width: 200px;
  }
  .release-container {
    padding: 1rem;
  }
  .platform-menu {
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  .platform-menu {
    max-height: 150px;
  }
}

/* ============================================
   6. TRACKLIST
   ============================================ */
.track-list {
  background: #0a0a0a;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.track-list h4 {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 0.8rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #1a1a1a;
}
.track-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.track-list ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #0a0a0a;
  transition: all 0.3s ease;
}
.track-list ul li:last-child {
  border-bottom: none;
}
.track-list ul li:hover {
  padding-left: 0.5rem;
  background: rgba(139, 0, 0, 0.05);
}
.track-number {
  color: #666;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 30px;
  letter-spacing: 1px;
}
.track-name {
  flex: 1;
  color: #C0C0C0; /* Plomo */
  letter-spacing: 0.5px;
}
.track-icon {
  color: #666;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}
.track-icon i {
  color: #CC0000; /* Rojo intenso */
}

@media (max-width: 480px) {
  .track-list ul li {
    padding: 0.4rem 0;
    gap: 0.5rem;
  }
  .track-name {
    font-size: 0.8rem;
  }
  .track-number {
    font-size: 0.7rem;
    min-width: 25px;
  }
}

/* ============================================
   7. ICONO MICRÓFONO
   ============================================ */
.track-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  text-align: center;
}
.track-icon .mic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px solid #8B0000; /* Rojo oscuro */
  color: #C0C0C0; /* Plomo */
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto !important;
}
.track-icon .mic-btn i {
  color: #C0C0C0; /* Plomo */
  font-size: 0.85rem;
}
.track-icon .mic-btn:hover {
  background: #CC0000; /* Rojo intenso */
  border-color: #C0C0C0; /* Plomo */
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
}
.track-icon .mic-btn:hover i {
  color: #FFFFFF; /* Blanco */
}
.track-icon .mic-btn:active {
  transform: scale(0.9);
}

/* ============================================
   8. LYRICS
   ============================================ */
.lyrics-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  animation: fadeInOverlay 0.3s ease;
  backdrop-filter: blur(5px);
  overflow-y: auto;
  padding: 1rem;
}
.lyrics-popup-overlay.active {
  display: flex;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lyrics-popup {
  background: rgba(0,0,0,0);
  border-radius: 16px;
  border: 2px solid #8B0000; /* Rojo oscuro */
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  padding: 2rem 2rem 2rem 2rem;
  position: relative;
  box-shadow: 0 0 60px rgba(139, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  overflow-y: auto;
  margin: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.lyrics-popup::-webkit-scrollbar {
  width: 4px;
}
.lyrics-popup::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 4px;
}
.lyrics-popup::-webkit-scrollbar-thumb {
  background: #CC0000; /* Rojo intenso */
  border-radius: 4px;
}

.lyrics-popup-close {
  position: sticky;
  float: right;
  top: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  border: 2px solid #8B0000; /* Rojo oscuro */
  color: #C0C0C0; /* Plomo */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cinzel', serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  z-index: 10;
  flex-shrink: 0;
}
.lyrics-popup-close:hover {
  background: #CC0000; /* Rojo intenso */
  color: #FFFFFF; /* Blanco */
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
}
.lyrics-popup-close:active {
  transform: rotate(90deg) scale(0.9);
}

.lyrics-popup h3 {
  color: #CC0000; /* Rojo intenso */
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin: 0 0 0.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #8B0000; /* Rojo oscuro */
  text-transform: uppercase;
  clear: both;
}
.lyrics-popup .track-name {
  color: #C0C0C0; /* Plomo */
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.2rem;
  display: block;
}
.lyrics-popup .lyrics-content {
  color: #C0C0C0; /* Plomo */
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-wrap;
  letter-spacing: 0.5px;
  max-height: calc(80vh - 180px);
  overflow-y: auto;
  padding-right: 0.5rem;
}
.lyrics-popup .lyrics-content::-webkit-scrollbar {
  width: 3px;
}
.lyrics-popup .lyrics-content::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 4px;
}
.lyrics-popup .lyrics-content::-webkit-scrollbar-thumb {
  background: #CC0000; /* Rojo intenso */
  border-radius: 4px;
}
.lyrics-popup .lyrics-content p {
  margin: 0 0 0.8rem 0;
}
.lyrics-popup .lyrics-content p:last-child {
  margin-bottom: 0;
}
.lyrics-popup .lyrics-content .loading {
  text-align: center;
  color: #666;
  padding: 2rem 0;
}
.lyrics-popup .lyrics-content .loading i {
  margin-right: 0.5rem;
}

@media (max-width: 480px) {
  .lyrics-popup {
    padding: 1.2rem;
    max-height: 90vh;
    width: 95%;
  }
  .lyrics-popup-close {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
  .lyrics-popup h3 {
    font-size: 1.1rem;
  }
  .lyrics-popup .lyrics-content {
    font-size: 0.9rem;
    max-height: calc(90vh - 160px);
  }
  .lyrics-popup .track-name {
    font-size: 0.8rem;
  }
}

/* ============================================
   9. VIDEOS
   ============================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video-item .video-thumbnail-container {
  width: 100%;
}

.video-item .video-thumbnail-container:last-child {
  margin-bottom: 0;
}

.video-item .video-thumbnail {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #2a2a2a;
  transition: all 0.3s ease;
  background: #0a0a0a;
  position: relative;
  width: 100%;
}

.video-item .video-thumbnail:hover {
  border-color: #CC0000; /* Rojo intenso */
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}

.video-item .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(0.7) contrast(1.1);
}

.video-item .video-thumbnail:hover img {
  filter: brightness(0.5) contrast(1.1);
}

.video-item .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(139, 0, 0, 0.85); /* Rojo oscuro */
  border: 3px solid #C0C0C0; /* Plomo */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.4);
  z-index: 2;
}

.video-item .play-button i {
  color: #C0C0C0; /* Plomo */
  font-size: 1.5rem;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.video-item .play-button:hover {
  background: #CC0000; /* Rojo intenso */
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 60px rgba(204, 0, 0, 0.75);
  border-color: #FFFFFF; /* Blanco */
}

.video-item .play-button:hover i {
  color: #FFFFFF; /* Blanco */
}

.video-item .play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.video-title {
  color: #C0C0C0; /* Plomo */
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  padding: 0.3rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .video-item .play-button {
    width: 45px;
    height: 45px;
  }
  
  .video-item .play-button i {
    font-size: 1.2rem;
  }
  
  .video-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .video-item .play-button {
    width: 35px;
    height: 35px;
  }
  
  .video-item .play-button i {
    font-size: 1rem;
  }
  
  .video-title {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.3rem;
  }
}

/* ============================================
   10. JUEGOS
   ============================================ */
.juego-container {
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible !important;
    margin-bottom: 25px;
}
.juego-container:hover {
  border-color: #CC0000; /* Rojo intenso */
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.1);
}
.juego-container:last-child {
  margin-bottom: 0;
}

.juego-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: visible !important;
}

.juego-imagen-wrapper {
  width: 100%;
  position: relative;
  overflow: visible !important;
}

.juego-imagen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #2a2a2a;
  transition: all 0.3s ease;
  background: #0a0a0a;
}
.juego-imagen:hover {
  border-color: #CC0000; /* Rojo intenso */
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}
.juego-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(0.8) contrast(1.1);
}
.juego-imagen:hover img {
  filter: brightness(0.5) contrast(1.1);
}

.juego-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  pointer-events: none;
}
.juego-imagen:hover .juego-play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.juego-play-button {
  width: 70px;
  height: 70px;
  background: rgba(139, 0, 0, 0.85); /* Rojo oscuro */
  border: 3px solid #C0C0C0; /* Plomo */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.4);
  pointer-events: auto;
  cursor: pointer;
}
.juego-play-button i {
  color: #C0C0C0; /* Plomo */
  font-size: 1.8rem;
  margin-left: 5px;
  transition: all 0.3s ease;
}
.juego-play-button:hover {
  background: #CC0000; /* Rojo intenso */
  transform: scale(1.15);
  box-shadow: 0 0 50px rgba(204, 0, 0, 0.75);
  border-color: #FFFFFF; /* Blanco */
}
.juego-play-button:hover i {
  color: #FFFFFF; /* Blanco */
}
.juego-play-button:active {
  transform: scale(0.95);
}

.juego-descripcion {
  padding: 0.5rem 0.5rem 0 0.5rem;
}

.juego-nombre {
  font-size: 1.2rem;
  font-weight: 700;
  color: #CC0000; /* Rojo intenso */
  letter-spacing: 2px;
  margin: 0 0 0.6rem 0;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .juego-container {
    padding: 1rem;
  }
  .juego-nombre {
    font-size: 1rem;
  }
  .juego-texto {
    font-size: 0.85rem;
  }
  .juego-play-button {
    width: 55px;
    height: 55px;
  }
  .juego-play-button i {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .juego-container {
    padding: 0.8rem;
  }
  .juego-nombre {
    font-size: 0.9rem;
  }
  .juego-texto {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .juego-play-button {
    width: 45px;
    height: 45px;
  }
  .juego-play-button i {
    font-size: 1.1rem;
    margin-left: 3px;
  }
}

/* ============================================
   11. INFORMACIÓN
   ============================================ */

/* Hero image 16:9 */
.info-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #2a2a2a;
  margin-bottom: 1.5rem;
  background: #0a0a0a;
  transition: all 0.3s ease;
}
.info-hero:hover {
  border-color: #CC0000; /* Rojo intenso */
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.2);
}
.info-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto informativo */
.info-text {
  color: #C0C0C0; /* Plomo */
  font-size: 1rem;
  line-height: 1.8;
  padding: 1rem 0;
  opacity: 0.85;
}

/* Galería de fotos - Grid 3 columnas */
.info-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.info-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #2a2a2a;
  transition: all 0.3s ease;
  background: #0a0a0a;
}
.info-gallery-item:hover {
  border-color: #CC0000; /* Rojo intenso */
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
  z-index: 2;
}
.info-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(0.85) contrast(1.05);
}
.info-gallery-item:hover img {
  filter: brightness(0.7) contrast(1.1);
}

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  animation: fadeInOverlay 0.3s ease;
  backdrop-filter: blur(10px);
  padding: 1rem;
}
.lightbox-overlay.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
  border: 2px solid #8B0000; /* Rojo oscuro */
  transition: all 0.3s ease;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid #8B0000; /* Rojo oscuro */
  color: #C0C0C0; /* Plomo */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  line-height: 1;
  padding: 0 0 4px 1px;
}
.lightbox-close:hover {
  background: #CC0000; /* Rojo intenso */
  color: #FFFFFF; /* Blanco */
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid #8B0000; /* Rojo oscuro */
  color: #C0C0C0; /* Plomo */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  border: 2px solid #8B0000; /* Rojo oscuro */
}
.lightbox-nav:hover {
  background: #CC0000; /* Rojo intenso */
  color: #FFFFFF; /* Blanco */
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
}
.lightbox-nav.prev {
  left: 20px;
}
.lightbox-nav.next {
  right: 20px;
}

.lightbox-counter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #C0C0C0; /* Plomo */
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  z-index: 9999999;
}

@media (max-width: 768px) {
  .info-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox-nav.next {
    right: 10px;
  }
  
  .lightbox-counter {
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    bottom: 15px;
  }
  
  .info-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .info-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .lightbox-close {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    top: 8px;
    right: 8px;
    padding: 0;
  }
  
  .lightbox-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .lightbox-nav.prev {
    left: 5px;
  }
  .lightbox-nav.next {
    right: 5px;
  }
  
  .info-hero {
    border-radius: 8px;
  }
  .info-gallery-item {
    border-radius: 6px;
  }
}