/* Search Results Page */
.search-results-page {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
    background: var(--body-bg);
}

.search-results-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Search Header */
.search-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.search-query {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.search-query strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Search Results Content */
.search-results-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Result Section */
.result-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
}

/* Artist Profile Section */
.artist-profile-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.artist-profile-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.artist-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--primary-color);
    background: var(--light-color);
}

.artist-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-profile-image .artist-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 3rem;
}

.artist-profile-info {
    flex: 1;
}

.artist-profile-info .artist-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.artist-profile-info .artist-name a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-profile-info .artist-name a:hover {
    color: var(--primary-color);
}

/* Results List */
.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.result-item {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background-color: #f9f9f9;
}

.result-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.result-link:hover {
    color: inherit;
}

/* Result Image */
.result-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-color);
    position: relative;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 2rem;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay i {
    color: white;
    font-size: 1.5rem;
}

/* Result Info */
.result-info {
    flex: 1;
    min-width: 0;
}

.result-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.result-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.result-stats i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* Result Action */
.result-action {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.result-item:hover .result-action {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.no-results i {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.no-results p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.no-results strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-results-page {
        padding: 1rem 0 3rem;
    }

    .search-title {
        font-size: 1.5rem;
    }

    .search-query {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .artist-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .artist-profile-image {
        width: 100px;
        height: 100px;
    }

    .artist-profile-info .artist-name {
        font-size: 1.5rem;
    }

    .result-link {
        padding: 1rem;
        gap: 1rem;
    }

    .result-image {
        width: 60px;
        height: 60px;
    }

    .result-title {
        font-size: 1rem;
    }

    .result-subtitle {
        font-size: 0.875rem;
    }

    .result-stats {
        font-size: 0.8125rem;
        gap: 0.75rem;
    }

    .no-results {
        padding: 3rem 1.5rem;
    }

    .no-results i {
        font-size: 3rem;
    }

    .no-results h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .search-results-wrapper {
        padding: 0 0.75rem;
    }

    .artist-profile-section {
        padding: 1.5rem;
    }

    .result-link {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .result-image {
        width: 50px;
        height: 50px;
    }

    .result-title {
        font-size: 0.9375rem;
    }

    .result-subtitle {
        font-size: 0.8125rem;
    }

    .result-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


