@charset "utf-8";
/* CSS Document */
* /* =========================================================
   THE GOD KING CHRONICLES - MAIN STYLESHEET
   ========================================================= */

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */

:root {
  --black: #050505;
  --deep-blue: #061826;
  --gold: #d4af37;
  --royal-gold: #c9a227;
  --white: #f5f1e8;
  --muted: #b8b8b8;
  --cyan: #50a3de;
}

/* GLOBAL */

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 60px;

  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);

  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-button {
  border: 1px solid var(--gold);
  padding: 12px 20px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
}

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.hero {
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: 160px 70px 120px;

  background-image:
    linear-gradient(to right, rgba(0,0,0,0.92), rgba(0,0,0,0.55), rgba(0,0,0,0.15)),
    url("../images/homepage-hero.jpg");

  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 760px;
  padding-top: 120px;
}

.eyebrow,
.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 22px;
}

.hero h1,
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero h1 span,
h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* BUTTONS */

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 15px 26px;
  font-size: 13px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--gold), #8f6b18);
  color: #050505;
}

.secondary-button {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

/* =========================================================
   PROMISE CARDS
   ========================================================= */

.promise-section {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
}

.promise-card {
  padding: 36px 26px;
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.2);

  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.promise-card:last-child {
  border-right: none;
}

.promise-card::before {
  content: "✦";
  display: block;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 12px;
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 40px;
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.section-eyebrow {
  text-align: center;
  font-size: 13px;
  margin-bottom: 14px;
}

/* =========================================================
   WORLD CARDS
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.world-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
  transition: 0.3s ease;
}

.world-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.card-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
}

.anoura-card {
  background-image:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.45)),
    url("../images/anoura-world.jpg");
}

.earth-card {
  background-image:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.45)),
    url("../images/earth-world.jpg");
}

.vera-card {
  background-image:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.45)),
    url("../images/vera-world.jpg");
}

.card-content {
  padding: 28px;
}

.card-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.card-content p {
  color: var(--muted);
  margin-bottom: 22px;
}

.card-content a {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.7px;
  font-weight: bold;
}

/* =========================================================
   HOMEPAGE CHARACTER CARDS
   ========================================================= */

.character-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.character-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: 0.3s ease;
}

.character-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.character-image {
  height: 420px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.kentrell-card {
  background-image:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.45)),
    url("../images/kentrell-card.jpg");
}

.orenda-card {
  background-image:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.45)),
    url("../images/orenda-card.jpg");
}

.zynyla-card {
  background-image:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.45)),
    url("../images/zynyla-card.jpg");
}

.character-content {
  padding: 28px;
}

.character-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.character-content p {
  color: var(--muted);
  margin-bottom: 22px;
}

.character-content a {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.7px;
  font-weight: bold;
}

/* =========================================================
   LORE ARCHIVE CTA
   ========================================================= */

.archive-cta {
  position: relative;
  margin-top: 120px;
  padding: 130px 40px;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.92)),
    url("../images/archive-bg.jpg");

  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.archive-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(80, 163, 222, 0.18), transparent 45%),
    radial-gradient(circle at bottom, rgba(212, 175, 55, 0.12), transparent 50%);
  pointer-events: none;
}

.archive-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.archive-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.archive-cta p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 18px;
}

.archive-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 38px;
}

.archive-tags span {
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  padding: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: rgba(0,0,0,0.45);
}

/* =========================================================
   JOIN ARCHIVE SECTION
   ========================================================= */

.join-archive {
  padding: 140px 40px;
  background: #050505;
  text-align: center;
}

.join-content {
  max-width: 760px;
  margin: 0 auto;
}

.join-archive h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.join-archive p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 34px;
}

.archive-form {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.archive-form input {
  width: 420px;
  max-width: 100%;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--white);
  font-size: 15px;
  outline: none;
}

.archive-form input::placeholder {
  color: #888;
}

.archive-form button {
  padding: 18px 30px;
  border: none;
  background: linear-gradient(135deg, var(--gold), #8f6b18);
  color: #050505;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: 0.25s ease;
}

.archive-form button:hover {
  transform: translateY(-2px);
}

.join-archive small {
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}

/* =========================================================
   CHARACTER ARCHIVE PAGE
   ========================================================= */

.character-page-hero {
  min-height: 580px;
  display: flex;
  align-items: center;

  padding: 200px 70px 80px;

  background-image:
    linear-gradient(
      to right,
      rgba(0,0,0,0.88),
      rgba(0,0,0,0.60),
      rgba(0,0,0,0.35)
    ),
    url("../images/characters-bg.jpg");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.page-hero-content {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero h1,
.character-page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.page-hero p,
.character-page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  max-width: 580px;
  margin-top: 24px;
  line-height: 1.8;
  text-align: left;
}

.character-archive {
  margin-top: 40px;
}

.character-archive .section-eyebrow {
  margin-bottom: 12px;
}

.character-archive h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.archive-character-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid rgba(212, 175, 55, 0.22);
  overflow: hidden;
  transition: 0.3s ease;
}

.archive-character-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.archive-character-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.archive-character-content {
  padding: 26px;
}

.character-category {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 10px;
}

.archive-character-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 14px;
}

