@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  background:
    linear-gradient(rgba(10, 30, 40, 0.85), rgba(10, 30, 40, 0.85)),
    url("background.png") center / cover no-repeat fixed;
  color: #e6f7ff;
  font-family: "Montserrat", sans-serif;
}

/* ───────── HEADER ───────── */

.wiki-header {
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 55, 75, 0.9);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 36px;
  height: 36px;
}

.site-title {
  font-weight: 600;
  font-size: 16px;
}

.header-nav span {
  margin-left: 22px;
  font-size: 13px;
  letter-spacing: 0.6px;
  opacity: 0.85;
}

/* ───────── HERO ───────── */

.hero {
  position: relative;
  height: 520px;
}

.hero-overlay {
  background: rgba(10, 30, 40, 0.65);
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 90%;
  max-width: 820px;
  height: auto;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.45));
  transform: translateY(-6px);
}

/* ───────── WELCOME BAR ───────── */

.welcome {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.45);
}

/* ───────── MAIN CONTENT ───────── */

.main-content {
  padding: 20px 6% 28px;
}

.main-content--tight {
  padding-top: 10px;
}

/* ───────── NARROW LEFT SECTION ───────── */

.narrow-section {
  max-width: 860px;     /* matches screenshot feel */
  margin-left: 0;       /* keeps it left-aligned */
}

.page-banner {
  position: relative;
  background: rgba(110, 110, 110, 0.65);
  padding: 10px 42px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 14px 0 12px;
  clip-path: polygon(
    14px 0%,
    calc(100% - 14px) 0%,
    100% 50%,
    calc(100% - 14px) 100%,
    14px 100%,
    0% 50%
  );
}

.page-intro {
  text-align: center;
  opacity: 0.85;
  margin-bottom: 36px;
  font-size: 14px;
}

/* ───────── GRID ───────── */

.content-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 48px;
}

.content-left ul {
  list-style: disc;
  padding-left: 20px;
}

.content-left li {
  margin-bottom: 22px;
  line-height: 1.6;
  font-size: 14px;
}

/* ───────── RIGHT PANEL ───────── */

.content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.side-logo {
  width: 200px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.staff-box {
  width: 100%;
  background: rgba(120, 120, 120, 0.65);
  padding: 16px 18px;
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.staff-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
}

.staff-box ul {
  list-style: disc;
  padding-left: 18px;
}

.staff-box li {
  font-size: 13px;
  margin-bottom: 4px;
}

.side-logo {
  width: 200px;
  margin-bottom: 10px;
}

.content-grid {
  align-items: start;
}

/* ───────── INFO BOXES ───────── */

.info-box {
  background: rgba(20, 40, 50, 0.65);
  padding: 22px 28px;
  margin-bottom: 20px;
}

.info-box ul {
  list-style: disc;
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

/* ───────── LINKS ───────── */

.link {
  color: #00cfff;
  cursor: pointer;
}

.link:hover {
  text-decoration: underline;
}
