/* RESET */
* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body {
  background:#05000a;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
  background:linear-gradient(90deg,#ff00ff,#00f2ea);
  padding:15px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 0 20px #ff00ff;
}

.logo {
  font-size:22px;
  font-weight:bold;
  color:white;
}

nav a {
  color:white;
  margin-left:20px;
  text-decoration:none;
  font-weight:bold;
  transition:.2s;
}

nav a:hover {
  text-decoration:underline;
  color:black;
}

/* HERO SECTION */
.hero {
  text-align:center;
  padding:80px 20px;
}

.hero h1 {
  font-size:42px;
  color:#ff0050;
  text-shadow:0 0 15px #ff0050;
}

.hero p {
  color:#ccc;
  font-size:16px;
}

/* BUTTONS */
.btn-tiktok {
  display:inline-block;
  margin-top:10px;
  padding:10px 20px;
  background:#ff0050;
  color:white;
  border-radius:999px;
  font-weight:bold;
  text-decoration:none;
  transition:.2s;
  box-shadow:0 0 10px #ff0050;
}

.btn-tiktok:hover {
  backgroun
