/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: #f0f0ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
}

nav {
  width: 100%;
  max-width: 900px;
  background: rgba(255 255 255 / 0.1);
  padding: 16px 32px;
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(146,43,255,0.6);
  display: flex;
  justify-content: center;
  user-select: none;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  font-weight: 700;
  font-size: 2rem;
  color: #d4b3ff;
  letter-spacing: 3px;
  text-shadow: 0 0 15px #a450f9;
}

main {
  width: 100%;
  max-width: 900px;
  background: rgba(0,0,0,0.35);
  padding: 40px 48px;
  border-radius: 20px;
  box-shadow: 0 0 40px #a450f9aa;
  user-select: none;
  position: relative;
}

.section {
  user-select: none;
}

.main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #f7f0ff;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 4px;
  text-shadow: 0 0 25px #c27eff, 0 0 40px #7b4fff;
  user-select: none;
  animation: fadeInUp 1s ease forwards;
}

.description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: #ddd9ffcc;
  user-select: none;
  animation: fadeIn 1.5s ease forwards;
}

.description a {
  color: #9a77ff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.description a:hover,
.description a:focus {
  color: #e1c4ff;
  border-bottom-color: #e1c4ff;
  outline: none;
}

#discordJoinBtn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 40px auto;
  background: linear-gradient(45deg, #7289da, #99aab5);
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 1.3rem;
  color: #f0f0ff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(114, 137, 218, 0.7);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  user-select: none;
  text-shadow: 0 0 4px #2c2f40;
}

#discordJoinBtn img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.5));
  user-select: none;
  pointer-events: none;
}

#discordJoinBtn:hover,
#discordJoinBtn:focus {
  background: linear-gradient(45deg, #99aab5, #7289da);
  box-shadow: 0 12px 28px rgba(153, 170, 181, 0.9);
  transform: scale(1.07);
  outline: none;
}

#discordJoinBtn:active {
  transform: scale(0.97);
}

footer {
  text-align: center;
  color: #b2a5e8cc;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1rem;
  user-select: none;
  user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
  animation: fadeIn 2s ease forwards;
}

footer .credits {
  color: #e0c7ff;
  font-weight: 800;
  text-shadow: 0 0 8px #aa77ff;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 480px) {
  main {
    padding: 28px 20px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1.1rem;
  }

  #discordJoinBtn {
    font-size: 1rem;
    padding: 12px 22px;
  }

  #discordJoinBtn img {
    width: 24px;
    height: 24px;
  }
}
