/**
 * Hero Section Styles
 * "Continue Watching" feature at the top of the page
 */

.hero {
    padding: calc(var(--header-height) + var(--safe-top) + 12px) 12px 20px;
    background: linear-gradient(160deg, #1a0a00 0%, var(--bg-primary) 50%);
}

@media (min-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + var(--safe-top) + 24px) 24px 32px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent);
    color: #000;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.hero-progress {
    margin-bottom: 14px;
}

.hero-actions {
    display: flex;
    gap: 10px;
}
