.download-center-body {
  min-height: 100vh;
  background: var(--bg);
}

.download-center-header,
.download-center-shell {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
}

.download-center-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 0;
}

.download-center-back,
.download-center-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 800;
}

.download-center-shell {
  padding: 42px 0 90px;
}

.download-center-minimal {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  opacity: 1;
  transform: none;
}

.download-center-minimal h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  color: #ffffff;
}

.download-center-minimal > p {
  width: min(100%, 620px);
  margin: 0;
  color: #afbad0;
  line-height: 1.8;
}

.download-center-minimal-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.download-center-choice {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 360px;
  padding: 32px 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 211, 238, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(5, 5, 7, 0.97);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.download-center-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 44%, transparent 58%) -180% 0 / 180% 100% no-repeat;
  animation: sheen 6.8s ease-in-out infinite;
  pointer-events: none;
}

.download-center-choice:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 42px 132px rgba(0, 0, 0, 0.52);
}

.download-center-choice-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  animation: floatSoft 5.5s ease-in-out infinite alternate;
}

.download-center-choice-icon svg {
  width: 34px;
  height: 34px;
}

.download-center-choice strong {
  color: #ffffff;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
}

.download-center-choice p {
  margin: 0;
  color: #afbad0;
  line-height: 1.8;
}

.download-center-choice span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
}

.download-center-minimal-notes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.download-center-minimal-notes article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.download-center-minimal-notes strong {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
}

.download-center-minimal-notes p {
  margin: 0;
  color: #9ea8bf;
  line-height: 1.7;
}

.download-center-discord {
  margin-top: 2px;
}

@media (max-width: 900px) {
  .download-center-minimal-grid,
  .download-center-minimal-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .download-center-header {
    flex-direction: column;
    align-items: stretch;
  }

  .download-center-back,
  .download-center-brand {
    justify-content: center;
  }

  .download-center-shell {
    padding-top: 26px;
  }

  .download-center-choice,
  .download-center-minimal-notes article {
    padding: 22px;
  }

  .download-center-discord {
    width: 100%;
  }
}
