:root {
  color-scheme: dark;
  --bg: #100a06;
  --panel: #21150e;
  --panel-2: #2d1c11;
  --border: rgba(242, 193, 91, 0.22);
  --gold: #f2c15b;
  --text: #fcebd3;
  --muted: #bda58f;
  --green: #62d68b;
  --red: #ec7c76;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 16%, rgba(190, 80, 20, .17), transparent 24rem),
    radial-gradient(circle at top, #392313 0, var(--bg) 48%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
button, input, select { font: inherit; }

.topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
  background: rgba(16, 10, 6, 0.84);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { color: inherit; text-decoration: none; display: flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(145deg, #f7d58a, #a96c24); color: #241208; font-weight: 900;
  box-shadow: 0 6px 20px rgba(242, 193, 91, .2);
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); margin-top: 2px; }
.connection { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .9rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #8b7565; }
.status-dot.online { background: var(--green); box-shadow: 0 0 12px rgba(98,214,139,.7); }
.status-dot.offline { background: var(--red); }

.layout { width: min(1220px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 72px; }
.hero { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 26px; }
.eyebrow, .panel-kicker { margin: 0 0 8px; color: var(--gold); letter-spacing: .18em; font-weight: 800; font-size: .76rem; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, serif; }
h1 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.02; }
h2 { margin: 0; font-size: 1.6rem; }
.subtitle { color: var(--muted); margin: 12px 0 0; max-width: 700px; line-height: 1.6; }
.refresh-button, .clear-button, .pagination button {
  border: 1px solid var(--border); color: var(--text); background: var(--panel-2);
  border-radius: 10px; padding: 10px 14px; cursor: pointer;
}
.refresh-button:hover, .clear-button:hover, .pagination button:hover:not(:disabled) { border-color: var(--gold); }
.refresh-button:disabled { opacity: .6; cursor: wait; }

.fireplace-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr); gap: 22px; align-items: start; }
.hearth-panel, .presence-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(45, 28, 17, .96), rgba(25, 15, 9, .96));
  box-shadow: var(--shadow);
}
.hearth-panel { padding: 22px; }
.panel-heading { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 18px; }
.last-updated { margin: 0; color: var(--muted); font-size: .82rem; white-space: nowrap; }

.presence-panel { padding: 24px; position: sticky; top: 96px; overflow: hidden; }
.presence-panel::before {
  content: ""; position: absolute; inset: auto -40px -90px; height: 180px;
  background: radial-gradient(circle, rgba(255, 126, 37, .18), transparent 68%); pointer-events: none;
}
.fire-glow { font-size: 3.1rem; filter: drop-shadow(0 0 20px rgba(255, 126, 37, .55)); margin-bottom: 12px; }
.presence-count { color: var(--muted); margin: 10px 0 20px; }
.presence-count strong { color: var(--gold); font-size: 1.15rem; }
.presence-worlds { display: grid; gap: 18px; position: relative; z-index: 1; }
.presence-world h3 { margin: 0 0 8px; font-size: 1rem; color: var(--gold); }
.presence-world ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.presence-world li { display: grid; grid-template-columns: 10px 1fr; column-gap: 9px; align-items: center; }
.presence-world li small { grid-column: 2; color: var(--muted); font-size: .72rem; }
.presence-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(98,214,139,.55); }
.presence-empty { color: var(--muted); line-height: 1.5; }
.public-realm p { margin: 0; color: var(--muted); line-height: 1.45; }

