/* WPS Office Download - Warm Carrot Edition */
:root {
  --prism-red: #e65100;
  --prism-warm-red: #fff3e0;
  --prism-black: #fff8f1;
  --magic-speed: 0.6s;
  --magic-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

body {
  background: var(--prism-black);
  perspective: 1500px;
  color: #1d1d1f;
}

.download-hero {
  padding: 180px 60px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-card, .dl-item, .step-box {
  background: #fff;
  border: 1px solid rgba(230, 81, 0, 0.08);
  border-radius: 40px;
  transition: all 0.3s ease;
}

.download-card {
  padding: 80px;
  box-shadow: 0 10px 30px rgba(230, 81, 0, 0.05);
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

/* Static Hover: Only subtle shadow and border, no movement */
.download-card:hover {
  box-shadow: 0 20px 50px rgba(230, 81, 0, 0.08);
  border-color: rgba(230, 81, 0, 0.2);
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  width: 100%;
  max-width: 1200px;
}

.dl-item {
  padding: 50px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dl-item:hover {
  background: #fff;
  box-shadow: 0 15px 35px rgba(230, 81, 0, 0.06);
  border-color: var(--prism-red);
}

.step-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 120px;
  max-width: 1200px;
  width: 100%;
}

.step-box {
  padding: 40px;
  background: rgba(230, 81, 0, 0.02);
  border: 1px dashed rgba(230, 81, 0, 0.1);
}

.step-tag {
  font-size: 32px;
  font-weight: 900;
  color: var(--prism-red);
  opacity: 0.2;
  margin-bottom: 20px;
}

.version-info h2 {
  font-size: 36px;
  margin: 20px 0;
}

.version-info p {
  color: #86868b;
  font-size: 16px;
}

@media (max-width: 900px) {
  .dl-grid, .step-track {
    grid-template-columns: 1fr;
  }
}
