/* BOSS TEASER COMPONENT STYLES */

.boss-teaser {
    padding: 4rem 0;
    background: #000;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    position: relative;
    overflow: hidden;
}

.boss-teaser .background-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 57, 43, 0.05) 0%, transparent 70%);
}

.boss-teaser .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.boss-teaser-header {
    text-align: center;
    margin-bottom: 2rem;
}

.boss-event-tag {
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.boss-name {
    color: #fff;
    font-family: var(--font-title);
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin: 0;
}

.boss-hp-container {
    max-width: 600px;
    margin: 1.5rem auto;
}

.boss-hp-labels {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.boss-hp-bar-bg {
    height: 6px;
    background: #111;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #222;
}

.boss-hp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #7f1d1d, #c0392b);
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

.boss-lore-preview {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn-boss-siege {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #7f1d1d;
    border: 1px solid #c0392b;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-title);
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-boss-siege:hover {
    background: #c0392b;
    box-shadow: 0 0 15px rgba(192, 57, 43, 0.4);
    transform: translateY(-2px);
}

/* NARRATIVE EVENTS */
.narrative-events-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    border-top: 1px solid #111;
    padding-top: 2rem;
}

.narrative-event-box {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #1a1a1a;
    padding: 1.5rem;
    border-radius: 4px;
    position: relative;
    transition: 0.3s;
}

.narrative-event-box:hover {
    border-color: #333;
    background: rgba(15, 15, 15, 0.9);
}

.narrative-event-box .indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.narrative-event-box h4 {
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.narrative-event-box p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}
