/* ===== Downloads page ===== */

.dl-box{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.2);

  color: #fff;
  max-width: 800px;
  margin: -70px auto 36px auto;
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(76,140,255,0.35);
  text-align: center;
  font-family: "Orbitron", sans-serif;
}

/* MAIN TITLE */
.dl-box h2{
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 4rem;
  margin-bottom: 30px;
  color: #bcdcff;
  text-shadow: 0 0 12px rgba(76,140,255,0.7);
}

/* SECTION (Google Drive / MediaFire) */
.dl-section{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dotted #cfcfcf;
}

/* remove dotted line on first */
.dl-section:first-of-type{
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* TITLE SPACING */
.dl-title{
  font-size: 3rem;
  color: #8fbaff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* REMOVE BULLETS */
.dl-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* CENTER BUTTONS */
.dl-list li{
  margin: 10px 0;
  text-align: center;
}

/* DOWNLOAD BUTTON */
.dl-list a{
  display: inline-block;   /* IMPORTANT = stops full width */
  width: 40%;              /* controls length */
  padding: 10px 16px;      /* shorter height */
  font-weight: 700;
  font-size: 1.5rem;
  color: #222222;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: all .2s ease;
}

/* HOVER EFFECT */
.dl-list a:hover,
.dl-list a:focus{
  border-color: #4c8cff;
  background: #f8fbff;
  box-shadow: 0 6px 14px rgba(76,140,255,0.18);
  transform: translateY(-1px);
}

/* DOWNLOAD ICON (smaller now) */
.dl-list a::before{
  content: "⬇";
  margin-right: 6px;
  font-size: 1.5rem;
  vertical-align: middle;
}

/* MOBILE */
@media (max-width: 576px){
  .dl-box{
    padding: 18px;
    max-width: 92%;
  }

  .dl-box h2{
    font-size: 1.5rem;
  }

  .dl-title{
    font-size: 1rem;
  }

  .dl-list a{
    width: 100%;
    font-size: 0.9rem;
    padding: 9px 12px;
  }
}