@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rajdhani', sans-serif;
}
/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* POPUP BOX */
.popup-box {
  background: #1f1f1f;
  border: 2px solid #3B5925;
  border-radius: 12px;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  animation: popupFade 0.25s ease-in-out;
}

.popup-box h2 {
  color: #3B5925;
  margin-bottom: 10px;
}

.popup-box ul {
  margin: 10px 0;
  padding-left: 20px;
}

.popup-box button {
  margin-top: 15px;
  padding: 10px 15px;
  background: #3B5925;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

.popup-box button:hover {
  background: #2f471d;
}

.warning-text {
  margin-top: 10px;
  color: #ffcc00;
}

/* ANIMATION */
@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.maintenance-bar {
  background-color: #ff6b3d; /* Bright Orange for visibility */
  color: #ffffff; /* White text */
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Make sure it's on top of other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
/* UPDATE CARD */
.update-card {
  position: relative;
}

/* =========================
   ROLE COLOR THEMES
========================= */

/* OWNER - GOLD */
.role-section.owner h2 { color: #f5c542; }
.role-section.owner .role-divider { background: #f5c542; }
.role-section.owner .staff-card { border-color: #f5c542; }
.role-section.owner .staff-card img { border-color: #f5c542; }
.role-section.owner .staff-card h3 { color: #f5c542; }

/* CO-OWNER - PURPLE */
.role-section.coowner h2 { color: #b46cff; }
.role-section.coowner .role-divider { background: #b46cff; }
.role-section.coowner .staff-card { border-color: #b46cff; }
.role-section.coowner .staff-card img { border-color: #b46cff; }
.role-section.coowner .staff-card h3 { color: #b46cff; }

/* HEAD STAFF - ORANGE */
.role-section.headstaff h2 { color: #ff6b3d; }
.role-section.headstaff .role-divider { background: #ff6b3d; }
.role-section.headstaff .staff-card { border-color: #ff6b3d; }
.role-section.headstaff .staff-card img { border-color: #ff6b3d; }
.role-section.headstaff .staff-card h3 { color: #ff6b3d; }

/* DEVELOPERS - BLUE */
.role-section.dev h2 { color: #4da3ff; }
.role-section.dev .role-divider { background: #4da3ff; }
.role-section.dev .staff-card { border-color: #4da3ff; }
.role-section.dev .staff-card img { border-color: #4da3ff; }
.role-section.dev .staff-card h3 { color: #4da3ff; }

/* MODERATORS - GREEN */
.role-section.mrp-mod h2 { color: #235a7d; }
.role-section.mrp-mod .role-divider { background: #235a7d; }
.role-section.mrp-mod .staff-card { border-color: #235a7d; }
.role-section.mrp-mod .staff-card img { border-color: #235a7d; }
.role-section.mrp-mod .staff-card h3 { color: #235a7d; }
/* MODERATORS - GREEN */
.role-section.discord-mod h2 { color: #acdcbc; }
.role-section.discord-mod .role-divider { background: #acdcbc; }
.role-section.discord-mod .staff-card { border-color: #acdcbc; }
.role-section.discord-mod .staff-card img { border-color: #acdcbc; }
.role-section.discord-mod .staff-card h3 { color: #acdcbc; }
/* GENERAL STAFF - GREY */
.role-section.staff h2 { color: #b4b4b4; }
.role-section.staff .role-divider { background: #b4b4b4; }
.role-section.staff .staff-card { border-color: #b4b4b4; }
.role-section.staff .staff-card img { border-color: #b4b4b4; }
.role-section.staff .staff-card h3 { color: #b4b4b4; }
/* HEADER */
.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* ROLE SECTIONS */
.role-section {
  margin-bottom: 50px;
  text-align: center;
}

/* DIVIDER */
.role-divider {
  width: 60%;
  margin: 10px auto 25px;
  border: 0;
  height: 2px;
  background: #1c2b16;
}

/* STAFF ROW (SIDE BY SIDE LAYOUT) */
.staff-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* STAFF CARD */
.staff-card {
  background: linear-gradient(145deg, #0c111a, #080d14);
  border: 1px solid #1c2b16;
  padding: 18px;
  width: 170px;
  border-radius: 12px;
  text-align: center;
  transition: 0.25s;
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(59, 89, 37, 0.35);
  border-color: #3B5925;
}

.staff-card img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3B5925;
  margin-bottom: 10px;
}

/* TEXT */
.staff-card h3 {
  color: #3B5925;
  font-size: 16px;
}

.staff-card p {
  color: #94a3b8;
  font-size: 13px;
}
/* TAG */
.update-tag {
  background: #3B5925;
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}

.update-tag.old {
  background: #444;
  color: #aaa;
}

/* HOVER GLOW BOOST */
.update-card:hover {
  box-shadow: 0 0 25px rgba(59, 89, 37, 0.4);
}
/* BODY */
body {
  background: #0a0f0a;
  padding-top: 50px;
  color: #ffffff;
}
.small-hero {
  padding: 60px 20px;
}

.center {
  text-align: center;
}

/* ROLE TITLES */
.role-section h2 {
  text-align: center;
  color: #3B5925;
  margin-bottom: 15px;
  font-size: 24px;
}

/* STAFF CARD TEXT */
.staff-card h3 {
  color: #3B5925;
  margin-top: 10px;
}

.staff-card p {
  font-size: 13px;
}
/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1c2b16;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  width: 40px;
  border-radius: 50%;
}

.nav-left span {
  font-weight: 700;
  color: #3B5925;
}

.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #3B5925;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #1a2b12, #050805);
}

.hero h1 {
  font-size: 52px;
  color: #3B5925;
  text-shadow: 0 0 15px rgba(59, 89, 37, 0.6);
}

.hero p {
  margin-top: 10px;
  color: #94a3b8;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #3B5925;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.btn:hover {
  background: #4e7330;
  box-shadow: 0 0 15px rgba(59, 89, 37, 0.6);
}

/* CONTAINER */
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* CARD */
.card {
  background: linear-gradient(145deg, #0c111a, #080d14);
  border: 1px solid #1c2b16;
  padding: 25px;
  border-radius: 12px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 89, 37, 0.3);
}

.main-card {
  border-left: 4px solid #3B5925;
}

/* HEADINGS */
.card h2 {
  margin-bottom: 10px;
  color: #3B5925;
}

.card h3 {
  margin-top: 20px;
  color: #7aa35a;
}

/* TEXT */
.card p {
  color: #cbd5e1;
  margin: 10px 0;
}

.card ul {
  padding-left: 20px;
  margin-top: 10px;
}

.card li {
  margin: 6px 0;
  color: #94a3b8;
}

/* NOTICE BOX */
.notice-box {
  background: rgba(59, 89, 37, 0.08);
  border-left: 4px solid #3B5925;
  padding: 12px;
  border-radius: 8px;
  margin: 15px 0;
}

/* WARNING BOX */
.warning-box {
  margin-top: 20px;
  background: rgba(255, 0, 0, 0.08);
  border-left: 4px solid #ff4d4d;
  padding: 12px;
  border-radius: 8px;
  color: #ffaaaa;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid #1c2b16;
  color: #64748b;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }
}
