/* style_mixes.css v2.0.1 */
/* ==========================
   Estilos para Mixes MagicMusicPTY 2025
   Desarrollado por php panama
   ========================== */

body {
  font-family: Verdana, sans-serif;
  margin: 0;
  padding-top: 85px;
  background: #f8f8f8;
  color: #000;
  text-align: center;
}

/* Header fijo */
#header-fijo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #911489;
  z-index: 1000;
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#header-fijo h1 {
  margin: 0;
  font-size: 20px;
  flex: 1;
  text-align: center;
}

#header-fijo .home-icon {
  color: white;
  text-decoration: none;
  font-size: 26px;
}

#header-fijo .logo-header {
  height: 45px;
  width: auto;
  border-radius: 8px;
  border: 2px solid white;
  object-fit: contain;
}

/* Tabla de mixes */
.table-wrapper {
  max-width: 1000px;
  margin: 0 auto 30px auto;
  overflow-x: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(145,20,137,0.1);
}

table.gri {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
  min-width: 350px;
}

table.gri td {
  padding: 10px 8px;
  border-bottom: 1px solid #e1e7f0;
  text-align: left;
}

tr:nth-child(even) {
  background-color: #fafafa;
}

a {
  text-decoration: none;
  color: #911489;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  color: #60005e;
  text-decoration: underline;
}

.count {
  text-align: right;
  font-size: 13px;
  color: #777;
  white-space: nowrap;
  width: 60px;
  font-weight: 700;
}

/* Descripción */
.descripcion-final {
  text-align: center;
  margin: 30px auto 20px auto;
  padding: 15px;
  font-size: 16px;
  color: #000;
  background: transparent;
  border-radius: 0;
  max-width: 1000px;
}

.descripcion-final p {
  margin: 0;
  line-height: 1.6em;
}

/* Anuncio */
.adsense-box {
  margin: 25px auto;
  max-width: 728px;
  text-align: center;
}

/* Footer */
footer {
  font-size: 13px;
  color: #777;
  margin: 40px auto 20px auto;
}

footer .footer-links {
  margin-bottom: 10px;
}

footer .footer-links a {
  margin: 0 10px;
  font-size: 13px;
  color: #911489;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #60005e;
}

/* Scroll personalizado */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #911489;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  #header-fijo h1 {
    font-size: 16px;
  }

  .descripcion-final {
    font-size: 14px;
    padding: 12px;
    margin: 25px 10px 20px 10px;
  }

  .table-wrapper {
    margin: 0 10px 30px 10px;
  }

  footer {
    font-size: 12px;
  }
}

/* Buscador */
.search-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 0 10px;
}

.search-container input {
  border: 2px solid #911489;
  border-radius: 8px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

/* Mixes destacados */
.destacados {
  max-width: 800px;
  margin: 40px auto;
}

.destacados h2 {
  color: #911489;
  text-align: center;
  margin-bottom: 20px;
}

.destacados ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.destacados ul li {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 15px;
  width: 180px;
  box-shadow: 0 2px 8px rgba(145,20,137,0.2);
}

.destacados ul li a {
  color: #911489;
  font-weight: 700;
  text-decoration: none;
}

.destacados ul li a:hover {
  color: #60005e;
  text-decoration: underline;
}

/* Botón volver arriba */
#scrollTopBtn {
  background: #911489;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  position: fixed;
  bottom: 30px;
  right: 30px;
}