/**
 * Actor Detail Page Styles
 * v1.0.0
 */

/* Actor Header */
.actor-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.actor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(138, 33, 40, 0.5);
    box-shadow: 0 0 20px rgba(138, 33, 40, 0.3);
    flex-shrink: 0;
}

.actor-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #555;
    border: 3px solid rgba(138, 33, 40, 0.3);
    flex-shrink: 0;
}

.actor-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.actor-info .filmography-label {
    font-size: 16px;
    color: #888;
}

.actor-info .content-count {
    display: inline-block;
    background: rgba(138, 33, 40, 0.3);
    color: #e8b4b8;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    margin-left: 10px;
}

/* Content Grid - Same as discover */
.filmography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Empty State */
.empty-filmography {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-filmography p {
    font-size: 18px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .actor-header {
        flex-direction: column;
        text-align: center;
    }

    .actor-info .content-count {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }

    .filmography-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
}