.search-result-pop {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #1a1b24;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    max-height: 450px;
    overflow-y: auto;
    color: #fff;
    padding: 0;
}

.search-result-pop .nav-item {
    display: flex;
    padding: 10px 12px;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: background 0.15s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-pop .nav-item:last-child {
    border-bottom: none;
}

.search-result-pop .nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.search-result-pop .film-poster,
.search-result-pop .thumbnail {
    width: 50px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    background: #252630;
}

.search-result-pop .film-poster img,
.search-result-pop .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-pop .srp-detail,
.search-result-pop .info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.search-result-pop .srp-detail .film-name,
.search-result-pop .title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-pop .nav-item:hover .film-name {
    color: #e90000;
}

.search-result-pop .srp-detail .alias-name {
    font-size: 12px;
    color: #8a8d9a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-pop .srp-detail .film-infor,
.search-result-pop .meta {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.search-result-pop .srp-detail .film-infor .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
}

.search-result-pop .nav-bottom {
    display: block;
    padding: 12px;
    background: #e90000 !important;
    font-size: 14px;
    font-weight: 600;
    color: #111 !important;
    text-align: center;
    border-radius: 0 0 8px 8px;
    transition: opacity 0.15s ease;
}

.search-result-pop .nav-bottom:hover {
    opacity: 0.9;
    color: #111 !important;
    text-decoration: none;
}

.search-result-pop .no-results {
    padding: 20px 15px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.search-result-pop .loading-relative {
    padding: 20px;
    text-align: center;
}

.search-result-pop .loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.search-result-pop .loading div {
    width: 8px;
    height: 8px;
    background: #e90000;
    border-radius: 50%;
    animation: searchPulse 0.8s infinite ease-in-out alternate;
}

.search-result-pop .loading .span2 {
    animation-delay: 0.2s;
}

.search-result-pop .loading .span3 {
    animation-delay: 0.4s;
}

@keyframes searchPulse {
    0% { transform: scale(0.6); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 1; }
}