/* ===========================================
   BANNER LIMPIO - VERSIÓN FINAL SIN CONFLICTOS
   =========================================== */

/* ANULAR CUALQUIER ESTILO CONFLICTIVO */
.spotify-presave-banner .platforms-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  justify-items: center !important;
  align-items: center !important;
  /* ANULAR FLEX */
  flex-direction: unset !important;
  flex-wrap: unset !important;
  justify-content: unset !important;
}

/* Reset para el banner */
.spotify-presave-banner * {
  box-sizing: border-box !important;
}

.spotify-presave-banner {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.spotify-banner-container {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.spotify-banner-link {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none !important;
}

.spotify-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay principal */
.spotify-presave-banner .spotify-play-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 40px 20px !important;
}

/* Contenedor principal */
.spotify-presave-banner .banner-content-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 50px !important;
  max-width: 1000px !important;
  width: 100% !important;
}

/* Título */
.spotify-presave-banner .main-title-section {
  width: 100%;
}

.spotify-presave-banner .estreno-title {
  color: #ffffff !important;
  font-size: 4rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.9) !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
}

/* Botón de play */
.spotify-presave-banner .play-section {
  display: flex;
  justify-content: center;
}

.spotify-presave-banner .spotify-play-button {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #5fa4ff, #4fd1c5) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: transform 0.3s ease !important;
  box-shadow: 0 8px 24px rgba(95, 164, 255, 0.4) !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
}

.spotify-presave-banner .spotify-play-button:hover {
  transform: scale(1.1) !important;
}

.spotify-presave-banner .play-icon {
  width: 32px !important;
  height: 32px !important;
  color: white !important;
  margin-left: 4px !important;
}

/* ============= PLATAFORMAS - GRID 4 COLUMNAS ============= */
.spotify-presave-banner .platforms-section {
  width: 100% !important;
}

.spotify-presave-banner .platform-logo-button {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 24px 16px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 16px !important;
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  width: 100% !important;
  max-width: 140px !important;
  min-width: 120px !important;
}

.spotify-presave-banner .platform-logo-button:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none !important;
}

.spotify-presave-banner .platform-logo-img {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

.spotify-presave-banner .platform-name {
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  color: white !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .spotify-presave-banner .estreno-title {
    font-size: 2.5rem !important;
  }
  
  .spotify-presave-banner .platforms-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    max-width: 500px !important;
  }
  
  .spotify-presave-banner .platform-logo-button {
    padding: 12px 8px !important;
    gap: 6px !important;
    min-width: 90px !important;
  }
  
  .spotify-presave-banner .spotify-play-button {
    width: 70px !important;
    height: 70px !important;
  }
  
  .spotify-presave-banner .play-icon {
    width: 28px !important;
    height: 28px !important;
  }
  
  .spotify-presave-banner .platform-logo-img {
    width: 30px !important;
    height: 30px !important;
  }
  
  .spotify-presave-banner .platform-name {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .spotify-presave-banner .banner-content-wrapper {
    gap: 30px !important;
    padding: 20px 10px !important;
  }
  
  .spotify-presave-banner .estreno-title {
    font-size: 2rem !important;
  }
  
  .spotify-presave-banner .platforms-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    max-width: 300px !important;
  }
  
  .spotify-presave-banner .platform-logo-button {
    padding: 10px 6px !important;
    gap: 4px !important;
  }
  
  .spotify-presave-banner .platform-logo-img {
    width: 24px !important;
    height: 24px !important;
  }
  
  .spotify-presave-banner .platform-name {
    font-size: 0.7rem !important;
  }
} 