.detective-breadcrumb {
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background: rgba(45, 45, 45, 0.9);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px 25px;
    margin: 20px 0;

}

.detective-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e58c);
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    color: #b8b8b8;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.breadcrumb-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.breadcrumb-current {
    color: #d4af37;
    font-weight: bold;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.breadcrumb-separator {
    color: #666;
    font-size: 0.8rem;
    margin: 0 5px;
    user-select: none;
}


.breadcrumb-item {
    animation: fadeInSlide 0.6s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.breadcrumb-item:nth-child(1) {
    animation-delay: 0.1s;
}

.breadcrumb-item:nth-child(2) {
    animation-delay: 0.2s;
}

.breadcrumb-item:nth-child(3) {
    animation-delay: 0.3s;
}

.breadcrumb-item:nth-child(4) {
    animation-delay: 0.4s;
}

.breadcrumb-item:nth-child(5) {
    animation-delay: 0.5s;
}