.archive-character-content p {
  color: var(--muted);
  margin-bottom: 22px;
}

.archive-character-content a {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.7px;
  font-weight: bold;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 100px 40px 40px;
  background: #030303;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto 60px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-bottom p {
  color: #777;
  font-size: 13px;
}

/* =========================================================
   CHARACTER DOSSIER PAGE
   ========================================================= */

.dossier-hero {
  min-height: 620px;
  display: flex;
  align-items: center;

  padding: 200px 70px 100px;

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  position: relative;
}

.dossier-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.88),
      rgba(0,0,0,0.62),
      rgba(0,0,0,0.35)
    );

  z-index: 1;
}

.kentrell-dossier-hero {
  background-image:
    url("../images/kentrell-dossier-bg.jpg");
}

.dossier-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.dossier-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 90px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}

.dossier-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  max-width: 580px;
  line-height: 1.8;
}

.orenda-dossier-hero {
  background-image:
    url("../images/orenda-dossier-bg.jpg");
}

.miracle-dossier-hero {
  background-image:
    url("../images/miracle-dossier-bg.jpg");
}

.zynyla-dossier-hero {
  background-image:
    url("../images/zynyla-dossier-bg.jpg");
}

.ithrael-dossier-hero {
  background-image:
    url("../images/ithrael-dossier-bg.jpg");
}

.dokthyr-dossier-hero {
  background-image:
    url("../images/dokthyr-dossier-bg.jpg");
}

/* =========================================================
   DOSSIER LAYOUT
   ========================================================= */

.dossier-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.dossier-sidebar img {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 30px;
}

.dossier-stats {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 30px;
}

.dossier-stats h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 24px;
}

.dossier-stats p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.dossier-stats strong {
  color: var(--white);
}

.dossier-main h2 {
  text-align: left;
  margin-bottom: 28px;
}

.dossier-main p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.9;
  font-size: 17px;
}

.dossier-main h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 28px;
  margin: 40px 0 20px;
  text-transform: uppercase;
}

.dossier-main ul {
  padding-left: 20px;
}

.dossier-main li {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.dossier-quote {
  margin: 40px 0;
  padding: 30px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.02);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.6;
  color: var(--white);
}

/*------------------------------------------------------------------------------- WORLDS HERO */

.worlds-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 200px 70px;

  background:
    linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)),
    url("../images/worlds-bg.jpg");

  background-size: cover;
}

/* FEATURE WORLD SECTIONS */

.world-feature {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 120px 70px;
  background-size: cover;
  background-position: center;
}

.world-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), transparent);
}

.world-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.world-content h2 {
  font-size: 60px;
  margin-bottom: 20px;
}

.world-content p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* BACKGROUNDS */

.anoura-feature {
  background-image: url("../images/anoura-world.jpg");
}

.earth-feature {
  background-image: url("../images/earth-world.jpg");
}

.vera-feature {
  background-image: url("../images/vera-world.jpg");
}

.gaia-feature {
  background-image: url("../images/gaia-world.jpg");
}
/* ARCHIVE CARDS */

.archive-card {
  text-align: center;
}

.archive-card img {
  height: 300px;
  object-fit: cover;
  margin-bottom: 15px;
}

.archive-card h3 {
  color: var(--gold);
}

/* -----------------------------------------------------------------------------------------------------------------GAIA WORLD PAGE */

.world-detail-hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 200px 70px 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gaia-detail-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.25)),
    url("../images/gaia-world.jpg");
}

.world-detail-content {
  max-width: 760px;
}

.world-detail-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 8vw, 110px);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.world-detail-content p {
  color: rgba(255,255,255,0.86);
  font-size: 20px;
  max-width: 620px;
  line-height: 1.8;
}

.world-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.world-info-card {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255,255,255,0.035);
  padding: 32px;
}

.world-info-card h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.world-info-card p {
  color: var(--muted);
  line-height: 1.8;
}

.gaia-quote-section {
  padding: 120px 40px;
  text-align: center;
  background:
    radial-gradient(circle, rgba(124,255,178,0.12), transparent 45%),
    #050505;
}

.gaia-quote-section p {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.4;
  color: var(--white);
}

/* ---------------------------------------------------------------------------------------------------------------------------------ANOURA WORLD PAGE */

.anoura-detail-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.25)),
    url("../images/anoura-world-2.jpg");
}

/*--------------------------------------------------------------------------------------------------------------------------------- EARTH WORLD PAGE */

