.dl-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.dl-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('pictures/duels.png');
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.dl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 11, 18, 0.45) 0%,
    rgba(8, 11, 18, 0.65) 55%,
    rgba(8, 11, 18, 1) 100%
  );
}

.dl-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}

.dl-hero__sub {
  max-width: 500px;
  margin: 0 auto;
}

.dl-back {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
}

.dl-back:hover { color: var(--text); }

.dl-main {
  padding: 60px 24px 100px;
}

.dl-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

.dl-versions {
  display: -webkit-flex;
  display: flex;
  gap: 0;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.dl-divider-ver {
  width: 1px;
  background: var(--border);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: 0 40px;
}

.dl-ver {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

.dl-ver__header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.dl-ver__label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.dl-ver__tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.dl-ver__tag--18 {
  color: #ff8888;
  background: rgba(224, 32, 32, 0.14);
  border: 1px solid rgba(224, 32, 32, 0.3);
}

.dl-ver__tag--19 {
  color: #80b0ff;
  background: rgba(32, 96, 224, 0.14);
  border: 1px solid rgba(32, 96, 224, 0.3);
}

.dl-ver__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.dl-ver__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.dl-modes {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.dl-mode {
  display: -webkit-flex;
  display: flex;
  gap: 14px;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
}

.dl-mode:last-child { border-bottom: none; }

.dl-mode__icon {
  font-size: 20px;
  line-height: 1;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  text-align: center;
}

.dl-mode__body { min-width: 0; }

.dl-mode__name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.dl-mode__aka {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.dl-mode__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
}

.dl-cta {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(224,32,32,0.2);
  background: rgba(224,32,32,0.04);
}

.dl-cta__text {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .dl-versions {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .dl-divider-ver {
    width: 100%;
    height: 1px;
    margin: 32px 0;
  }

  .dl-cta {
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .dl-hero { height: 46vh; }
}
