@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  scroll-behavior: smooth;
}

body {
  background-color: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0d0d0d;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  border-bottom: 1px solid #222;
}

.navbar .nav-link {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ff0044;
}

/* Section scroll offset */
#home,
#about,
#discord,
#contact,
#playing {
  scroll-margin-top: 100px;
}

/* Landing Section */
.overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  padding: 2rem;
  animation: fadeIn 1s ease-in-out;
}

.title {
  font-size: 4rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px #ff0044;
}

.tagline {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #ff0044;
}

.button-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.75rem 2rem;
  border: 2px solid #ff0044;
  color: #ff0044;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  background: #ff0044;
  color: #000;
}

.discord-btn {
  border-color: #7289da;
  color: #7289da;
}

.discord-btn:hover {
  background-color: #7289da;
  color: #000;
}

/* About Section */
.content {
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
  background-color: #111;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content h2 {
  font-size: 2.5rem;
  color: #ff0044;
  margin-bottom: 1rem;
}

.content p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

/* Discord Section */
.discord-section {
  min-height: 100vh;
  background-color: #0d0d0d;
  padding: 6rem 2rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discord-section h2 {
  font-size: 2.2rem;
  color: #ff0044;
  margin-bottom: 0.5rem;
}

.discord-section p {
  margin-bottom: 2rem;
  color: #ccc;
}

.discord-widget {
  display: flex;
  justify-content: center;
}

/* Contact Section */
.contact-section {
  min-height: 100vh;
  background-color: #111;
  padding: 6rem 2rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  color: #ff0044;
  margin-bottom: 1rem;
}

.contact-info {
  color: #ccc;
  font-size: 1rem;
}

.contact-info a {
  color: #7289da;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Playing Section */
.playing-section {
  min-height: 30vh;
  background-color: #111; /* dark background like other content sections */
  padding: 6rem 2rem 4rem; /* consistent padding */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.playing-section h2 {
  font-size: 2.2rem;
  color: #ff0044;
  margin-bottom: 1rem;
  font-weight: 600;
}

#playing-status {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'JetBrains Mono', monospace;
  white-space: pre-wrap; /* keep line breaks */
}

/* Footer */
footer {
  padding: 1rem;
  text-align: center;
  background-color: #0d0d0d;
  font-size: 0.9rem;
  color: #666;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
