/* Fixed Header Banner */
.studio-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: url('../assets/banner.png') top left / auto 170px repeat-x;
  z-index: 1000;
  overflow: hidden;
}

/* Logo Overlay */
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 170px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  z-index: 1001;
}
.logo {
  max-height: 280px;
  width: auto;
  display: block;
}

/* Main Content */
body.loaded main {
  margin-top: 230px; /* header (170px) + nav (approx 60px) */
  padding-bottom: 100px; /* space for fixed footer */
}
.intro {
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 1em;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* Carousel Images */
.half-size {
  max-width: 50%;
  height: auto;
}

footer {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 1em;
  background-color: #0f0f0f;
  border-top: 2px solid #00ff00;
  color: #00ff00;
  font-family: 'Minecraftia', sans-serif;
  font-size: 0.85rem;
  box-shadow: 0 -2px 8px rgba(0, 255, 0, 0.2);
  z-index: 10;
}


.discord-custom-panel {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid #00ffcc;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #e0fdfd;
  text-align: center;
}

.discord-custom-panel h2 {
  font-family: 'Minecraftia', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00ffcc;
  text-shadow: 0 0 6px #00ffcc;
}

.member-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.member-card {
  background-color: #111;
  border: 1px solid #00ffcc;
  border-radius: 8px;
  padding: 1rem;
  width: 160px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,255,255,0.1);
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: scale(1.05);
}

.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,255,255,0.3);
  margin-bottom: 0.5rem;
}

.member-name {
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Minecraftia', sans-serif;
  display: block;
}

.member-status {
  font-size: 0.85em;
  color: #ccc;
  font-style: italic;
}

.member-card.online { box-shadow: 0 0 12px #00ffcc; }
.member-card.idle { box-shadow: 0 0 12px #ffaa00; }
.member-card.dnd { box-shadow: 0 0 12px #ff0033; }