* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #070707;
  color: white;
}

.navbar {
  height: 90px;
  background: #0d0d0f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 55px;
  border-bottom: 1px solid #2a2a2a;
}

.discord-link img {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  transition: 0.2s ease;
}

.discord-link img:hover {
  transform: scale(1.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo img {
  width: 55px;
}

.logo span span {
  color: #ff1f35;
}

.navlinks {
  display: flex;
  gap: 45px;
}

.navlinks a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navlinks .active {
  color: #ff1f35;
  border-bottom: 3px solid #ff1f35;
  padding-bottom: 20px;
}

.hero {
  height: 520px;
  background: url("assets/hero.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #202020;
}

.hero-content {
  text-align: center;
}

.product {
  width: 700px;
  max-width: 80vw;
  filter: drop-shadow(0 0 25px #ff1f35);
}

.buy-btn {
  display: inline-block;
  margin-top: -40px;
  padding: 20px 45px;
  background: rgba(255, 0, 20, 0.2);
  border: 2px solid #ff3448;
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 25px #ff1f35;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 60px 40px;
}

.card {
  width: 330px;
  min-height: 300px;
  padding: 45px;
  border: 2px solid #ff3448;
  border-radius: 15px;
  background: radial-gradient(circle, #1a1010, #090909);
  box-shadow: 0 0 25px rgba(255, 31, 53, 0.35);
  text-align: center;
}

.icon {
  font-size: 60px;
  color: #ff3448;
  margin-bottom: 25px;
}

.card h2 {
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.card p {
  text-align: left;
  margin: 15px 0;
  font-size: 18px;
}

footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid #202020;
  color: #aaa;
}

footer span {
  color: #ff1f35;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .navlinks {
    gap: 20px;
  }
}