/* =========================
   Hero
========================= */

.hero {
    position: relative;
    width: 100vw;
    height: 40vh;
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    margin-top: -2rem;
    margin-bottom: 2rem;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center 0%;
    will-change: transform;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    width: 100%;
}

.demon-title {
    font-size: 3rem;
    color: white;
    text-shadow:
        0 0 10px rgba(0,0,0,0.8),
        0 0 25px rgba(0,0,0,0.6),
        0 6px 30px rgba(0,0,0,0.7);
}

.hero-creator {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.8);
}

.hero-rank-inline {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    margin-left: 0.3rem;
}
