* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: radial-gradient(circle at top, #1b1b1b, #050505);
  color: #fff;
  font-family: 'VT323', monospace;
}

/* LAYOUT */
section, footer {
  display: flex;
  justify-content: center;
  width: 100%;
}

.inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
}

/* HERO */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.skin {
  width: 140px;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  margin: 10px 0;
}

.tagline {
  color: #bbb;
}

.welcome {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.2rem;
}

/* BUTTONS */
.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 22px;
  background: #3aa655;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
}

/* STATUS */
.status {
  padding: 50px 0;
}

.status .inner {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: rgba(20,20,20,0.9);
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
}

.card h2 {
  text-align: center;
  margin-top: 0;
}

.discord iframe {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: 8px;
}

/* LIST */
ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

/* SCREENSHOTS */
.screenshots {
  padding: 50px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

#lightbox span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 30px 0;
  text-align: center;
  color: #aaa;
}

footer a {
  color: #7CFF7C;
  text-decoration: none;
}
