/* VIEW 2: POSTER WALL */
        .poster-wall-grid {
            display: none;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.25rem;
            width: 100%;
            max-width: 100%;
        }

        @media (max-width: 480px) {
            .poster-wall-grid {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 0.65rem;
            }
        }

        .wall-item {
            border-radius: 16px;
            overflow: hidden;
            background: #FFFFFF;
            border: 1.5px solid var(--primary-border);
            aspect-ratio: 1 / 3;
            cursor: pointer;
            position: relative;
            box-shadow: 0 6px 18px var(--accent-glow);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .wall-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .wall-item:hover {
            transform: translateY(-8px) scale(1.04);
            border-color: var(--primary);
            box-shadow: 0 20px 35px var(--accent-glow);
            z-index: 10;
        }

        .wall-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.88) 45%);
            padding: 1.5rem 0.75rem 0.75rem;
            color: #FFFFFF;
            font-size: 0.78rem;
            font-weight: 700;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .wall-item:hover .wall-caption {
            opacity: 1;
        }
