/* Download Page Styles - Gold Theme */

/* Hero Section */
.download-hero {
  background: linear-gradient(135deg, rgba(210, 155, 97, 0.1) 0%, rgba(0, 0, 0, 0) 100%), url("../images/hero-bg.png")
    center / cover;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.download-hero-content {
  position: relative;
  z-index: 1;
}

.download-title {
  font-family: "Prata", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--mainColor, #d29b61);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(210, 155, 97, 0.5);
  animation: fadeInUp 0.8s ease;
}

.download-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.download-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.download-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mainColor, #d29b61);
  text-shadow: 0 0 20px rgba(210, 155, 97, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Download Section */
.download-section {
  padding: 80px 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 80px;
}

.download-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(210, 155, 97, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mainColor, #d29b61), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.download-card:hover::before {
  transform: translateX(100%);
}

.download-card:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 155, 97, 0.5);
  box-shadow: 0 20px 40px rgba(210, 155, 97, 0.2);
}

.download-icon {
  color: var(--mainColor, #d29b61);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(210, 155, 97, 0.3));
}

.download-card-title {
  font-family: "Prata", serif;
  font-size: 1.8rem;
  color: var(--mainColor, #d29b61);
  margin-bottom: 0.5rem;
}

.download-card-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.download-card-stats {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Download Buttons */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--mainColor, #d29b61) 0%, #b8864f 100%);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.download-btn:hover::before {
  width: 300px;
  height: 300px;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(210, 155, 97, 0.4);
}

.download-btn.mega {
  background: linear-gradient(135deg, #db00a1 0%, #ff2e92 100%);
  color: white;
}

.download-btn.mega:hover {
  box-shadow: 0 10px 30px rgba(219, 0, 161, 0.4);
}

.download-btn.mediafire {
  background: linear-gradient(135deg, #2d7bc2 0%, #4aa0eb 100%);
  color: white;
}

.download-btn.mediafire:hover {
  box-shadow: 0 10px 30px rgba(45, 123, 194, 0.4);
}

.download-info {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* System Requirements */
.system-requirements {
  margin-bottom: 80px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(210, 155, 97, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.requirement-card:hover {
  border-color: rgba(210, 155, 97, 0.4);
  transform: translateY(-5px);
}

.requirement-card.recommended {
  border-color: rgba(210, 155, 97, 0.5);
  background: rgba(210, 155, 97, 0.05);
  box-shadow: 0 0 30px rgba(210, 155, 97, 0.1);
}

.requirement-card h3 {
  font-family: "Prata", serif;
  color: var(--mainColor, #d29b61);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.requirement-card ul {
  list-style: none;
  padding: 0;
}

.requirement-card li {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.requirement-card li:hover {
  color: var(--mainColor, #d29b61);
  padding-left: 10px;
}

.requirement-card li:last-child {
  border-bottom: none;
}

.requirement-card li strong {
  color: var(--mainColor, #d29b61);
}

/* Installation Guide */
.installation-guide {
  text-align: center;
  margin-bottom: 80px;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.guide-step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--mainColor, #d29b61) 0%, #b8864f 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(210, 155, 97, 0.3);
  transition: all 0.3s ease;
}

.guide-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(210, 155, 97, 0.5);
}

.step-content h3 {
  font-family: "Prata", serif;
  color: var(--mainColor, #d29b61);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Patches Section */
.mymintitle {
  font-family: "Prata", serif;
  font-size: 2rem;
  color: var(--mainColor, #d29b61);
  text-align: center;
  margin: 3rem 0 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}

.mymintitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mainColor, #d29b61), transparent);
}

.clients-container {
  margin-bottom: 3rem;
}

.clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.clients a {
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(210, 155, 97, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.clients a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(210, 155, 97, 0.1), transparent);
  transition: left 0.5s ease;
}

.clients a:hover::before {
  left: 100%;
}

.clients a:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 155, 97, 0.5);
  box-shadow: 0 10px 25px rgba(210, 155, 97, 0.2);
}

.clients .information h1 {
  font-size: 1rem;
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.clients a:hover .information h1 {
  color: var(--mainColor, #d29b61);
}

.clients .information h1:first-child {
  font-weight: bold;
  color: var(--mainColor, #d29b61);
  font-size: 1.1rem;
}

.clients .icon {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.clients a:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.clients .mediafire .icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232D7BC2"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>');
}

.clients .mega .icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23DB00A1"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 15.5v-7l5 3.5-5 3.5z"/></svg>');
}

.clients .unzip .icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23d29b61"><path d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></svg>');
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .download-title {
    font-size: 2.5rem;
  }

  .download-subtitle {
    font-size: 1.2rem;
  }

  .download-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .download-grid,
  .requirements-grid,
  .clients {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .download-hero {
    padding: 80px 0 60px;
  }

  .download-title {
    font-size: 2rem;
  }

  .download-card {
    padding: 1.5rem;
  }

  .mymintitle {
    font-size: 1.5rem;
  }
}
