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

html, body {
  height: 100%;
  background: #000;
  color: #fff;
  overflow: hidden;
}

* {
      font-family: Verdana, sans-serif;
}

#particles-js {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

/* LOGO */
.logo {
  font-family: 'Renogare', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 2px #dfb6ff;
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

.subtitle {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-top: 8px;
  opacity: 0.85;
}

/* BUTTON GRID */
.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 30px;
  width: 100%;
  max-width: 700px;
}

button {
  background: rgba(30, 0, 50, 0.3);
  border: 1.5px solid #8f00ff;
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

button:hover::before {
  left: 130%;
}

button:hover {
  border-color: #c080ff;
  box-shadow: 0 0 15px #8f00ff44;
  transform: translateY(-2px);
}

/* CONTACT */
.contact {
  font-size: 1rem;
  opacity: 0.9;
}

.contact p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact a {
  color: #8f00ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: #c080ff;
}

#copyDiscord {
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

#copyDiscord:hover {
  color: #c080ff;
  transform: scale(1.2);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .subtitle {
    font-size: 1rem;
  }
  button {
    font-size: 0.9rem;
    padding: 10px;
  }
  .button-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
