* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #1a1a1a, #0a0a0a);
  color: #fff;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #3fe281;
}

.logo {
  width: 90px;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.1) translateY(-5px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #3fe281;
}

/* HERO */
#hero {
  text-align: center;
  padding: 100px 20px;
}

#hero h2 {
  font-size: 50px;
  color: #3fe281;
  text-shadow: 0 0 15px #3fe281;
}

#hero p {
  margin-top: 10px;
  color: #aaa;
}

/* IP BOX */
.ip-box {
  margin-top: 25px;
}

.ip-box span {
  background: #3fe281;
  padding: 12px 25px;
  border-radius: 10px;
  display: inline-block;
  font-size: 20px;
  color: #000;
  transition: 0.3s;
}

.ip-box span:hover {
  transform: scale(1.1);
  background: #5effa0;
}

.discord {
  text-align: center;
  margin: -50px 20px;
  padding: 50px;
  background: #1a1a1a;
  border-radius: 15px;
  border: 2px solid #3fe281;
}

.discord h2 {
  color: #3fe281;
  margin-bottom: 10px;
}

.discord p {
  color: #aaa;
  margin-bottom: 20px;
}

.discord-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.discord-btn:hover {
  background: #4752c4;
  transform: scale(1.1);
}

footer {
  text-align: center;
  padding: 20px;
  color: #777;
  border-top: 2px solid #3fe281;
  margin-top: 100px;
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding: 20px;
  color: #777;
  border-top: 2px solid #3fe281;
  margin-top: 100px;
  text-decoration: none;
}

#hero {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  #hero h2 {
    font-size: 32px;
  }
}