/* Participant Info Page Styles */
.participant-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.participant-header {
    text-align: center;
    margin-bottom: 3rem;
}

.participant-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin: 0;
}

.venue-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.venue-selector-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    background-color: white;
    color: #374151;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.venue-selector-tab:hover {
    border-color: var(--accent-hover, #f472b6);
    background-color: var(--accent-light, #fdf2f8);
    transform: translateY(-2px);
}

.venue-selector-tab.active {
    border-color: var(--accent, #ec4899);
    background-color: var(--accent, #ec4899);
    color: white;
}

.venue-selector-tab.active:hover {
    background-color: var(--accent-dark, #db2777);
    border-color: var(--accent-dark, #db2777);
}

#performer-content {
    min-height: 400px;
}

.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.venue-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.venue-info-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin: 0;
}

.venue-location-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.venue-location-link:hover {
    color: var(--accent, #ec4899);
}

.performer-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.performer-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
}

.performer-item:last-child {
    border-bottom: none;
}

.performer-item.has-star {
    border-left: 4px solid var(--star-color, #f59e0b);
    background: linear-gradient(90deg, rgba(0,0,0,0.02), rgba(0,0,0,0));
}

.performer-image {
    width: 300px;
    height: 200px;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2rem;
    flex-shrink: 0;
}

.performer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.performer-details {
    flex: 1;
    min-width: 0;
}

.performer-time {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.performer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.performer-title.with-star {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.performer-title svg {
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    vertical-align: middle;
}

.star-gold svg {
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
}

.star-silver svg {
    filter: drop-shadow(0 0 2px rgba(192, 192, 192, 0.6));
}

.performer-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.performer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.performer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.performer-link:hover {
    color: var(--accent, #ec4899);
}

.performer-link svg {
    width: 16px;
    height: 16px;
}

.thumb {
    object-position: center;
}

.thumb.cover {
    object-fit: cover;
}

.thumb.contain {
    object-fit: contain;
    background: #fff;
}

.star-label {
    position: absolute;
    top: -1.5rem;
    right: 0;
    padding: 10px;
    font-weight: 700;
    background-color: var(--star-color, #e5e7eb);
    color: #111827;
}

@media (max-width: 767px) {
    .venue-selector {
        gap: 0.5rem;
    }

    .venue-selector-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .venue-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .performer-item {
        flex-direction: column;
        gap: 1rem;
    }

    .performer-image {
        width: 100%;
        height: 200px;
    }

    .performer-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .participant-info-wrapper {
        padding: 1rem 0.5rem;
    }

    .participant-header h1 {
        font-size: 2rem;
    }

    .venue-selector {
        justify-content: flex-start;
    }

    .venue-selector-tab {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        max-width: 50%;
        text-align: center;
        white-space: normal;
        word-break: break-word;
        min-height: 44px;
    }
}