.earth-detail-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.35)),
    url("../images/earth-world-2.jpg");
}

/* --------------------------------------------------------------------------------------------------------------------------------VERA WORLD PAGE */

.vera-detail-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.4)),
    url("../images/vera-world-2.jpg");
}

/* -------------------------------------------------------------------------------------------------------------------------------LORE ARCHIVE PAGE */

.lore-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 200px 70px 90px;

  background-image:
    linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.42)),
    url("../images/lore-bg.jpg");

  background-size: cover;
  background-position: center;
}

.alphabet-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.alphabet-filter a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  background: rgba(255,255,255,0.025);
  transition: 0.25s ease;
}

.alphabet-filter a:hover {
  background: var(--gold);
  color: #050505;
}

.lore-category-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 70px;
}

.lore-category-row span {
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 10px 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  background: rgba(0,0,0,0.35);
}

.lore-list {
  max-width: 1100px;
  margin: 0 auto;
}

.lore-letter-group {
  margin-bottom: 60px;
}

.lore-letter-group h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 54px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  margin-bottom: 24px;
}

.lore-entry {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.lore-entry:hover {
  padding-left: 18px;
  border-bottom-color: rgba(212, 175, 55, 0.5);
}

.lore-type {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin-bottom: 6px;
}

.lore-entry h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
}

.lore-entry p {
  color: var(--muted);
  max-width: 720px;
}

.lore-entry span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  white-space: nowrap;
  align-self: center;
}

/* ----------------------------------------------------------------------------------------------------------------------LORE DOSSIER PAGES */

.lore-dossier-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 200px 70px 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heart-anoura-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.35)),
    url("../images/heart-of-anoura-bg.jpg");
}

.lore-dossier-content {
  max-width: 820px;
}

.lore-dossier-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.lore-dossier-content p {
  color: rgba(255,255,255,0.86);
  font-size: 20px;
  max-width: 680px;
  line-height: 1.8;
}

.lore-dossier-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
}

.classified-box {
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255,255,255,0.035);
  padding: 30px;
}

.classified-box h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.classified-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.classified-box strong {
  color: var(--white);
}

.lore-dossier-main h2 {
  text-align: left;
  margin-bottom: 28px;
}

.lore-dossier-main p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.lore-dossier-main h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-size: 28px;
  margin: 42px 0 18px;
}

.lore-dossier-main ul {
  padding-left: 20px;
}

.lore-dossier-main li {
  color: var(--muted);
  margin-bottom: 14px;
}

.classified-note {
  margin: 38px 0;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.06);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

/*---------------------------------------------------------------------------------------------------------------------------- ANOURIANS LORE PAGE */

.anourians-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.38)),
    url("../images/anourians-bg.jpg");
}

/* ----------------------------------------------------------------------------------------------------------------------------COUNCIL OF NINE PAGE */

.council-nine-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.38)),
    url("../images/council-of-nine-bg.jpg");
}

.council-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 32px 0 50px;
}

.council-card {
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255,255,255,0.025);
  padding: 26px;
}

.council-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 8px;
}

.council-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.featured-councilor {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(255,255,255,0.02));
}

.featured-councilor.threat {
  border-color: rgba(160, 55, 55, 0.55);
  background: linear-gradient(135deg, rgba(160,55,55,0.12), rgba(255,255,255,0.02));
}

/*-------------------------------------------------------------------------------------------------- CELESTIALS LORE PAGE */

.celestials-hero {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.92), rgba(0,0,0,0.36)),
    url("../images/celestials-bg.jpg");
}

/* CELESTIAL CARD GRID */

.celestial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 32px 0 50px;
}

.celestial-card {
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255,255,255,0.025);
  padding: 26px;
}

.celestial-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 8px;
}

.celestial-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.celestial-card span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.5;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .site-header {
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    position: relative;
    background: #050505;
  }

  .site-header.scrolled {
    padding: 24px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    min-height: 720px;
    padding: 60px 26px;
    background-position: center;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1,
  h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .promise-section {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .promise-card {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .section {
    margin: 80px auto;
    padding: 0 24px;
  }

  .card-grid,
  .character-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .character-image {
    height: 460px;
  }

  .character-page-hero {
    min-height: 520px;
    padding: 160px 26px 70px;
  }

  .page-hero h1,
  .character-page-hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .page-hero p,
  .character-page-hero p {
    font-size: 17px;
    max-width: 100%;
  }

  .archive-character-card img {
    height: 460px;
  }

  .archive-form {
    flex-direction: column;
    align-items: center;
  }

  .archive-form input {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 14px;
  }
	
	.lore-dossier-hero {
  padding: 160px 26px 80px;
}

.lore-dossier-layout {
  grid-template-columns: 1fr;
}

.council-grid {
  grid-template-columns: 1fr;
}	
	
}