.cast-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.cast-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    text-align: center;
}

.cast-photos {
    position: relative;
    width: 120px;
    height: 120px;
}

.cast-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-title);
}

.cast-sprite {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: var(--fn-page-bg);
    border-radius: 50%;
    padding: 2px;
    border: 2px solid var(--color-title);
}

.cast-name {
    margin-top: 0.5rem;
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.3;
}

.cast-realname {
    opacity: 0.7;
    font-size: 0.8rem;
}
