/* ================================
   CREATOR DASHBOARD PAGE
================================ */

.home-main {
    max-width: 1200px;
    margin: 120px auto 80px;
    padding: 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* ===== HERO SECTION ===== */

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-kicker {
    color: #c38aff;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-sub {
    color: #bbb;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-pill {
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.btn-pill.primary {
    background: linear-gradient(135deg,#ff6fd3,#9d6bff);
    color: #200024;
}

.btn-pill.ghost {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.btn-pill.ghost-soft {
    background: rgba(157,107,255,0.18);
    color: #fff;
}

/* ===== HERO VIDEO ===== */

.hero-video-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(138,0,255,0.4);
    box-shadow: 0 0 30px rgba(138,0,255,0.35);
}

.hero-video video {
    width: 100%;
    display: block;
}

.hero-caption {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #aaa;
}

/* ===== STATS CHIPS ===== */

.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-chip {
    background: rgba(25,0,45,0.85);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(138,0,255,0.4);
}

.stat-chip .label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
}

.stat-chip .value {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ===== CONTENT SECTIONS ===== */

.home-section {
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.section-sub {
    color: #aaa;
}

/* ===== GRID CARDS ===== */

.clip-grid,
.continue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.clip-card,
.continue-card {
    background: rgba(25,0,45,0.85);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(138,0,255,0.4);
    box-shadow: 0 0 20px rgba(138,0,255,0.25);
}

.clip-thumb video,
.continue-thumb video {
    width: 100%;
    display: block;
}

.clip-info,
.continue-info {
    padding: 12px;
}

.clip-info h3,
.continue-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.clip-meta,
.clip-stats {
    font-size: 0.85rem;
    color: #aaa;
}

/* ===== TWO COLUMN SECTION ===== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.panel {
    background: rgba(25,0,45,0.85);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(138,0,255,0.4);
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .clip-grid,
    .continue-grid {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}
