/* styles.css */
html, body {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  background-color: #f9f9f9;
  color: #333;
}

header, footer {
  background-color: #222;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.70rem;
}

footer p:hover {
  color: #0077ff88;
  transition: color 0.3s ease;
  text-shadow: 0 0 2px #0077ff88;
}

h1 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.75rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
}

main {
  background-color: #fff;
  padding: 2rem 1rem;
  margin: 2rem auto;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  flex: 1;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

main:hover {
  box-shadow: 0 4px 15px rgba(127, 95, 207, 0.4);
}

main p {
  color: #7f5fcf;
}

main a {
  color: #7f5fcf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

main a:hover {
  color: #a98fdc;
  text-shadow: 0 0 6px rgba(127, 95, 207, 0.5);
}

main .discord-link img {
  width: 48px;
  height: 48px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

main .discord-link img:hover {
  filter: drop-shadow(0 0 6px rgba(127, 95, 207, 0.5));
  transform: scale(1.05);
}

.logo {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7f5fcf, #a98fdc, #7f5fcf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(127, 95, 207, 0.4);
  transition: text-shadow 0.4s ease;
}

.logo:hover {
  text-shadow: 0 0 12px rgba(127, 95, 207, 0.6), 0 0 20px rgba(169, 143, 220, 0.6);
}

h2 {
  color: blueviolet;
  
}