body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(to bottom, #200000, #5a0a06, #000);
  margin: 0;
  padding: 0;
  text-align: center;
  overflow-x: hidden;
}

.fire-bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://media.tenor.com/ZF4WYo_tZ9kAAAAM/fire-flames.gif') center/cover no-repeat;
  opacity: 0.08;
  z-index: -1;
  filter: blur(2px);
}

.logo-glow {
  width: 120px;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px #ff6600); }
  to { filter: drop-shadow(0 0 25px #ff4500); }
}

.fade-in { animation: fadeIn 2s ease-in; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.btn {
  text-decoration: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  margin: 10px;
  display: inline-block;
  transition: 0.3s;
  font-weight: 600;
}

.btn-play { background: #ff3b00; }
.btn-download { background: #ffb347; color: #000; }

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ff6600;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  display: inline-block;
  width: 250px;
  margin: 15px;
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255,69,0,0.2);
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 140, 0, 0.25);
}

.center-section {
  max-width: 700px;
  margin: 50px auto;
  text-align: center;
}

h1, h2, h3 {
  text-shadow: 0 0 10px #ff6600;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "🔥 ";
  color: orange;
}

.footer-glow {
  margin-top: 60px;
  padding: 20px 0;
  background: #140000;
  color: #ffb347;
  text-shadow: 0 0 8px #ff6600;
}

.footer-glow a {
  color: #ffb347;
  text-decoration: none;
  transition: 0.3s;
}

.footer-glow a:hover {
  color: #fff;
  text-shadow: 0 0 10px #fff;
}
