/* Actors Index Styles */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.filter-header form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-header input,
.filter-header select {
    background: var(--input-bg);
    border: 1px solid var(--border-light);
    padding: 10px 16px;
    border-radius: 40px;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.filter-header button {
    background: var(--accent);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.actor-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s;
    border: 1px solid var(--border-light);
    text-align: center;
}

.actor-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.actor-img {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.actor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.actor-card:hover .actor-img img {
    transform: scale(1.05);
}

.actor-content {
    padding: 16px;
}

.actor-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.actor-name a {
    color: var(--text-primary);
    text-decoration: none;
}

.actor-name a:hover {
    color: var(--accent);
}

.actor-known-for {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .filter-header {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-header form {
        justify-content: space-between;
    }
    .filter-header input,
    .filter-header select,
    .filter-header button {
        flex: 1;
        min-width: 0;
    }
}