
/* GLOBAL BASE */
body {
  background: #ffd5e6;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* LANDING PAGE CONTAINER */
.container {
  background: #fca6c9;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  color: white;
  max-width: 400px;
  width: 100%;
  margin: 100px auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* LOGO */
.logo {
  height: 50px;
  width: auto;
  margin: 0;
}

@media (max-width: 600px) {
  .logo {
    max-width: 120px;
  }
}

/* BUTTONS (General) */
button {
  margin-top: 15px;
  padding: 10px 25px;
  background-color: #ff69b4;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
}

button:hover {
  background-color: #ff85c1;
}

/* FORMS */
input {
  padding: 10px;
  width: 80%;
  margin-top: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.message {
  margin-top: 15px;
  color: #fff;
  font-weight: bold;
}

/* HEADER */
.topbar {
  background-color: #fca6c9;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* NAV MENU */
.navmenu {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}

.navmenu a {
  background-color: #fff;
  color: #fca6c9;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  width: 150px;
  height: 48px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
  line-height: 1;
  vertical-align: middle;
}

/* ICONS */
.icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

.icons img {
  height: 28px;
  cursor: pointer;
}

/* MAIN CONTENT WRAPPER */
.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

/* HOMEPAGE LAYOUT */
.main {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* PROMO */
.promo {
  flex: 1 1 600px;
  max-width: 600px;
  min-width: 300px;
}

.promo img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* GAMES */
.games {
  flex: 1 1 400px;
  min-width: 300px;
  background: #fca6c9;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.games h2 {
  margin-top: 0;
  color: white;
  text-shadow: 1px 1px #d65ca6;
}

.game-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 20px;
}

.game-card {
  flex: 1 1 120px;
  max-width: 150px;
  height: 120px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* FOOTER BOX */
.footer-box {
  margin: 30px auto;
  max-width: 900px;
  background: #fca6c9;
  border-radius: 20px;
  padding: 20px;
  min-height: 120px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#footerTitle {
  text-align: center;
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
}

/* COPYRIGHT FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  color: white;
  font-size: 14px;
  margin-top: 40px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .promo, .games {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .promo img {
    max-height: none;
  }

  .navmenu {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .topbar {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .icons {
    margin-top: 10px;
  }

  .logo {
    margin-bottom: 10px;
    height: 40px;
  }
}

/* STAFF PAGE STYLING */
.staff-container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.staff-container h2 {
  margin-top: 50px;
  font-size: 24px;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding-bottom: 5px;
}

.staff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.staff-card {
  background: #fca6c9;
  border-radius: 20px;
  padding: 20px;
  width: 180px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  text-align: center;
}

.staff-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid white;
  transition: border-color 0.3s ease;
}

.staff-card h3 {
  margin: 5px 0;
  font-size: 18px;
}

.staff-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* STATUS COLORS ON AVATAR BORDERS */
.staff-card.online img { border-color: #43b581; }
.staff-card.idle img   { border-color: #faa61a; }
.staff-card.dnd img    { border-color: #f04747; }
.staff-card.offline img { border-color: #888; }

/* STATUS DOT */
.status-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.staff-card.online .status-dot  { background-color: #43b581; }
.staff-card.idle .status-dot    { background-color: #faa61a; }
.staff-card.dnd .status-dot     { background-color: #f04747; }
.staff-card.offline .status-dot { background-color: #888; }
