@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800;900&display=swap');

/* ================= BASE ================= */
body.boss-body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top, #1b1b1b, #050505 70%);
    font-family: 'Cinzel', serif;
    color: #f5e7b2;
}

/* ================= TÍTULO ================= */
.boss-title {
    text-align: center;
    margin: 40px 0;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 2px;

    background: linear-gradient(90deg, #ffcc66, #ff9f1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 18px rgba(255,180,60,.5);
}

/* ================= CONTAINER ================= */
.boss-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    padding: 0 30px 60px;
}

/* ================= CARD BASE ================= */
.boss-card {
    background: linear-gradient(180deg, #121212, #070707);
    border-radius: 16px;
    padding: 22px 24px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.9),
        inset 0 0 0 1px rgba(255,255,255,.06);

    position: relative;
    overflow: hidden;
}

/* ================= BARRA LATERAL ================= */
.boss-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}

/* ================= TÍTULO DO BOSS ================= */
.boss-card h2 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
}

/* ================= HORÁRIOS ================= */
.boss-times {
    font-size: 14px;
    line-height: 1.7;
    color: #e8e8e8;
}

.boss-times.highlight {
    font-size: 18px;
    font-weight: 900;
    color: #ffd36a;
}

/* ================= MAPA ================= */
.boss-map {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #bfae7c;
    opacity: .9;
}

/* ================= CORES POR BOSS ================= */
.fury::before { background: #e74c3c; }
.fury h2 { color: #ff6b5f; }

.babel::before { background: #f1c40f; }
.babel h2 { color: #ffe066; }

.valento::before { background: #c0392b; }
.valento h2 { color: #ff7b6a; }

.kelvezu::before { background: #9b59b6; }
.kelvezu h2 { color: #d6a6ff; }

.mokova::before { background: #7f8c8d; }
.mokova h2 { color: #d5d8dc; }

.doom::before { background: #2980b9; }
.doom h2 { color: #6abfff; }

.caos::before { background: #8e44ad; }
.caos h2 { color: #cfa6ff; }
