/* ==========================================================================
   VoxelMod Download Page Styles - GBA-Gen1Recomp
   ========================================================================== */

.vm-hero-section {
  padding: 1.25rem 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vm-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent-amber);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.vm-pill-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-amber);
}
.vm-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 0.75rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-align: center;
}
.vm-subtitle {
  font-size: 1.05rem;
  color: #9ca3af;
  max-width: 760px;
  line-height: 1.55;
  margin: 0 auto 0.5rem;
  text-align: center;
}
.vm-updated-date {
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

/* Status Box & Warning */
.vm-status-card {
  background: #111713;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.vm-status-left {
  flex: 1;
  min-width: 280px;
}
.vm-status-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.vm-status-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.vm-status-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
}
.vm-status-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vm-btn-outline {
  background: #17211a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.vm-btn-outline:hover {
  background: #202d24;
  border-color: var(--accent-mint);
}

.vm-alert-banner {
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #fef08a;
}
.vm-alert-tag {
  background: rgba(234, 179, 8, 0.2);
  color: #facc15;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* Latest Release Hero Card */
.vm-featured-box {
  background: #111713;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.vm-latest-card {
  background: linear-gradient(135deg, #131d16 0%, #0d140e 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.25rem;
  position: relative;
  overflow: hidden;
}
.vm-latest-watermark {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
}
.vm-mirror-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.vm-mirror-btn {
  background: #18251b;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--accent-mint);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.vm-mirror-btn:hover {
  background: #203324;
  border-color: var(--accent-mint);
  color: #ffffff;
}

/* Older Versions 2x2 Grid */
.vm-older-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (max-width: 640px) {
  .vm-older-grid {
    grid-template-columns: 1fr;
  }
}
.vm-older-card {
  background: #111713;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.25rem;
}
.vm-older-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

/* Forks 3-Column Grid */
.vm-forks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (max-width: 1024px) {
  .vm-forks-grid {
    grid-template-columns: 1fr;
  }
}
.vm-fork-card {
  background: #111713;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
