/* IMPORT GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;900&family=Pacifico&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: white;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

/* HERO SECTION */
.hero {
  padding: 120px 20px 150px;
  position: relative;
}


/* LOGO */
.hero-logo {
  width: 260px;
  position: relative;
  z-index: 5;
  margin-top: 50px;
}

/* BRAND TITLE */
.brand-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-top: 30px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

/* TAGLINE */
.tagline {
  font-size: 32px;
  margin-top: 10px;
  font-family: 'Pacifico', cursive;
  color: #fff234;
  text-shadow: 0 0 12px rgba(255, 255, 80, 0.8);
}

/* CTA BUTTON */
.btn-primary {
  display: inline-block;
  margin-top: 38px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #ff4d3a, #d13da8, #6b63ff);
  box-shadow: 0 8px 40px rgba(110, 70, 255, 0.35);
  transition: 0.2s;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 60px rgba(110, 70, 255, 0.5);
}
