/* Background Blur Effect */
.boss-bg-blur {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.15) grayscale(50%);
    z-index: -1;
    transform: scale(1.1); /* Prevents white edges from blur */
}

.remembrance-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Stack Title Section then Content Grid */
    align-items: center;    /* Keep the title centered */
    padding: 80px 10% 40px 10%;
    z-index: 2;
}

/* Title Section - Centralized at the top */
.title-section {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.boss-name-hero {
    font-size: 5rem; /* Increased size for top-level epicness */
    color: var(--gold-grace);
    text-transform: uppercase;
    letter-spacing: 12px; /* Wider tracking for that Elden title look */
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 202, 40, 0.4);
}

.divider {
    height: 1px;
    width: 60%;
    margin: 20px auto;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* Grid setup - Placed below the title */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1400px; /* Prevents text lines from getting too long on ultrawide screens */
}

/* Portrait */
.portrait-frame {
    position: relative;
    border: 1px solid var(--gold-dim);
    padding: 5px;
    background: #000;
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
}

.portrait-frame img {
    width: 100%;
    display: block;
}

/* Lore Column */
.scroll-box {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(168, 138, 61, 0.2);
    padding: 50px;
    backdrop-filter: blur(10px);
}

.lore-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ornament {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.lore-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--er-lore);
    font-style: italic;
    margin-bottom: 40px;
}

/* Stats and Pills */
.stat-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    margin-bottom: 10px;
}

.er-pill {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--gold-dim);
    color: var(--gold-grace);
    font-size: 0.9rem;
    margin: 5px;
    background: rgba(255, 202, 40, 0.05);
}

/* Nav */
.navigation-overlay {
    position: absolute;
    top: 40px; left: 10%;
}

.gold-link {
    color: var(--gold-grace);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-link {
    margin-left: 20px;
    color: var(--er-black);
    background: var(--gold-grace);
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}