* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #b11226, #7a0c19);
  color: white;
  text-align: center;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.nav-btn {
  background: rgba(0,0,0,0.35);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: background 0.25s ease;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.55);
}

/* HERO */
.hero {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px 40px;
}

/* LOGO IMAGE */
.logo-img {
  width: 120px;
  margin-bottom: 25px;
  filter:
    drop-shadow(0 0 10px rgba(255, 0, 0, 0.6))
    drop-shadow(0 0 25px rgba(180, 0, 0, 0.8));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 20px rgba(255, 50, 50, 0.9))
    drop-shadow(0 0 40px rgba(255, 0, 0, 1));
}

h1 {
  font-size: 56px;
  margin: 10px 0;
}

/* GLOWING "OLD" */
.old-glow {
  color: #ff4d4d;
  text-shadow:
    0 0 6px #ff4d4d,
    0 0 12px #ff1a1a,
    0 0 25px #cc0000,
    0 0 45px rgba(255, 0, 0, 0.8);
  animation: glowPulse 2s infinite;
}

/* GLOW ANIMATION */
@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 6px #ff4d4d,
      0 0 12px #ff1a1a,
      0 0 25px #cc0000;
  }
  50% {
    text-shadow:
      0 0 14px #ff6b6b,
      0 0 30px #ff0000,
      0 0 55px rgba(255,0,0,0.9);
  }
  100% {
    text-shadow:
      0 0 6px #ff4d4d,
      0 0 12px #ff1a1a,
      0 0 25px #cc0000;
  }
}

.subtitle {
  font-size: 18px;
  opacity: 0.9;
}

/* PILL */
.pill {
  margin: 25px auto;
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  font-weight: 500;
}

/* FEATURES */
.features {
  max-width: 700px;
  margin: 40px auto;
  background: rgba(0,0,0,0.4);
  border-radius: 22px;
  padding: 30px 20px;
  backdrop-filter: blur(6px);
}

.features h2 {
  margin-bottom: 20px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 12px 0;
  font-size: 16px;
}

/* BUTTONS */
.buttons {
  margin: 40px 0 60px;
}

.download-btn {
  display: inline-block;
  padding: 18px 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5f6d, #ff1a1a);
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.discord-btn {
  display: inline-block;
  margin-left: 15px;
  padding: 16px 40px;
  border-radius: 999px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.discord-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.compat {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}
