@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,600;1,600&family=PT+Sans:wght@400;700&display=swap');

        :root {
            /* Authentic Silent Film Title Card Palette */
            --bg-color: #121212;
            --text-color: #f2ebd9;
            --accent-color: #d8c3a5;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0;
            padding: 0;
            font-family: 'PT Sans', sans-serif;
            color: var(--text-color);
        }

        .page {
            width: 100%;
            max-width: 1000px;
            min-height: 100vh;
            background-color: var(--bg-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            position: relative;
            padding: 40px 60px;
            /* Extra side padding for film strips */
            page-break-after: always;
            overflow: hidden;
            /* Subtle vignette and film grain */
            background-image:
                radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(#noise)" opacity="0.08"/></svg>');
        }

        /* Film Strips on left and right edges */
        .film-strip {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 35px;
            background-color: #050505;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            border-left: 1px solid #222;
            border-right: 1px solid #222;
            z-index: 0;
        }

        .film-strip.left {
            left: 8px;
        }

        .film-strip.right {
            right: 8px;
        }

        .film-hole {
            width: 15px;
            height: 10px;
            background-color: #f4f4f4;
            /* Simulates the white paper outside the printed area */
            border-radius: 1px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
            margin: 2px 0;
        }

        /* Title Card ornate border */
        .card-border {
            position: absolute;
            top: 20px;
            bottom: 20px;
            left: 50px;
            right: 50px;
            border: 2px solid var(--accent-color);
            pointer-events: none;
            z-index: 10;
        }

        .card-border-inner {
            position: absolute;
            top: 2px;
            bottom: 2px;
            left: 2px;
            right: 2px;
            border: 1px solid var(--accent-color);
        }

        .corner {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
        }

        .c-tl {
            top: -5px;
            left: -5px;
        }

        .c-tr {
            top: -5px;
            right: -5px;
        }

        .c-bl {
            bottom: -5px;
            left: -5px;
        }

        .c-br {
            bottom: -5px;
            right: -5px;
        }

        .content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        header {
            text-align: center;
            margin-bottom: 20px;
            margin-top: 10px;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 15px;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: 3px;
            color: var(--accent-color);
            text-shadow: 1px 1px 2px #000;
        }

        .subtitle {
            font-family: 'Courier Prime', monospace;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-color);
            opacity: 0.8;
        }


        .main-logo {
            width: 260px;
            max-width: 90%;
            height: auto;
            margin: 0 auto 15px;
            display: block;
            color: var(--accent-color);
        }

        /* Chaplin Icon in Header */
        .icon {
            width: 35px;
            height: 35px;
            margin: 0 auto 4px;
            display: block;
        }

        .columns {
            column-count: 2;
            column-gap: 40px;
            flex-grow: 1;
            margin-top: 4px;
        }

        @media (max-width: 480px) {
            .columns {
                column-count: 1;
            }
        }

        section {
            margin-bottom: 8px;
            break-inside: auto;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            text-transform: uppercase;
            text-align: center;
            color: #000;
            background-color: var(--accent-color);
            padding: 6px 10px;
            margin-bottom: 12px;
            letter-spacing: 1px;
            break-after: avoid;
            border-radius: 4px;
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        li {
            font-family: 'PT Sans', sans-serif;
            font-size: 1rem;
            line-height: 1.3;
            break-inside: avoid;
            display: flex;
            align-items: flex-end;
            margin-bottom: 6px;
        }

        .name {
            flex-shrink: 0;
            max-width: 78%;
            white-space: normal;
        }

        .dots {
            flex-grow: 1;
            border-bottom: 1px dotted var(--accent-color);
            margin: 0 8px;
            position: relative;
            top: -6px;
            opacity: 0.5;
        }

        .price {
            flex-shrink: 0;
            font-family: 'Courier Prime', monospace;
            font-size: 1rem;
            font-weight: bold;
            color: var(--accent-color);
        }

        .sub-category {
            font-family: 'Courier Prime', monospace;
            font-size: 0.95rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-top: 10px;
            margin-bottom: 4px;
            display: block;
            break-after: avoid;
            text-transform: uppercase;
        }

        .sub-item {
            padding-left: 12px;
        }

        .sub-item .name::before {
            content: "▸ ";
            font-size: 0.9rem;
            color: var(--accent-color);
        }

        .scene-text {
            position: absolute;
            bottom: 8mm;
            left: 0;
            right: 0;
            text-align: center;
            font-family: 'Courier Prime', monospace;
            font-size: 0.5rem;
            color: var(--accent-color);
            opacity: 0.6;
            letter-spacing: 2px;
        }

        @media print {
            body {
                background-color: transparent;
                padding: 0;
                display: block;
            }

            .page {
                margin: 0;
                box-shadow: none;
                width: 148mm;
                height: 210mm;
                /* If they print on white paper, ensure background colors print */
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }

            @page {
                size: A5;
                margin: 0;
            }
        }

        @media (max-width: 768px) {
            .page {
                padding: 25px 45px;
            }
            .film-strip {
                width: 15px;
            }
            .film-strip.left {
                left: 2px;
            }
            .film-strip.right {
                right: 2px;
            }
            .film-hole {
                width: 8px;
                height: 5px;
            }
            .card-border {
                top: 10px;
                bottom: 10px;
                left: 22px;
                right: 22px;
            }
            h1 {
                font-size: 2rem;
                margin-bottom: 4px;
            }
            .subtitle {
                font-size: 0.8rem;
            }
            .main-logo {
                width: 160px;
                margin-bottom: 10px;
            }
            header {
                margin-bottom: 15px;
                padding-bottom: 10px;
            }
            h2 {
                font-size: 1.1rem;
                padding: 4px 8px;
                margin-bottom: 8px;
            }
            li {
                font-size: 0.9rem;
                margin-bottom: 4px;
            }
            .price {
                font-size: 0.9rem;
            }
            .sub-category {
                font-size: 0.85rem;
                margin-top: 6px;
                margin-bottom: 2px;
            }
            .sub-item {
                padding-left: 8px;
            }
            .sub-item .name::before {
                font-size: 0.8rem;
            }
            .columns {
                column-count: 1;
            }
        }