/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0b0b0d;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* ===== Section Container ===== */
.download-section {
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh;
}

.download-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.download-section h1 span {
  color: #ff0077;
}

.subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* ===== Grid Layout ===== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  padding: 0 20px;
}

/* ===== Download Card ===== */
.download-card {
  background: #141418;
  border-radius: 20px;
  padding: 25px;
  max-width: 320px;
  text-align: center;
  border: 2px solid rgba(255, 0, 119, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 119, 0.1);
  transition: all 0.4s ease;
}

.download-card:hover {
  box-shadow: 0 0 25px rgba(255, 0, 119, 0.6);
  transform: translateY(-8px);
}

.download-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.download-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.download-card p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ===== Download Button ===== */
.download-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  background: linear-gradient(90deg, #ff0077, #ff4db8);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 119, 0.5);
}

.download-btn:hover {
  background: linear-gradient(90deg, #ff4db8, #ff0077);
  box-shadow: 0 0 25px rgba(255, 0, 119, 0.8);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .download-section h1 {
    font-size: 2rem;
  }

  .download-card {
    padding: 20px;
  }

  .download-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* ===== FOOTER SECTION ===== */
.footer {
  background: #0a0a0c;
  color: #fff;
  padding: 80px 60px 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,119,0.15), transparent 70%);
  filter: blur(80px);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-about h3 {
  font-size: 1.8rem;
  color: #ff0077;
  margin-bottom: 15px;
}

.footer-about p {
  color: #bbb;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 350px;
}

.footer-links h4,
.footer-social h4 {
  color: #ff0077;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff0077;
  text-shadow: 0 0 10px rgba(255, 0, 119, 0.6);
}

.footer-social .social-icons a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 15px;
  transition: 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #ff0077;
  text-shadow: 0 0 10px rgba(255, 0, 119, 0.8);
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding-top: 25px;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom p {
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer {
    padding: 60px 30px 20px;
  }

  .footer-container {
    text-align: center;
  }

  .footer-about p {
    margin: 0 auto;
  }

  .footer-social .social-icons a {
    margin-right: 10px;
  }
}

