/* === BECOME A CREATOR === */

.bc-page {
    max-width: 1060px;
    margin: 0 auto;
    padding: 70px 40px 60px;
    position: relative;
    z-index: 1;
}

/* Hero */
.bc-hero {
    text-align: center;
    padding: 60px 20px 48px;
    position: relative;
}

.bc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 180, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.bc-hero-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.bc-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, rgba(0, 180, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-hero p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.bc-hero-btn {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 24px rgba(0, 180, 255, 0.3);
}

.bc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.bc-hstat {
    text-align: center;
}

.bc-hstat-val {
    font-size: 1.6rem;
    font-weight: 900;
}

.bc-hstat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Sections */
.bc-section {
    margin-bottom: 56px;
}

.bc-section h2 {
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
}

/* Steps */
.bc-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.bc-step {
    text-align: center;
    flex: 0 0 220px;
    padding: 0 16px;
    position: relative;
}

.bc-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    margin: 0 auto 12px;
}

.bc-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 180, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    color: var(--primary);
}

.bc-step h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.bc-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bc-step-line {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(0, 180, 255, 0.2));
    margin-top: 54px;
    border-radius: 1px;
}

/* Benefits */
.bc-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bc-benefit {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
}

.bc-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 180, 255, 0.2);
}

.bc-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.1rem;
    background: rgba(0, 180, 255, 0.08);
    color: var(--primary);
}

.bc-benefit:nth-child(2) .bc-benefit-icon {
    background: rgba(0, 200, 83, 0.08);
    color: #00c853;
}

.bc-benefit:nth-child(3) .bc-benefit-icon {
    background: rgba(171, 71, 188, 0.08);
    color: #ab47bc;
}

.bc-benefit:nth-child(4) .bc-benefit-icon {
    background: rgba(255, 193, 7, 0.08);
    color: var(--gold);
}

.bc-benefit:nth-child(5) .bc-benefit-icon {
    background: rgba(255, 61, 127, 0.08);
    color: var(--accent);
}

.bc-benefit:nth-child(6) .bc-benefit-icon {
    background: rgba(255, 152, 0, 0.08);
    color: #ff9800;
}

.bc-benefit h3 {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.bc-benefit p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials */
.bc-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bc-test {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.bc-test-quote {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.bc-test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.bc-test-name {
    font-size: 0.82rem;
    font-weight: 700;
}

.bc-test-handle {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.bc-test-earnings {
    font-size: 0.68rem;
    color: #00c853;
    font-weight: 700;
    margin-top: 1px;
}

/* CTA */
.bc-cta {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
}

.bc-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 180, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bc-cta h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.bc-cta p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.bc-cta-btn {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 24px rgba(0, 180, 255, 0.3);
}

/* Responsive */
@media (max-width: 900px) {

    .bc-benefits,
    .bc-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bc-page {
        padding: 70px 16px 40px;
    }

    .bc-hero h1 {
        font-size: 1.8rem;
    }

    .bc-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .bc-steps {
        flex-direction: column;
        align-items: center;
    }

    .bc-step-line {
        width: 2px;
        height: 30px;
        margin: 0;
        background: linear-gradient(180deg, var(--primary), rgba(0, 180, 255, 0.2));
    }

    .bc-benefits,
    .bc-testimonials {
        grid-template-columns: 1fr;
    }
}