.activity-feed { display: grid; gap: 10px; }
.event-card {
  display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: center; gap: 14px;
  padding: 15px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px;
  background: rgba(16, 10, 6, .5);
}
.event-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-size: 1.05rem; }
.event-card.join .event-icon { background: rgba(98,214,139,.13); color: var(--green); }
.event-card.leave .event-icon { background: rgba(236,124,118,.13); color: var(--red); }
.event-card.other .event-icon { background: rgba(242,193,91,.13); color: var(--gold); }
.event-line { font-size: 1rem; }
.event-action { color: var(--muted); }
.event-meta { margin-top: 7px; display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: .79rem; }
.world-chip { padding: 3px 8px; border-radius: 999px; background: rgba(242,193,91,.1); border: 1px solid var(--border); }
.event-time { color: var(--muted); font-size: .82rem; text-align: right; white-space: nowrap; }
.empty, .error { padding: 54px 18px; text-align: center; color: var(--muted); border: 1px dashed var(--border); border-radius: 14px; }
.error { color: #f3aaa4; }

.ledger { margin-top: 22px; border: 1px solid var(--border); border-radius: 16px; background: rgba(33, 21, 14, .72); }
.ledger summary { cursor: pointer; padding: 16px 18px; color: var(--gold); font-weight: 700; }
.ledger-content { border-top: 1px solid var(--border); padding: 16px; }
.filters { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(180px, 1.4fr) auto; gap: 12px; }
.filters label { color: var(--muted); font-size: .76rem; letter-spacing: .04em; }
.filters select, .filters input { width: 100%; margin-top: 6px; color: var(--text); background: #160e09; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; padding: 10px; }
.clear-button { align-self: end; }
.summary-row { display: flex; justify-content: space-between; color: var(--muted); font-size: .9rem; padding: 16px 4px 8px; }
.summary-row p { margin: 0; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 8px; color: var(--muted); }
.pagination button:disabled { opacity: .4; cursor: default; }

@media (max-width: 900px) {
  .fireplace-grid { grid-template-columns: 1fr; }
  .presence-panel { position: static; }
  .filters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .topbar { align-items: flex-start; }
  .connection { margin-top: 5px; }
  .layout { width: min(100% - 20px, 1220px); padding-top: 30px; }
  .hero { display: block; }
  .refresh-button { margin-top: 18px; width: 100%; }
  .panel-heading { display: block; }
  .last-updated { margin-top: 8px; }
  .filters { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 42px 1fr; }
  .event-time { grid-column: 2; text-align: left; }
}

.bar-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(45, 28, 17, .96), rgba(25, 15, 9, .96));
  box-shadow: var(--shadow);
}
.bar-note { margin: 0; color: var(--muted); font-size: .82rem; }
.bar-feed { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.bar-message {
  display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 12px; align-items: start;
  padding: 15px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px;
  background: rgba(16, 10, 6, .5);
}
.speaker-mark { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(242,193,91,.12); }
.bar-message-heading { display: flex; align-items: center; gap: 8px; }
.bar-type { color: var(--gold); text-transform: uppercase; font-size: .68rem; letter-spacing: .1em; }
.bar-message-title { margin: 7px 0 0; color: var(--gold); font-size: 1rem; }
.bar-message-title:empty { display: none; }
.bar-message-content { margin: 7px 0 0; color: var(--muted); line-height: 1.5; white-space: pre-line; }
.bar-message-time { color: var(--muted); font-size: .76rem; white-space: nowrap; }
@media (max-width: 900px) { .bar-feed { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .bar-message { grid-template-columns: 40px 1fr; }
  .bar-message-time { grid-column: 2; }
  .bar-note { margin-top: 8px; }
}

/* Tavern Staff v0.5 */
.speaker-mark {
  overflow: hidden;
  border: 1px solid rgba(242,193,91,.22);
}
.speaker-mark.has-portrait { background-size: cover; background-position: center; }
.speaker-mark.has-portrait .speaker-icon { display: none; }
.speaker-icon { font-size: 1.15rem; }
.bar-role {
  color: var(--muted);
  font-size: .72rem;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.bar-message[data-staff="garrick"] { border-left: 3px solid #d69b42; }
.bar-message[data-staff="rowan"] { border-left: 3px solid #b48adc; }
.bar-message[data-staff="elara"] { border-left: 3px solid #7da8d8; }
.bar-message[data-staff="thorne"] { border-left: 3px solid #6fa37d; }

.bulletin-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(190, 137, 67, .34);
  border-radius: 20px;
  background:
    linear-gradient(rgba(75,45,20,.16), rgba(75,45,20,.16)),
    #d7ba82;
  color: #2d1b0e;
  box-shadow: var(--shadow);
}
.bulletin-panel .panel-kicker,
.bulletin-panel h2 { color: #4d2c13; }
.bulletin-panel .bar-note { color: #6a4a2e; }
.bulletin-feed { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.bulletin-note {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(70,39,15,.25);
  border-radius: 8px;
  background: rgba(255,244,213,.66);
  box-shadow: 0 7px 20px rgba(47,25,8,.13);
  transform: rotate(-.2deg);
}
.bulletin-note:nth-child(even) { transform: rotate(.18deg); }
.bulletin-note:hover { transform: translateY(-2px) rotate(0); box-shadow: 0 10px 24px rgba(47,25,8,.18); }
.bulletin-pin { font-size: 1.15rem; padding-top: 1px; }
.bulletin-heading { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.bulletin-title { font-family: Georgia, serif; font-size: 1.02rem; }
.bulletin-time { color: #745638; font-size: .72rem; white-space: nowrap; }
.bulletin-content { margin: 8px 0 0; color: #4b321e; line-height: 1.5; white-space: pre-line; }
.bulletin-meta { display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 0; }
.bulletin-meta span { display:inline-flex; align-items:center; min-height:24px; padding:3px 9px; border:1px solid rgba(70,39,15,.18); border-radius:999px; background:rgba(106,74,46,.08); color:#684726; font-size:.68rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.bulletin-category::before { content:"•"; margin-right:6px; }
.bulletin-note[data-category="maintenance"] { border-left:4px solid #7c6856; }
.bulletin-note[data-category="realm-event"], .bulletin-note[data-category="server-event"] { border-left:4px solid #577b8d; }
.bulletin-note[data-category="memorial"] { border-left:4px solid #75758d; }
.bulletin-note[data-category="village-festival"] { border-left:4px solid #b37320; }
.bulletin-panel .empty { color: #6a4a2e; border-color: rgba(70,39,15,.28); }
@media (max-width: 760px) { .bulletin-feed { grid-template-columns: 1fr; } }

.hall-nav { display:flex; gap:8px; margin-left:auto; margin-right:20px; }
.hall-nav a { color:var(--muted); text-decoration:none; padding:8px 11px; border-radius:9px; }
.hall-nav a:hover, .hall-nav a.active { color:var(--text); background:var(--panel-2); }
@media (max-width:700px){ .hall-nav{display:none;} }

.area-host{position:fixed;right:24px;bottom:24px;z-index:20;display:flex;gap:12px;max-width:360px;padding:14px 16px;border:1px solid rgba(214,156,54,.32);border-radius:14px;background:rgba(25,14,10,.94);box-shadow:0 14px 40px rgba(0,0,0,.4)}.area-host>span{font-size:28px}.area-host small{display:block;color:#d7a64b;text-transform:uppercase;letter-spacing:.14em;font-size:10px}.area-host strong{display:block;color:#f3dfbd;font-family:Georgia,serif;font-size:19px;margin:3px 0}.area-host em{display:block;color:#c9b59e;font-size:12px;line-height:1.4}@media(max-width:850px){.area-host{position:static;margin:12px}}

.player-link{cursor:pointer;text-decoration:underline;text-decoration-color:transparent;text-underline-offset:3px}.player-link:hover{color:#e3b66c;text-decoration-color:currentColor}

/* Around the Fire v1.8 — Staff → Realm Presence → Activity → Traveler Search */
.staff-first { margin-top: 0; }
.realm-presence {
  position: relative;
  top: auto;
  margin-top: 22px;
  padding: 22px;
}
.presence-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}
.realm-presence .fire-glow { margin: 0; }
.realm-presence .presence-count { margin-bottom: 0; }
.realm-presence .presence-worlds {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.realm-presence .presence-world {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(16,10,6,.5);
}
.hearth-panel { margin-top: 22px; }

.traveler-search-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(45, 28, 17, .96), rgba(25, 15, 9, .96));
  box-shadow: var(--shadow);
}
.browse-travelers {
  color: var(--gold);
  text-decoration: none;
  font-size: .84rem;
}
.browse-travelers:hover { text-decoration: underline; text-underline-offset: 4px; }
.traveler-search-box {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(242,193,91,.28);
  border-radius: 14px;
  background: #160e09;
  padding: 0 14px;
}
.traveler-search-box:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242,193,91,.08);
}
.traveler-search-box > span { color: var(--gold); font-size: 1.35rem; }
.traveler-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  padding: 15px 0;
}
.traveler-search-box input::placeholder { color: #8f7864; }
.traveler-search-results { display: grid; gap: 8px; margin-top: 12px; }
.traveler-result {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  color: var(--text);
  background: rgba(16,10,6,.44);
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.traveler-result:hover {
  transform: translateY(-1px);
  border-color: rgba(242,193,91,.42);
  background: rgba(48,29,17,.78);
}
.traveler-result-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(242,193,91,.11);
}
.traveler-result-main strong, .traveler-result-main small { display: block; }
.traveler-result-main small { margin-top: 3px; color: var(--muted); font-size: .76rem; }
.traveler-result-arrow { color: var(--gold); font-size: 1.6rem; }
.traveler-search-more {
  justify-self: start;
  color: var(--gold);
  text-decoration: none;
  padding: 8px 4px;
  font-size: .84rem;
}
.search-hint { margin: 0; padding: 12px 4px; color: var(--muted); }
.search-error { color: #f3aaa4; }

@media (max-width: 640px) {
  .presence-heading { align-items: center; }
  .realm-presence .presence-worlds { grid-template-columns: 1fr; }
  .traveler-search-panel .panel-heading { display: flex; align-items: end; }
}

/* v1.8.5.5 — Living World information architecture */
.living-world-panel,
.achievements-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(45, 28, 17, .96), rgba(25, 15, 9, .96));
  box-shadow: var(--shadow);
}
.living-world-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 14px; }
.world-weather-card,
.world-state-column {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(16,10,6,.5);
}
.world-weather-card { display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 14px; align-items: start; }
.world-weather-icon { font-size: 2.8rem; filter: drop-shadow(0 0 16px rgba(242,193,91,.25)); }
.world-weather-card small,
.world-state-heading small { color: var(--gold); font-size: .67rem; letter-spacing: .14em; font-weight: 800; }
.world-weather-card h3,
.world-state-heading h3 { margin: 4px 0 8px; color: var(--text); font-size: 1.05rem; }
.world-weather-card p { margin: 0 0 12px; color: var(--muted); line-height: 1.55; }
.world-state-chip,
.world-activity-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(242,193,91,.23);
  border-radius: 999px;
  color: #e8c786;
  background: rgba(242,193,91,.08);
  font-size: .72rem;
}
.world-state-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.world-state-heading > span { font-size: 1.7rem; }
.world-state-list { display: grid; gap: 8px; }
.world-state-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.06); }
.world-state-row:first-child { border-top: 0; }
.world-state-row strong,
.world-state-row small { display: block; }
.world-state-row strong { color: #f0d5aa; font-size: .9rem; }
.world-state-row small { margin-top: 3px; color: var(--muted); line-height: 1.35; }
.world-state-empty { color: var(--muted); font-style: italic; }
.community-achievements { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.community-achievement { padding: 16px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(16,10,6,.5); }
.community-achievement h3 { margin: 0 0 6px; color: #efd09b; font-size: 1rem; }
.community-achievement p { min-height: 38px; margin: 0 0 12px; color: var(--muted); line-height: 1.45; font-size: .83rem; }
.achievement-progress { height: 7px; overflow: hidden; border-radius: 99px; background: #100905; }
.achievement-progress > i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#8c5a20,#e9b64e); }
.achievement-label { display: block; margin-top: 7px; color: #a98c70; font-size: .7rem; }
@media (max-width: 980px) { .living-world-grid { grid-template-columns: 1fr 1fr; } .world-weather-card { grid-column: 1 / -1; } }
@media (max-width: 700px) { .living-world-grid, .community-achievements { grid-template-columns: 1fr; } }

/* Fireplace staff privacy desk */
.staff-lock { min-height: 52vh; display: grid; place-items: center; }
.staff-lock[hidden], .staff-content[hidden] { display: none !important; }
.staff-lock-card { width: min(560px,100%); padding: 28px; border: 1px solid var(--border); border-radius: 20px; background: linear-gradient(145deg,rgba(45,28,17,.98),rgba(25,15,9,.98)); box-shadow: var(--shadow); }
.staff-lock-card h2 { font-size: 2rem; }
.staff-lock-card > p:not(.panel-kicker):not(.search-error) { color: var(--muted); line-height: 1.55; }
.staff-lock-card label { display: grid; gap: 7px; margin: 22px 0 14px; color: var(--muted); font-size: .82rem; }
.staff-lock-card input { width: 100%; padding: 12px 14px; border: 1px solid rgba(242,193,91,.28); border-radius: 10px; color: var(--text); background: #160e09; }
.staff-lock-card .refresh-button { width: 100%; }
.staff-content > :first-child { margin-top: 0; }
.staff-desk-page .ledger { margin-bottom: 36px; }

/* v1.6 — Illustrated Fireplace */
html { scroll-behavior: smooth; }
.fireplace-layout { width: min(1480px,calc(100% - 32px)); padding-top: 34px; }
.fireplace-scene {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(610px,56vw,830px);
  overflow: hidden;
  border: 1px solid rgba(225,160,54,.44);
  border-radius: 22px;
  background: #130b07 url('/assets/fireplace-hearth-room-v1.png') center / cover no-repeat;
  box-shadow: 0 32px 80px rgba(0,0,0,.52), inset 0 0 90px rgba(0,0,0,.18);
}
.fireplace-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,rgba(4,2,1,.54) 0%,rgba(4,2,1,.06) 32%,rgba(4,2,1,.08) 66%,rgba(4,2,1,.7) 100%),
    radial-gradient(circle at 58% 56%,rgba(255,132,32,.13),transparent 24%);
  pointer-events: none;
}
.fireplace-scene-heading {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 50%;
  width: min(680px,70%);
  text-align: center;
  transform: translateX(-50%);
  text-shadow: 0 3px 18px #090401,0 1px 2px #090401;
}
.fireplace-scene-heading .eyebrow { margin: 9px 0 4px; }
.fireplace-scene-heading h1 { font-size: clamp(2.8rem,5.2vw,5.4rem); }
.fireplace-scene-heading p:last-child { margin: 8px auto 0; color: #ead4b4; font-family: Georgia,serif; font-size: clamp(.92rem,1.25vw,1.15rem); }
.scene-ribbon {
  display: inline-flex;
  padding: 6px 13px;
  border: 1px solid rgba(242,193,91,.5);
  border-radius: 999px;
  color: #f8d68e;
  background: rgba(50,24,11,.74);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.garrick-hearth-welcome {
  position: absolute;
  z-index: 4;
  left: 26px;
  bottom: 72px;
  width: min(330px,31%);
  padding: 15px 17px;
  border: 1px solid rgba(242,193,91,.55);
  border-radius: 13px;
  color: #f6dfba;
  background: rgba(27,13,7,.9);
  box-shadow: 0 14px 36px rgba(0,0,0,.42);
}
.garrick-hearth-welcome::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(242,193,91,.55);
  border-bottom: 1px solid rgba(242,193,91,.55);
  background: rgba(27,13,7,.96);
  transform: rotate(45deg);
}
.garrick-hearth-welcome strong { display:block; color:#f5d18a; font-family:Georgia,serif; font-size:1.08rem; }
.garrick-hearth-welcome span { display:block; margin-top:4px; line-height:1.42; }
.garrick-hearth-welcome.fresh-line { animation:hearth-line-glow .55s ease-out; }
@keyframes hearth-line-glow { 0%{box-shadow:0 0 0 rgba(242,193,91,0)} 45%{box-shadow:0 0 28px rgba(242,193,91,.28)} 100%{box-shadow:0 14px 36px rgba(0,0,0,.42)} }
.fireplace-hotspot {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 12px minmax(0,1fr);
  min-width: 168px;
  padding: 10px 12px;
  border: 1px solid rgba(242,193,91,.46);
  border-radius: 11px;
  color: #f8e3c0;
  background: rgba(28,14,7,.83);
  box-shadow: 0 10px 28px rgba(0,0,0,.38);
  text-decoration: none;
  transform: translate(-50%,-50%);
  transition: transform .16s ease,border-color .16s ease,background .16s ease;
}
.fireplace-hotspot:hover,.fireplace-hotspot:focus-visible { border-color:#f2c15b; background:rgba(63,31,12,.94); transform:translate(-50%,-52%); }
.fireplace-hotspot i { grid-row:1 / 3; align-self:center; width:9px; height:9px; border-radius:50%; background:#f2c15b; box-shadow:0 0 11px rgba(242,193,91,.85); }
.fireplace-hotspot strong { font-family:Georgia,serif; font-size:.92rem; }
.fireplace-hotspot span { margin-top:2px; color:#bfa588; font-size:.68rem; }
.notice-wall { left:10%; top:42%; }
.staff-stories { left:43%; top:59%; }
.realm-pulse { left:62%; top:52%; }
.shared-victories { left:79%; top:41%; }
.staff-ledger { left:91%; top:66%; }
.stir-fire-button {
  position:absolute;
  z-index:5;
  left:58%;
  bottom:78px;
  transform:translateX(-50%);
  padding:11px 18px;
  border:1px solid rgba(242,193,91,.58);
  border-radius:999px;
  color:#f7d895;
  background:rgba(30,14,6,.9);
  box-shadow:0 12px 32px rgba(0,0,0,.45),0 0 22px rgba(255,119,22,.13);
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
}
.stir-fire-button:hover { background:#4a2510; border-color:#f2c15b; }
.stir-fire-button:disabled { opacity:.65; cursor:wait; }
.hearth-scroll-cue {
  position:absolute;
  z-index:4;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  color:#eac680;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.13em;
  text-decoration:none;
  text-transform:uppercase;
}
.ember-field { position:absolute; inset:42% 30% 12% 40%; z-index:2; pointer-events:none; }
.ember-field i { position:absolute; width:4px; height:4px; border-radius:50%; background:#ffbd54; box-shadow:0 0 9px #ff7a1a; animation:ember-rise 3.4s ease-in infinite; opacity:0; }
.ember-field i:nth-child(1){left:40%;bottom:12%;animation-delay:.2s}.ember-field i:nth-child(2){left:48%;bottom:5%;animation-delay:1.2s}.ember-field i:nth-child(3){left:58%;bottom:15%;animation-delay:2.1s}.ember-field i:nth-child(4){left:65%;bottom:2%;animation-delay:.8s}.ember-field i:nth-child(5){left:72%;bottom:10%;animation-delay:2.7s}.ember-field i:nth-child(6){left:53%;bottom:20%;animation-delay:1.7s}
@keyframes ember-rise { 0%{transform:translate(0,20px) scale(.6);opacity:0} 18%{opacity:.85} 100%{transform:translate(12px,-150px) scale(0);opacity:0} }
.fireplace-layout > section:not(.fireplace-scene) { scroll-margin-top: 92px; }

@media (max-width: 980px) {
  .fireplace-scene { min-height:720px; background-position:47% center; }
  .fireplace-hotspot { min-width:148px; }
  .notice-wall{left:13%;top:42%}.staff-stories{left:39%;top:61%}.realm-pulse{left:64%;top:53%}.shared-victories{left:80%;top:38%}.staff-ledger{left:86%;top:70%}
}
@media (max-width: 700px) {
  .fireplace-layout { width:min(100% - 18px,1480px); padding-top:18px; }
  .fireplace-scene { min-height:760px; background-position:42% center; }
  .fireplace-scene-heading { width:92%; top:18px; }
  .fireplace-scene-heading h1 { font-size:2.8rem; }
  .fireplace-scene-heading p:last-child { font-size:.86rem; }
  .fireplace-hotspots { position:absolute; z-index:4; left:14px; right:14px; bottom:116px; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
  .fireplace-hotspot { position:static; min-width:0; transform:none; }
  .fireplace-hotspot:hover,.fireplace-hotspot:focus-visible { transform:translateY(-2px); }
  .staff-ledger { grid-column:1 / -1; }
  .garrick-hearth-welcome { left:16px; bottom:320px; width:calc(100% - 32px); }
  .stir-fire-button { left:50%; bottom:72px; width:calc(100% - 30px); }
  .hearth-scroll-cue { bottom:24px; width:100%; text-align:center; }
}
@media (prefers-reduced-motion: reduce) { html{scroll-behavior:auto}.ember-field{display:none}.fireplace-hotspot{transition:none} }

/* Elara current/archive v1.0 */
.bulletin-archive-link{display:flex;justify-content:flex-end;padding:0 18px 18px}.bulletin-archive-link a{color:#6d3a12;font-weight:700;text-decoration:none;border-bottom:1px solid rgba(109,58,18,.35)}.bulletin-archive-link a:hover{color:#3d1d08;border-color:currentColor}
