/* ── VIDEO BACKGROUND ─────────────────────────────────────────── */
.lore-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.35;
}

.lore-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        160deg,
        rgba(6, 4, 2, 0.6) 0%,
        rgba(8, 6, 4, 0.3) 50%,
        rgba(6, 4, 2, 0.75) 100%
    );
    pointer-events: none;
}

/* ── SHARED COLUMN ────────────────────────────────────────────── */
.lore-hero-inner,
.lore-chapter-inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.lore-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px 32px;
}

.lore-eyebrow {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.38em;
    color: #c9a96e;
    opacity: 0.75;
    text-transform: uppercase;
}

.lore-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: clamp(3rem, 9vw, 6rem);
    letter-spacing: 0.12em;
    color: #eddfc0;
    margin: 0;
    line-height: 1;
    text-shadow:
        0 0 60px rgba(201, 169, 110, 0.5),
        0 0 140px rgba(201, 169, 110, 0.2),
        0 2px 40px rgba(0, 0, 0, 0.8);
}

.lore-tagline {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.88rem;
    color: #a09080;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin: 0;
}

.lore-audio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 40px;
    color: #c9a96e;
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lore-audio-btn:hover {
    background: rgba(201, 169, 110, 0.16);
    border-color: #c9a96e;
    box-shadow: 0 0 28px rgba(201, 169, 110, 0.18);
}

.lore-audio-btn.playing {
    background: rgba(201, 169, 110, 0.16);
    border-color: #c9a96e;
    box-shadow: 0 0 32px rgba(201, 169, 110, 0.22);
}

/* ── LORE CHAPTERS ────────────────────────────────────────────── */
.lore-content {
    padding-bottom: 48px;
}

.lore-chapter {
    padding: 24px 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.lore-chapter-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    color: #c9a96e;
    margin: 0;
    text-align: center;
}

.lore-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a96e, transparent);
    flex-shrink: 0;
}

.lore-text {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.95rem;
    color: #c0b8a8;
    line-height: 1.85;
    letter-spacing: 0.03em;
    margin: 0;
    text-align: center;
}

.lore-quote {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.9rem;
    color: #d8c8a8;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 12px 20px;
    border-left: 2px solid rgba(201, 169, 110, 0.4);
    border-right: 2px solid rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.04);
    text-align: center;
    font-style: italic;
}

/* ── FOUR ANCIENTS LIST ───────────────────────────────────────── */
.lore-ancients-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    width: 100%;
}

.lore-ancient {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.lore-ancient-icon {
    font-size: 0.9rem;
    color: #c9a96e;
    opacity: 0.6;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.lore-ancient-name {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    color: #e8d9b8;
    margin: 0;
}

.lore-ancient-domain {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: #5a5248;
    margin: 0;
}

.lore-ancient-domain::before {
    content: '— ';
    color: rgba(201, 169, 110, 0.25);
}

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.lore-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.lore-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── MOBILE ───────────────────────────────────────────────────── */
@media only screen and ((max-width: 767px) or (hover: none)) {
    .lore-hero {
        padding: 36px 20px 24px;
    }

    .lore-tagline br {
        display: none;
    }

    .lore-chapter {
        padding: 20px 20px;
    }
}
