


.downloads-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 600;
  
  min-height: 440px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.downloads-hero-content {
  position: relative;
  z-index: 30;
  
  margin-top: 5rem;
}

.hero-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, rgba(5, 7, 10, 0.95) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}


.downloads-main-section {
  position: relative;
  width: 100%;
  margin-top: -350px;
  padding-top: 350px;
  
  padding-bottom: 16rem;
  background: transparent;
  overflow: visible;
  z-index: 20;
}

.dl-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.dl-bg-wrapper .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  object-position: center 0px;
  opacity: 1;
}

.downloads-container {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 5;
}



.dl-frame-desc {
  font-family: var(--font-news), sans-serif;
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.dl-sep-small {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 100%;
}

.dl-sep-col {
  margin: 10px auto 30px auto !important;
}


.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 3.5rem auto 0 auto;
}

.dl-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dl-col-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.mirror-btn {
  width: 100%;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.mirror-btn:last-child {
  margin-bottom: 0;
}


.dl-info-bottom {
  text-align: center;
  margin: 3rem auto 5rem auto;
  max-width: 800px;
}

.dl-social-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}


.dl-create-account {
  text-align: center;
  margin-top: 4rem;
}

.dl-separator {
  width: 100%;
  max-width: 600px;
  height: 3px;
  background: url('../assets/separate.png') no-repeat center center;
  background-size: contain;
  margin: 0 auto 4rem auto;
  opacity: 0.6;
}

.dl-ca-desc {
  font-family: var(--font-news), sans-serif;
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 1rem auto 0 auto;
}


@media (min-width: 2560px) {
  .downloads-main-section {
    margin-top: -450px;
    padding-top: 450px;
  }
}

@media (min-width: 3560px) {
  .downloads-main-section {
    margin-top: -550px;
    padding-top: 550px;
  }
}

@media (max-width: 1600px) {
  .downloads-main-section {
    margin-top: -250px;
    padding-top: 250px;
  }
}

@media (max-width: 992px) {
  .dl-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}


@media (max-width: 768px) {
  .downloads-container {
    padding: 0 1rem;
  }

  .downloads-hero {
    min-height: 450px;
  }

  .dl-social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .downloads-main-section {
    margin-top: -350px;
    padding-top: 350px;
  }
}