 /* Reset y variables */
    :root{
      --bg-alpha: 0.06;
      --card-bg: rgba(255,255,255,0.03);
      --glass-border: rgba(255,255,255,0.07);
      --accent: #1DB954; /* spotify-like, editable */
      --accent-2: #FF0000; /* youtube-like, editable */
      --text: rgba(255,255,255,0.95);
      --muted: rgba(255,255,255,0.7);
      --max-width: 980px;
      --gap: 16px;
      font-family: 'Host Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html,body{height:100%;}
    body{
      background: #060616; /* fallback */
      color:var(--text);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.25;
    }

    /* Canvas de fondo: fijo y full-viewport */
    .gradient-canvas{
      position:fixed;
      inset:0;
      z-index:0;
      width:100%;
      height:100%;
      overflow:hidden;
      display:block;
    }

    /* Contenido principal encima */
    .site-wrap{
      position:relative;
      z-index:2;
      min-height:100vh;
      display:flex;
      flex-direction:column;
      align-items:center;
      padding:clamp(18px,4vw,40px);
      gap:24px;
    }

    header.site-header{
      width:100%;
      max-width:var(--max-width);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:4px;
    }

    /* Logo simple placeholder (reemplazar por el logo real) */
    .brand{
      display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)
    }
    .brand svg{width:44px;height:44px;filter:drop-shadow(0 6px 18px rgba(0,0,0,0.6));}
    .brand h1{font-size:18px;letter-spacing:2px;font-weight:600}

    /* Main card area */
    .main-card{
      width:100%;
      max-width:var(--max-width);
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius:14px;
      padding:18px;
      border:1px solid var(--glass-border);
      backdrop-filter: blur(6px) saturate(120%);
    }

    /* Grid de tracks */
    .track-grid{
      display:grid;
      grid-template-columns: repeat( auto-fit, minmax(210px, 1fr) );
      gap:var(--gap);
      align-items:start;
    }

    .track{
      display:flex;
      flex-direction:column;
      gap:12px;
      background:var(--card-bg);
      padding:12px;
      border-radius:10px;
      border:1px solid rgba(255,255,255,0.03);
    }

    .cover{
      width:100%;
      aspect-ratio:1 / 1;
      border-radius:8px;
      overflow:hidden;
      display:block;
      background:linear-gradient(135deg,#203cc9,#010a2c);
      display:flex;align-items:center;justify-content:center;color:var(--muted);
      font-weight:700;font-size:14px;
      box-shadow: 0 6px 18px rgba(2,6,23,0.6) inset;
    }

    .track h3{font-size:15px;margin-top:6px}
    .meta{display:flex;gap:8px;align-items:center;justify-content:space-between}

    .actions{display:flex;gap:8px;flex-wrap:wrap}
    .btn{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:8px;text-decoration:none;font-weight:600;font-size:13px;border:1px solid rgba(255,255,255,0.04);background:transparent;color:var(--text)}
    .btn svg{width:18px;height:18px}
    .btn.spotify{border-color:rgba(29,185,84,0.12)}
    .btn.youtube{border-color:rgba(255,0,0,0.12)}

    /* Instagram / Booking area */
    .aside{
      margin-top:12px;
      display:flex;gap:12px;flex-wrap:wrap;align-items:center;justify-content:flex-end
    }
    .aside a{color:var(--text);text-decoration:none;font-weight:600}

    /* Footer */
    .credit{width:100%;max-width:var(--max-width);display:flex;justify-content:space-between;align-items:center;padding-top:12px;color:var(--muted);font-size:13px}

    /* Responsive small tweaks */
    @media (max-width:560px){
      .brand h1{font-size:16px}
      .main-card{padding:14px}
      .track-grid{grid-template-columns:repeat(2,1fr)}
      .aside{justify-content:center;width:100%}
    }
    @media (max-width:420px){
      .track-grid{grid-template-columns:repeat(1,1fr)}
      .brand svg{width:36px;height:36px}
    }

    /* Reduced motion fallback */
    @media (prefers-reduced-motion: reduce){
      .gradient-canvas{opacity:0.9}
    }

    .actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.actions .platform {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
  overflow: hidden;
}

.actions .platform img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: all 0.25s ease;
}

/* Hover effects */
.actions .platform:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.actions .platform:hover img {
  filter: brightness(1.15);
  transform: scale(1.08);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== NUEVO LANZAMIENTO ===== */

.new-release-title {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeSlide 0.6s ease both;
}

.new-release-card {
  background: var(--card-bg);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 16px;
  animation: fadeSlide 0.6s ease both;
}

.new-release-card .cover {
  max-width: 220px;
  margin: 0 auto;
  border-radius: 10px;
}

.new-release-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.new-release-info .meta {
  margin-top: 10px;
}

/* Animación sutil */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .new-release-card .cover {
    max-width: 180px;
    margin-bottom: 12px;
  }

  .new-release-info {
    text-align: center;
  }

  .new-release-info .actions {
    justify-content: center;
  }
}

/* ===== NUEVO LANZAMIENTO DESTACADO ===== */
/* =============================== */
/*  NUEVO LANZAMIENTO EN MÓVIL     */
/*  -> Que se vea como un TRACK    */
/* =============================== */

