/* 下载页专用样式 */

.download-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.download-brand {
  padding-top: 80px;
  padding-bottom: 48px;
  flex-shrink: 0;
}

.download-actions {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  justify-content: flex-start;
  padding-top: 24px;
}

.action-btn {
  width: 100%;
  height: 52px;
  border-radius: 26px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:active {
  transform: scale(0.97);
}

/* 主下载按钮 */
.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 10px 28px rgba(156, 108, 255, 0.42);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* 次要打开按钮 */
.btn-secondary {
  background: transparent;
  color: var(--primary-purple);
  border: 1.5px solid var(--primary-purple);
}

.btn-secondary:active {
  background: rgba(156, 108, 255, 0.08);
}

/* 底部信息 */
.download-footer {
  position: relative;
  z-index: 1;
  padding: 40px 32px 56px;
  text-align: center;
  flex-shrink: 0;
}

.download-footer .developer {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.download-footer .links {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.download-footer .links a {
  color: var(--primary-purple);
  text-decoration: none;
}

.download-footer .links a:active {
  opacity: 0.7;
}

.download-footer .divider {
  margin: 0 8px;
  color: #d0c0e0;
}

/* 适配小屏 */
@media (max-width: 360px) {
  .download-brand {
    padding-top: 60px;
    padding-bottom: 36px;
  }

  .download-actions {
    padding: 0 32px;
    padding-top: 16px;
  }

  .action-btn {
    height: 48px;
    font-size: 16px;
  }
}

/* 适配大屏 */
@media (min-width: 600px) {
  .download-page {
    align-items: center;
  }

  .download-brand,
  .download-actions,
  .download-footer {
    width: 100%;
    max-width: 480px;
  }
}
