/* ===== CONTENEDOR ===== */
#rochile-download .downloads-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:70px;
  flex-wrap:wrap;
}

/* ===== BOTONES 250x100 ===== */
#rochile-download a.dl-btn{
  width:250px;
  height:100px;
  display:inline-block;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.5);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

/* Imagen cubre TODO el botón */
#rochile-download a.dl-btn img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:22px;
  transition: transform .3s ease;
}

/* DESTELLO CONSTANTE SUAVE */
#rochile-download a.dl-btn::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:40%;
  height:200%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform:rotate(25deg);
  animation:shine 4s infinite linear;
  pointer-events:none;
}

/* ENERGÍA BRILLANTE EN BORDES */
#rochile-download a.dl-btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  box-shadow:0 0 25px rgba(0,198,255,.4);
  opacity:0;
  transition:opacity .3s ease;
}

/* Hover POWER */
#rochile-download a.dl-btn:hover{
  transform:translateY(-8px) scale(1.08);
  box-shadow:0 30px 70px rgba(0,0,0,.85);
  filter:saturate(1.1);
}

#rochile-download a.dl-btn:hover img{
  transform:scale(1.05);
}

#rochile-download a.dl-btn:hover::after{
  opacity:1;
}

/* Google Drive blanco elegante */
#rochile-download a.dl-btn.gd{
  background:#ffffff;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

/* ===== CENTRAR TEXTOS ===== */
#rochile-download h2,
#rochile-download p,
#rochile-download .heading-container,
#rochile-download .updated{
    text-align:center !important;
}

#rochile-download .downloads-inner{
    text-align:center !important;
}

#rochile-download strong{
    display:block;
    text-align:center !important;
}

/* ANIMACIÓN DESTELLO */
@keyframes shine{
  0%{ left:-60%; }
  100%{ left:120%; }
}
