/* Branded show header (phase 1 — owner setup) */

.show-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #374151;
}

.show-header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}

.show-header-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    border-radius: 6px;
    background: #1f2937;
    border: 1px solid #374151;
    flex-shrink: 0;
}

.show-header-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    background: #1f2937;
    border: 1px dashed #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
}

.show-header-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1.2;
}

.show-header-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 4px;
}

.show-header-contact {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 220px;
}

.show-header-contact-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
}

.show-header-contact-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f3f4f6;
}

.show-header-contact-help {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 4px;
    margin-bottom: 8px;
}

.show-header-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.show-header-contact-links a {
    font-size: 0.8rem;
    color: #fbbf24;
    text-decoration: none;
}

.show-header-contact-links a:hover {
    text-decoration: underline;
}

.show-header-loading {
    color: #6b7280;
    font-size: 0.875rem;
    padding: 16px 0;
}

.show-header-error {
    color: #f87171;
    font-size: 0.875rem;
    padding: 16px 0;
}
