/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, #161519 0%, #2a1a2e 50%, #d90a2c 100%);
    color: #fff;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,13,80,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.page-hero h1 .light {
    font-weight: 300;
}

/* ========== CREATORS SECTION ========== */
.creators-section {
    padding: 6vh 0 10vh;
    background: #fff;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}
