@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&display=swap');

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #f0f0f0;
  height: 100vh;
  overflow-x: hidden;
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.center-screen {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.discord-button {
  background-color: #5865f2;
  color: white;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  padding: 1rem 2.25rem;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 0 18px rgba(88, 101, 242, 0.5);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  animation: pulse 2s infinite;
  user-select: none;
}

.discord-button:hover,
.discord-button:focus-visible {
  outline: none;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.85);
}

.discord-icon {
  width: 24px;
  height: 24px;
}

nav {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  user-select: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav li {
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  border-radius: 8px;
  color: #ddd;
}

nav li.active,
nav li:hover,
nav li:focus-visible {
  background: #5865f2;
  color: #fff;
  outline: none;
}

main {
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 70vh;
  user-select: text;
}

.tab.hidden {
  display: none;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #ffffffdd;
  user-select: text;
}

.glass-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.8;
  user-select: text;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 600px) {
  main {
    padding: 2rem 1rem;
  }
  nav ul {
    gap: 1rem;
  }
  .discord-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
