.ja-cast-crew-container {
    margin: 30px 0;
}

.ja-cast-crew-section {
    margin-bottom: 40px;
}

.ja-cast-crew-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 24px;
    color: #e5e5e5;
    border-bottom: 1px solid #404040;
    padding-bottom: 12px;
}

.ja-cast-crew-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.ja-cast-crew-grid::-webkit-scrollbar {
    display: none;
}

.ja-cast-member {
    text-align: center;
    transition: transform 0.2s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    flex-shrink: 0;
    width: 120px;
}

.ja-cast-member:hover {
    transform: translateY(-5px);
}

.ja-cast-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a2a2a;
    border: 2px solid #808080;
    color: #e5e5e5;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 auto 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    transition: all 0.2s ease;
}

.ja-cast-member:hover .ja-cast-avatar {
    box-shadow: 0 6px 12px rgba(0,0,0,0.8);
    transform: scale(1.05);
    border-color: #fff;
    background-color: #333;
}

.ja-cast-name {
    font-size: 0.85em;
    color: #b3b3b3;
    line-height: 1.3;
    word-wrap: break-word;
    transition: color 0.2s ease;
}

.ja-cast-member:hover .ja-cast-name {
    color: #fff;
}

@media (max-width: 768px) {
    .ja-cast-member {
        width: 100px;
    }
    .ja-cast-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.2em;
        border-width: 2px;
    }
}
