/* =======================================
   DOWNLOAD PAGE – STORMPK
   RPG DARK STYLE
======================================= */

.download-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: px 20px;
  font-family: "Cinzel", serif;
  color: #e6d6b8;
}

.download-section h1 {
  text-align: center;
  font-size: 34px;
  color: #afaeabf5;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0);
}

.download-warning {
  text-align: center;
  font-size: 14px;
  color: #cbbfa8;
  margin-bottom: 50px;
}

/* BOTÕES DE DOWNLOAD */
.download-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.download-card {
  background: linear-gradient(180deg, #1b120c, #070403);
  border: 1px solid #6b4b1e;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: #e6d6b8;
  box-shadow: 0 0 30px rgba(0,0,0,0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.download-card img {
  width: 150px;
  margin-bottom: 15px;
}

.download-card span {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.download-card strong {
  color: #d4af37;
  font-size: 15px;
}

/* ATENÇÃO */
.download-attention {
  background: rgba(20, 14, 8, 0.9);
  border: 1px solid #6b4b1e;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 60px;
}

.download-attention h2 {
  color: #d4af37;
  margin-bottom: 10px;
}

.error-box {
  background: #0b0704;
  border-left: 4px solid #d4af37;
  padding: 15px;
  margin: 15px 0;
  font-family: monospace;
  font-size: 13px;
}

.help-link {
  color: #9fd3ff;
  text-decoration: none;
  font-size: 14px;
}

.help-link:hover {
  text-decoration: underline;
}

/* REQUISITOS */
.requirements h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.requirements table {
  width: 100%;
  border-collapse: collapse;
}

.requirements td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.requirements td:first-child {
  color: #cbbfa8;
  width: 45%;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .download-section h1 {
    font-size: 26px;
  }
}
