/* Show Selection Screen (Level 1) */
.show-selection {
    position: relative;
    height: 100vh;
    overflow-y: auto;
    background: var(--background-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.show-selection.hidden {
    display: none;
}

.show-selection-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
}

.selection-title {
    font-family: var(--card-deck-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theater-burgundy);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.selection-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--show-card-width), 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.show-card {
    width: var(--show-card-width);
    aspect-ratio: 5 / 7;
    max-height: 450px;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
}

.show-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    /* Removed scaling and Y-translation for cleaner interaction */
}