/* Basic Reset */
* {
  box-sizing: border-box;
}

/* Body and background */
body {
  font-family: 'Courier New', monospace;
  background-color: #121212;
  background-image: url('https://www.transparenttextures.com/patterns/purty-wood.png');
  background-repeat: repeat;
  color: #dcdcdc;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #3e8e41;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
}

.logo {
  width: 200px;
  display: block;
  margin: 0 auto 15px auto;
  image-rendering: pixelated;
}

h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: 4em;
  letter-spacing: 4px;
  color: #50c878;
  text-shadow: 2px 2px 3px #000;
  margin: 0 0 10px 0;
}

.subtitle {
  font-size: 1.2em;
  color: #cdebc5;
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
}

/* Sections */
section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

/* Server info styling */
section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

section ul li {
  padding: 5px 0;
}

/* Join button */
.join-button {
  display: inline-block;
  background-color: #3c8e3a;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.join-button:hover {
  background-color: #2f6e2e;
}

/* Event section */
.event {
  background-color: #3c6e3a;
  color: #dcebdc;
  border: 3px solid #50c878;
  border-radius: 12px;
  padding: 25px 20px;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 0 12px #50c878aa;
}

/* Discord invite */
.discord-invite {
  text-align: center;
}

.discord-button {
  display: inline-block;
  background-color: #5865F2;
  color: white;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  box-shadow: 0 4px 10px rgba(88, 101, 242, 0.5);
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.discord-button:hover {
  background-color: #4752c4;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

footer a {
  color: #50c878;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}.thanks {
  text-align: center;
  background-color: #1e1e1e;
  color: #dcdcdc;
  padding: 25px 15px;
  margin: 40px auto;
  border-top: 2px dashed #50c878;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(80, 200, 120, 0.3); 
}.special-thanks {
  text-align: center;
  background-color: #1e1e1e;
  color: #dcdcdc;
  padding: 25px 15px;
  margin: 40px auto;
  border-top: 2px dashed #50c878;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(80, 200, 120, 0.3);} 
  .dad-love {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffecb3;
  text-shadow: 0 0 8px #ffd54f;
  margin: 40px 0;
  font-style: italic;
}

.shirt {
  color: #ffffff;
  background: #0288d1;
  padding: 2px 10px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1.3rem;
  box-shadow: 0 0 12px #0288d1, 0 0 20px #03a9f4;
  animation: glowPulse 2s infinite ease-in-out;
}

/* Glowing animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px #0288d1, 0 0 16px #03a9f4;
  }
  50% {
    box-shadow: 0 0 16px #03a9f4, 0 0 30px #4fc3f7;
  }
  100% {
    box-shadow: 0 0 8px #0288d1, 0 0 16px #03a9f4;
  }
}