/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ── Navigation (top bar removed) ───────────────────────────── */

.app-shell[b-eoo5bloqb4] {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}




/* ── Main Content ────────────────────────────────────────────── */

.main-content[b-eoo5bloqb4] {
    flex: 1;
    padding-top: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 480px) {
    .nav-bar-content[b-eoo5bloqb4] {
        padding: 0 16px;
    }
}
/* /Components/Movies/MovieCard.razor.rz.scp.css */
/* ── Movie Card ──────────────────────────────────────────────── */

.movie-card[b-163w0wb6xt] {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-default) var(--ease-default),
                box-shadow var(--duration-default) var(--ease-default);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.movie-card.loaded:hover[b-163w0wb6xt] {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.movie-card.loaded:active[b-163w0wb6xt] {
    transform: scale(0.98);
}

/* Movie Poster */
.movie-poster[b-163w0wb6xt] {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.movie-poster img[b-163w0wb6xt] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
}

.movie-card.lazy-load .movie-poster img[b-163w0wb6xt] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.movie-card.lazy-load .movie-poster img.loaded[b-163w0wb6xt] {
    opacity: 1;
}

.no-poster[b-163w0wb6xt] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fill-tertiary) 0%, var(--fill-primary) 100%);
    color: var(--text-tertiary);
    overflow: hidden;
    padding: 0;
}

.no-poster .initials[b-163w0wb6xt] {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    display: block;
}

.no-poster svg[b-163w0wb6xt] {
    opacity: 0.9;
}

/* Movie Info */
.movie-info[b-163w0wb6xt] {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.movie-title[b-163w0wb6xt] {
    font-size: var(--font-size-subheadline);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.33;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-meta[b-163w0wb6xt] {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: var(--font-size-footnote);
    color: var(--text-secondary);
    margin: 0;
}

 .movie-year[b-163w0wb6xt] {
    font-weight: 600;
    color: var(--text-secondary);
}

.movie-meta .movie-year + .movie-countries[b-163w0wb6xt]::before {
    content: "·";
    margin-right: 0.4rem;
    color: var(--text-tertiary);
}

.movie-meta.multi-country[b-163w0wb6xt] {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.movie-meta.multi-country .movie-year + .movie-countries[b-163w0wb6xt]::before {
    content: none;
}

.movie-countries[b-163w0wb6xt] {
    font-size: var(--font-size-footnote);
    color: var(--text-secondary);
    margin: 0;
}

.movie-ratings[b-163w0wb6xt] {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-top: auto;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .movie-info[b-163w0wb6xt] {
        padding: 10px 12px 12px;
    }
}

@media (max-width: 480px) {
    .movie-title[b-163w0wb6xt] {
        font-size: var(--font-size-footnote);
    }

    .movie-countries[b-163w0wb6xt] {
        font-size: var(--font-size-caption1);
    }
}
/* /Components/Movies/MovieModal.razor.rz.scp.css */
/* ── Modal Backdrop (frosted glass) ──────────────────────────── */

.modal-backdrop[b-op9vtvmdn3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn-b-op9vtvmdn3 0.2s var(--ease-default);
}

@keyframes fadeIn-b-op9vtvmdn3 {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ── Modal Wrapper (positions close button above scrollable content) ── */

.modal-wrapper[b-op9vtvmdn3] {
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
}

/* ── Modal Content (Apple sheet) ─────────────────────────────── */

.modal-content[b-op9vtvmdn3] {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp-b-op9vtvmdn3 0.35s var(--ease-spring);

    /* Hide scrollbar completely */
    scrollbar-width: none;                /* Firefox */
}
.modal-content[b-op9vtvmdn3]::-webkit-scrollbar {
    display: none;                        /* Chrome/Edge/Safari */
}

/* ── Hero section (backdrop + overlay content) ───────────────── */

.modal-hero[b-op9vtvmdn3] {
    position: relative;
}

.modal-content.has-backdrop .modal-hero[b-op9vtvmdn3] {
    overflow: hidden;
    min-height: clamp(180px, 30vw, 300px);
}

/* dark gradient overlay for text readability on backdrop */
.modal-content.has-backdrop .modal-hero[b-op9vtvmdn3]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 35%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.78) 100%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Show gradient only after the backdrop image has loaded */
.modal-content.has-backdrop .modal-hero:has(img.loaded)[b-op9vtvmdn3]::after {
    opacity: 1;
}

/* Hero content sits above the backdrop and gradient */
.modal-content.has-backdrop .modal-header[b-op9vtvmdn3],
.modal-content.has-backdrop .modal-hero-details[b-op9vtvmdn3] {
    position: relative;
    z-index: 2;
}

.modal-content.has-backdrop .modal-header[b-op9vtvmdn3] {
    color: var(--text-on-dark);
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.modal-content.has-backdrop .modal-header h2[b-op9vtvmdn3] {
    color: var(--text-on-dark);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.modal-content.has-backdrop .movie-title-link[b-op9vtvmdn3] {
    color: var(--text-on-dark);
}

.modal-content.has-backdrop .modal-close[b-op9vtvmdn3] {
    background: rgba(0,0,0,0.35);
    color: var(--text-on-dark);
    transition: background .18s ease, color .18s ease;
}

.modal-hero-details[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1.5rem 1.75rem;
}

/* Text colors when overlaid on the backdrop image */
.modal-content.has-backdrop .modal-hero-details .meta-item[b-op9vtvmdn3] {
    color: var(--text-on-dark);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.modal-content.has-backdrop .modal-hero-details .meta-item + .meta-item[b-op9vtvmdn3]::before {
    color: rgba(255,255,255,0.6);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.modal-content.has-backdrop .modal-hero-details .section-label[b-op9vtvmdn3] {
    color: rgba(255,255,255,0.7);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.modal-content.has-backdrop .modal-hero-details .genre-tag[b-op9vtvmdn3] {
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content.has-backdrop .modal-hero-details[b-op9vtvmdn3]  .rating-badge {
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Bright-backdrop refinements */
.modal-content.has-backdrop.backdrop-light .modal-header h2[b-op9vtvmdn3] {
    color: var(--text-on-dark);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.modal-content.has-backdrop.backdrop-light .modal-close[b-op9vtvmdn3] {
    background: rgba(0,0,0,0.35);
    color: var(--text-on-dark);
}

/* Dark-backdrop: stronger shadow for legibility */
.modal-content.has-backdrop.backdrop-dark .modal-header h2[b-op9vtvmdn3] {
    color: var(--text-on-dark);
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.modal-content.has-backdrop.backdrop-dark .modal-close[b-op9vtvmdn3] {
    background: rgba(0,0,0,0.45);
    color: var(--text-on-dark);
}


@keyframes slideUp-b-op9vtvmdn3 {
    from {
        transform: translateY(40px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Grabber indicator */
.modal-grabber[b-op9vtvmdn3] {
    width: 36px;
    height: 5px;
    border-radius: 3px;
    background: var(--separator-opaque);
    margin: 10px auto 0;
}

/* ── Modal Header ────────────────────────────────────────────── */

.modal-header[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1rem;
}

.modal-header h2[b-op9vtvmdn3] {
    margin: 0;
    font-size: var(--font-size-title2);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    flex: 1;
    padding-right: 2.5rem;
    line-height: 1.27;
}

.movie-title-link[b-op9vtvmdn3] {
    color: var(--accent);
    text-decoration: none;
}

.movie-title-link:hover[b-op9vtvmdn3] {
    text-decoration: underline;
}

.original-title[b-op9vtvmdn3] {
    margin: 0.1rem 0 0;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding-right: 2.5rem;
    line-height: 1.3;
}

.modal-content.has-backdrop .original-title[b-op9vtvmdn3] {
    color: rgba(255,255,255,0.7);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Close button (Apple circular style) — always visible above content */
.modal-close[b-op9vtvmdn3] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fill-secondary);
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: background var(--duration-fast) var(--ease-default),
                color var(--duration-fast) var(--ease-default);
}

.modal-close:hover[b-op9vtvmdn3] {
    background: var(--fill-primary);
    color: var(--text-primary);
}

/* ── Modal Body ──────────────────────────────────────────────── */

.modal-body[b-op9vtvmdn3] {
    padding: 0 1.5rem 1.5rem;
}

.skip-to-showtimes[b-op9vtvmdn3] {
    display: none;
    text-align: center;
    padding: 0.4rem 0;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.skip-to-showtimes.visible[b-op9vtvmdn3] {
    display: block;
}

.skip-to-showtimes:hover[b-op9vtvmdn3] {
    opacity: 1;
    color: var(--accent);
}

.scroll-to-top[b-op9vtvmdn3] {
    position: sticky;
    bottom: 1rem;
    float: right;
    margin-right: 0.75rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fill-secondary);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: background var(--duration-fast) var(--ease-default),
                color var(--duration-fast) var(--ease-default),
                opacity var(--duration-fast) var(--ease-default),
                transform var(--duration-fast) var(--ease-default);
    z-index: 10;
}

.scroll-to-top.visible[b-op9vtvmdn3] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover[b-op9vtvmdn3] {
    background: var(--fill-primary);
    color: var(--text-primary);
}

/* backdrop image fills the hero section; modal container clips corners */
.modal-backdrop-image[b-op9vtvmdn3] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: linear-gradient(135deg,
        hsl(220, 45%, 10%) 0%,
        hsl(260, 40%, 12%) 35%,
        hsl(300, 30%, 10%) 60%,
        hsl(340, 35%, 9%) 85%,
        hsl(220, 40%, 8%) 100%
    );
}

.modal-backdrop-image[b-op9vtvmdn3]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255, 255, 255, 0.04) 37%,
        transparent 50%
    );
    background-size: 200% 100%;
    animation: shimmer-b-op9vtvmdn3 1.8s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer-b-op9vtvmdn3 {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.modal-backdrop-image img[b-op9vtvmdn3] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* align image to the top so any cropping removes the bottom portion */
    object-position: top center;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 2;
}

.modal-backdrop-image img.loaded[b-op9vtvmdn3] {
    opacity: 1;
}

.modal-backdrop-image img.loaded + *[b-op9vtvmdn3],
.modal-backdrop-image:has(img.loaded)[b-op9vtvmdn3]::before {
    animation: none;
    opacity: 0;
}

.modal-poster-image[b-op9vtvmdn3] {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.modal-poster-image img[b-op9vtvmdn3] {
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.modal-details[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Section Label (Apple caption style) ─────────────────────── */

.section-label[b-op9vtvmdn3] {
    font-size: var(--font-size-footnote);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Info Rows ───────────────────────────────────────────────── */

.modal-info-row[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-info-row span[b-op9vtvmdn3] {
    color: var(--text-primary);
    font-size: var(--font-size-subheadline);
    line-height: 1.47;
}

/* ── Synopsis ────────────────────────────────────────────────── */

.modal-synopsis[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 0.75rem;
}

.modal-synopsis p[b-op9vtvmdn3] {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--font-size-subheadline);
    line-height: 1.53;
}

/* ── Rating Badges ───────────────────────────────────────────── */

.modal-ratings[b-op9vtvmdn3] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.language-callout[b-op9vtvmdn3] {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 999px;
    font-size: var(--font-size-caption1);
    font-weight: inherit;
}

.language-callout svg[b-op9vtvmdn3] {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-right: 0.35rem;
}

/* ── Meta Row ────────────────────────────────────────────────── */

.modal-meta[b-op9vtvmdn3] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.meta-item[b-op9vtvmdn3] {
    color: var(--text-secondary);
    font-size: var(--font-size-subheadline);
}

.meta-item + .meta-item[b-op9vtvmdn3]::before {
    content: "·";
    margin-right: 0.5rem;
    color: var(--text-tertiary);
    font-weight: bold;
}

/* ── Genre Tags (Apple pill style) ───────────────────────────── */

.modal-genres[b-op9vtvmdn3] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.genre-tag[b-op9vtvmdn3] {
    padding: 4px 12px;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: 14px;
    font-size: var(--font-size-footnote);
    font-weight: 500;
}

/* ── People (cast, crew) ─────────────────────────────────────── */

.modal-people[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-people p[b-op9vtvmdn3] {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--font-size-subheadline);
    line-height: 1.53;
}

.person-link[b-op9vtvmdn3] {
    color: inherit;
    text-decoration: none;
}

.person-link:hover[b-op9vtvmdn3] {
    text-decoration: underline;
    color: var(--accent);
}

/* ── Credits (rich, with avatars) ────────────────────────────── */

/* Crew: single wrapping flow with role below name */

.crew-chips[b-op9vtvmdn3] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crew-chip[b-op9vtvmdn3] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 4px;
    border-radius: 20px;
    background: var(--surface-secondary, rgba(128, 128, 128, 0.08));
    color: var(--text-primary);
    font-size: var(--font-size-footnote);
    text-decoration: none;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.crew-chip:hover[b-op9vtvmdn3] {
    background: var(--surface-tertiary, rgba(128, 128, 128, 0.16));
    color: var(--accent);
}

.crew-avatar[b-op9vtvmdn3] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crew-avatar.loaded[b-op9vtvmdn3] {
    opacity: 1;
}

.crew-avatar-placeholder[b-op9vtvmdn3] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-bg, rgba(128, 128, 128, 0.12));
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.crew-chip-text[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.crew-name[b-op9vtvmdn3] {
    font-weight: 500;
}

.crew-role[b-op9vtvmdn3] {
    font-size: 10px;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Cast: card chips with avatars */

.modal-credits-group[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credits-list[b-op9vtvmdn3] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credit-chip[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
    background: var(--surface-secondary, rgba(128, 128, 128, 0.08));
    color: var(--text-primary);
    font-size: var(--font-size-footnote);
    text-decoration: none;
    transition: background 0.15s ease;
    width: 86px;
}

.credit-chip:hover[b-op9vtvmdn3] {
    background: var(--surface-tertiary, rgba(128, 128, 128, 0.16));
    color: var(--accent);
}

.credit-avatar[b-op9vtvmdn3] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.credit-avatar.loaded[b-op9vtvmdn3] {
    opacity: 1;
}

.credit-avatar-placeholder[b-op9vtvmdn3] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: var(--accent-bg, rgba(128, 128, 128, 0.12));
    color: var(--text-secondary);
    font-size: 32px;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.credit-name[b-op9vtvmdn3] {
    text-align: center;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
}

/* ── Schedules ───────────────────────────────────────────────── */

/* ── Trailer ─────────────────────────────────────────────────── */

.trailer-section[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1rem;
}

.trailer-player[b-op9vtvmdn3] {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
}

.trailer-player iframe[b-op9vtvmdn3] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Schedules (continued) ──────────────────────────────────── */

.modal-loading[b-op9vtvmdn3] {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-subheadline);
}

.modal-schedules[b-op9vtvmdn3] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--separator);
}

.modal-schedules h3[b-op9vtvmdn3] {
    margin: 0 0 1.25rem 0;
    font-size: var(--font-size-title3);
    font-weight: 700;
    color: var(--text-primary);
}

/* ── Schedule Calendar Strip ─────────────────────────────────── */

.schedule-calendar[b-op9vtvmdn3] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--separator);
}

.cal-day[b-op9vtvmdn3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    min-width: 36px;
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-default);
}

a.cal-day[b-op9vtvmdn3] {
    color: var(--accent);
    background: var(--accent-bg);
}

a.cal-day:hover[b-op9vtvmdn3] {
    background: var(--accent);
    color: var(--text-on-dark);
}

.cal-day.disabled[b-op9vtvmdn3] {
    color: var(--text-tertiary);
    opacity: 0.4;
    cursor: default;
}

.cal-day-letter[b-op9vtvmdn3] {
    font-size: var(--font-size-caption2);
    font-weight: 600;
    line-height: 1.2;
}

.cal-day-date[b-op9vtvmdn3] {
    font-size: 9px;
    line-height: 1.2;
}

/* ── Schedule Dates ──────────────────────────────────────────── */

.schedule-date[b-op9vtvmdn3] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--separator);
}

.schedule-date:last-child[b-op9vtvmdn3] {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-date h4[b-op9vtvmdn3] {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 0.75rem 0;
    font-size: var(--font-size-body);
    color: var(--bg-secondary, #fff);
    background: var(--text-primary, #000);
    padding: 2px 10px;
    border-radius: 6px;
}

.schedule-date h4 .day-name[b-op9vtvmdn3] {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.schedule-date h4 .day-date[b-op9vtvmdn3] {
    font-weight: 400;
    opacity: 0.7;
}

.performance[b-op9vtvmdn3] {
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
}

.venue-info[b-op9vtvmdn3] {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.venue-info strong[b-op9vtvmdn3] {
    font-size: var(--font-size-subheadline);
    font-weight: 500;
}

.venue-city[b-op9vtvmdn3] {
    color: var(--text-secondary);
    font-size: var(--font-size-footnote);
}

.venue-map-link[b-op9vtvmdn3] {
    color: inherit;
    text-decoration: none;
}

.venue-map-link:hover[b-op9vtvmdn3] {
    text-decoration: underline;
    color: var(--accent);
}

/* Show Apple Maps on Apple devices, Google Maps elsewhere */
.apple-maps-link[b-op9vtvmdn3] {
    display: none;
}

.google-maps-link[b-op9vtvmdn3] {
    display: inline;
}

@supports (-webkit-touch-callout: none) {
    .apple-maps-link[b-op9vtvmdn3] {
        display: inline;
    }
    .google-maps-link[b-op9vtvmdn3] {
        display: none;
    }
}

.showtimes[b-op9vtvmdn3] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showtime[b-op9vtvmdn3] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--separator);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-subheadline);
    transition: border-color var(--duration-fast) var(--ease-default),
                background var(--duration-fast) var(--ease-default);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.showtime:hover[b-op9vtvmdn3] {
    border-color: var(--accent);
    background: var(--accent-bg);
}

.showtime .time[b-op9vtvmdn3] {
    font-weight: 600;
    color: var(--text-primary);
}

.showtime .time .showtime-date-mismatch[b-op9vtvmdn3] {
    color: var(--danger);
    font-weight: 700;
}

.showtime .badges[b-op9vtvmdn3] {
    display: flex;
    gap: 4px;
}

.showtime .badge[b-op9vtvmdn3] {
    padding: 2px 6px;
    background: var(--accent);
    color: var(--text-on-dark);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
}

.showtime .badge-logo[b-op9vtvmdn3] {
    padding: 2px 4px;
    line-height: 0;
}

.showtime .ticket-link[b-op9vtvmdn3] {
    padding: 4px 10px;
    background: var(--accent);
    color: var(--text-on-dark);
    text-decoration: none;
    border-radius: 6px;
    font-size: var(--font-size-footnote);
    font-weight: 600;
    transition: background var(--duration-fast) var(--ease-default);
} 

.showtime .ticket-link:hover[b-op9vtvmdn3] {
    background: var(--accent-hover);
    text-decoration: none;
}

.no-schedules[b-op9vtvmdn3] {
    margin-top: 1.5rem;
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    font-size: var(--font-size-subheadline);
}

/* ── Filter Banner ───────────────────────────────────────────── */

.filter-banner[b-op9vtvmdn3] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin-bottom: 1rem;
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: var(--radius-sm);
    color: var(--warning);
    font-size: var(--font-size-footnote);
    line-height: 1.4;
}

.filter-banner-icon[b-op9vtvmdn3] {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .modal-backdrop[b-op9vtvmdn3] {
        padding: 0;
        align-items: center;
    }

    .modal-wrapper[b-op9vtvmdn3] {
        max-width: 100%;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
    }

    .modal-content[b-op9vtvmdn3] {
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        animation: slideUpSheet-b-op9vtvmdn3 0.4s var(--ease-spring);
    }

    @keyframes slideUpSheet-b-op9vtvmdn3 {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .modal-header h2[b-op9vtvmdn3] {
        font-size: var(--font-size-title3);
    }

    .modal-body[b-op9vtvmdn3] {
        padding: 0 1rem 1rem;
    }

    .modal-hero-details[b-op9vtvmdn3] {
        padding: 0 1rem 1rem;
    }

    .modal-poster-image img[b-op9vtvmdn3] {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .modal-header[b-op9vtvmdn3] {
        padding: 1rem;
    }

    .modal-header h2[b-op9vtvmdn3] {
        font-size: var(--font-size-body);
    }

    .modal-body[b-op9vtvmdn3] {
        padding: 0 0.75rem 0.75rem;
    }

    .modal-hero-details[b-op9vtvmdn3] {
        padding: 0 0.75rem 0.75rem;
    }

    .modal-info-row[b-op9vtvmdn3] {
        gap: 2px;
    }
}

/* ── Dark theme: more visible borders ────────────────────────── */

:global([data-theme="dark"]) .schedule-date[b-op9vtvmdn3] {
    border-bottom-color: rgba(255, 255, 255, 0.22);
}

:global([data-theme="dark"]) .showtime[b-op9vtvmdn3] {
    border-color: rgba(255, 255, 255, 0.22);
}
/* /Components/Movies/RatingBadges.razor.rz.scp.css */
.rating-badge[b-jwv96ru7fa] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: var(--font-size-footnote);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
    transition: opacity var(--duration-fast) var(--ease-default),
                transform var(--duration-fast) var(--ease-default);
}

.rating-badge:hover[b-jwv96ru7fa] {
    opacity: 0.85;
    transform: scale(1.05);
    text-decoration: none;
}

.rating-source[b-jwv96ru7fa] {
    opacity: 0.85;
    font-size: var(--font-size-caption1);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.rating-value[b-jwv96ru7fa] {
    font-weight: 700;
}

.rating-badge.csfd[b-jwv96ru7fa] {
    background: var(--rating-csfd);
    color: var(--text-on-dark);
}

.rating-badge.tmdb[b-jwv96ru7fa] {
    background: var(--rating-tmdb-bg);
    color: var(--rating-tmdb-text);
}

.rating-badge.imdb[b-jwv96ru7fa] {
    background: var(--rating-imdb);
    color: var(--text-on-light);
}

/* Compact variant (movie list cards) */

.rating-badge.compact[b-jwv96ru7fa] {
    gap: 3px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: var(--font-size-caption2);
    line-height: 1.2;
}

.rating-badge.compact .rating-source[b-jwv96ru7fa] {
    font-size: var(--font-size-caption2);
}

.rating-badge.compact:has(.rating-value) .rating-source[b-jwv96ru7fa] {
    display: none;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-toolbar[b-q2l8pddeyf] {
    display: flex;
    justify-content: flex-end;
    padding: 12px 20px 0;
    gap: 0.5rem;
    align-items: center;
}

.toolbar-actions[b-q2l8pddeyf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero[b-q2l8pddeyf] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 52px);
    padding: 2rem;
    text-align: center;
}

.hero-content[b-q2l8pddeyf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 480px;
}

.hero-icon[b-q2l8pddeyf] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-md);
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero-title[b-q2l8pddeyf] {
    font-size: var(--font-size-large-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-subtitle[b-q2l8pddeyf] {
    font-size: var(--font-size-title3);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.hero-cta[b-q2l8pddeyf] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--text-on-dark);
    font-size: var(--font-size-body);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background var(--duration-default) var(--ease-default),
                transform var(--duration-fast) var(--ease-default);
}

.hero-cta:hover[b-q2l8pddeyf] {
    background: var(--accent-hover);
    text-decoration: none;
}

.hero-cta:active[b-q2l8pddeyf] {
    transform: scale(0.97);
    background: var(--accent-active);
}

@media (max-width: 480px) {
    .hero[b-q2l8pddeyf] {
        padding: 1.5rem;
    }

    .hero-title[b-q2l8pddeyf] {
        font-size: var(--font-size-title1);
    }

    .hero-subtitle[b-q2l8pddeyf] {
        font-size: var(--font-size-body);
    }
}
/* /Components/Pages/Movies.razor.rz.scp.css */
/* ── Container ────────────────────────────────────────────────── */

.movies-container[b-ejv93ybcgr] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px 40px;
}

/* ── Sticky Toolbar ──────────────────────────────────────────── */

.sticky-toolbar[b-ejv93ybcgr] {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--toolbar-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--separator);
    transform: translateY(0);
    transition: transform var(--duration-default) var(--ease-spring);
    will-change: transform;
}

/* Dark theme: use a dark translucent toolbar to match theme variables */
html[data-theme="dark"] .sticky-toolbar[b-ejv93ybcgr] {
    background: var(--toolbar-bg);
    border-bottom-color: var(--separator);
}

.sticky-toolbar.toolbar-hidden[b-ejv93ybcgr] {
    transform: translateY(-100%);
    pointer-events: none;
}

.sticky-toolbar-inner[b-ejv93ybcgr] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toolbar-search-row[b-ejv93ybcgr] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-controls[b-ejv93ybcgr] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.toolbar-row[b-ejv93ybcgr] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.movies-title[b-ejv93ybcgr] {
    font-size: var(--font-size-large-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.movies-stats[b-ejv93ybcgr] {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: var(--font-size-subheadline);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.movies-stats p[b-ejv93ybcgr] {
    margin: 0;
}

.stats-date-range[b-ejv93ybcgr] {
    margin-left: 0.25rem;
    color: var(--accent);
    font-weight: 500;
}

/* ── Search Field (Apple-style filled) ───────────────────────── */

.search-field[b-ejv93ybcgr] {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.search-icon[b-ejv93ybcgr] {
    position: absolute;
    left: 12px;
    color: var(--text-tertiary);
    pointer-events: none;
    flex-shrink: 0;
}

.search-input[b-ejv93ybcgr] {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border-radius: 10px;
    border: none;
    background: var(--bg-tertiary);
    font-size: var(--font-size-body);
    color: var(--text-primary);
    outline: none;
    transition: box-shadow var(--duration-fast) var(--ease-default);
}

.search-input[b-ejv93ybcgr]::placeholder {
    color: var(--text-tertiary);
}

.search-input:focus[b-ejv93ybcgr] {
    box-shadow: 0 0 0 3px var(--accent-focus);
}

.search-clear-btn[b-ejv93ybcgr] {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fill-tertiary);
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    z-index: 1;
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-default),
                color var(--duration-fast) var(--ease-default),
                transform var(--duration-fast) var(--ease-default);
}

.search-clear-btn:hover[b-ejv93ybcgr] {
    background: var(--fill-secondary);
    color: var(--text-secondary);
}

.search-clear-btn:active[b-ejv93ybcgr] {
    transform: scale(0.85);
}

/* ── Inline Spinner ──────────────────────────────────────────── */

/* spinner removed */

/* ── Filters ──────────────────────────────────────────────────── */
.date-range-picker[b-ejv93ybcgr] {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-icon[b-ejv93ybcgr] {
    position: absolute;
    left: 12px;
    width: 15px;
    height: 15px;
    color: var(--accent);
    pointer-events: none;
    z-index: 1;
    transition: color var(--duration-fast) var(--ease-default);
}

.date-range-picker:has(.date-range-input:focus) .filter-icon[b-ejv93ybcgr] {
    color: var(--accent-hover);
}

/* Ensure Flatpickr's alt/visible input matches the app's pill-style field */
.date-range-input[b-ejv93ybcgr],
.date-range-picker .flatpickr-input[b-ejv93ybcgr] {
    padding: 7px 34px 7px 34px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--separator);
    background: var(--bg-secondary);
    font-size: var(--font-size-subheadline);
    font-weight: 400;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    min-width: 200px;
    letter-spacing: -0.2px;
    transition: border-color var(--duration-fast) var(--ease-default),
                box-shadow var(--duration-fast) var(--ease-default),
                background var(--duration-fast) var(--ease-default);
    -webkit-appearance: none;
    appearance: none;
}

.date-range-input[b-ejv93ybcgr]::placeholder,
.date-range-picker .flatpickr-input[b-ejv93ybcgr]::placeholder {
    color: var(--text-tertiary);
    font-weight: 400;
}

.date-range-input:hover[b-ejv93ybcgr],
.date-range-picker .flatpickr-input:hover[b-ejv93ybcgr] {
    border-color: var(--separator-opaque);
    background: var(--bg-secondary);
}

.date-range-input:focus[b-ejv93ybcgr],
.date-range-picker .flatpickr-input:focus[b-ejv93ybcgr],
.date-range-picker .flatpickr-input.active[b-ejv93ybcgr] {
    border-color: var(--accent);
    box-shadow: 0 0 0 3.5px var(--accent-focus);
    background: var(--bg-secondary);
}

.date-clear-btn[b-ejv93ybcgr] {
    position: absolute;
    right: 7px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fill-tertiary);
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    z-index: 1;
    transition: background var(--duration-fast) var(--ease-default),
                color var(--duration-fast) var(--ease-default),
                transform var(--duration-fast) var(--ease-default);
}

.date-clear-btn:hover[b-ejv93ybcgr] {
    background: var(--fill-secondary);
    color: var(--text-secondary);
}

.date-clear-btn:active[b-ejv93ybcgr] {
    transform: scale(0.85);
}

/* Time slider */
.time-filter[b-ejv93ybcgr] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
}

.time-filter-value[b-ejv93ybcgr] {
    font-variant-numeric: tabular-nums;
    font-size: var(--font-size-footnote);
    color: var(--text-tertiary);
    white-space: nowrap;
    width: 4.5em;
    transition: color var(--duration-fast) var(--ease-default);
}

.time-filter-value.active[b-ejv93ybcgr] {
    color: var(--accent);
    font-weight: 600;
}

.time-slider[b-ejv93ybcgr] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--fill-primary);
    outline: none;
    cursor: pointer;
}

.time-slider[b-ejv93ybcgr]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    box-shadow: var(--shadow-thumb);
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-default),
                box-shadow var(--duration-fast) var(--ease-default);
}

.time-slider[b-ejv93ybcgr]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.time-slider[b-ejv93ybcgr]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    box-shadow: var(--shadow-thumb);
    cursor: pointer;
}

html[data-theme="dark"] .time-slider[b-ejv93ybcgr]::-webkit-slider-thumb {
    background: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .time-slider[b-ejv93ybcgr]::-moz-range-thumb {
    background: rgba(255, 255, 255, 0.9);
}

.time-slider[b-ejv93ybcgr]::-moz-range-track {
    height: 4px;
    border-radius: 2px;
    background: var(--fill-primary);
}

/* ── Segmented Control (Sort) ────────────────────────────────── */

.sort-group[b-ejv93ybcgr] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.sort-label[b-ejv93ybcgr] {
    font-size: var(--font-size-footnote);
    color: var(--text-secondary);
    font-weight: 500;
    margin-right: 0.25rem;
    white-space: nowrap;
}

.segmented-control[b-ejv93ybcgr] {
    display: inline-flex;
    background: var(--fill-tertiary);
    border-radius: 9px;
    padding: 2px;
}

.segment[b-ejv93ybcgr] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 6px 14px;
    border-radius: 7px;
    font-size: var(--font-size-footnote);
    font-weight: 500;
    color: var(--text-secondary);
    user-select: none;
    white-space: nowrap;
    transition: all var(--duration-default) var(--ease-default);
}

.segment:hover[b-ejv93ybcgr] {
    color: var(--text-primary);
}

.segment.active[b-ejv93ybcgr] {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.sort-arrow[b-ejv93ybcgr] {
    font-size: 9px;
    line-height: 1;
    margin-left: 4px;
}

/* ── Loading State ───────────────────────────────────────────── */

.loading-container[b-ejv93ybcgr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.loading-dots[b-ejv93ybcgr] {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.loading-dots span[b-ejv93ybcgr] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-tertiary);
    animation: dotPulse-b-ejv93ybcgr 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1)[b-ejv93ybcgr] { animation-delay: -0.32s; }
.loading-dots span:nth-child(2)[b-ejv93ybcgr] { animation-delay: -0.16s; }
.loading-dots span:nth-child(3)[b-ejv93ybcgr] { animation-delay: 0s; }

@keyframes dotPulse-b-ejv93ybcgr {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-container p[b-ejv93ybcgr] {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-subheadline);
}

/* No Movies */
.no-movies[b-ejv93ybcgr] {
    text-align: center;
    padding: 6rem 0;
    color: var(--text-tertiary);
}

/* ── Movies Grid ─────────────────────────────────────────────── */

.movies-grid[b-ejv93ybcgr] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ── Placeholder Skeleton ────────────────────────────────────── */

.movie-placeholder[b-ejv93ybcgr] {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    cursor: default;
}

.placeholder-poster[b-ejv93ybcgr] {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.placeholder-info[b-ejv93ybcgr] {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.poster-skeleton[b-ejv93ybcgr] {
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, var(--fill-tertiary) 8%, var(--bg-primary) 18%, var(--fill-tertiary) 33%);
    background-size: 200% 100%;
    animation: shimmer-b-ejv93ybcgr 1.5s linear infinite;
}

.title-skeleton[b-ejv93ybcgr] {
    height: 1rem;
    width: 75%;
    border-radius: 6px;
    background: linear-gradient(110deg, var(--fill-tertiary) 8%, var(--bg-primary) 18%, var(--fill-tertiary) 33%);
    background-size: 200% 100%;
    animation: shimmer-b-ejv93ybcgr 1.5s linear infinite;
}

.countries-skeleton[b-ejv93ybcgr] {
    height: 0.75rem;
    width: 50%;
    border-radius: 6px;
    background: linear-gradient(110deg, var(--fill-tertiary) 8%, var(--bg-primary) 18%, var(--fill-tertiary) 33%);
    background-size: 200% 100%;
    animation: shimmer-b-ejv93ybcgr 1.5s linear infinite;
}

@keyframes shimmer-b-ejv93ybcgr {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Filter Chips Row (mobile only) ─────────────────────────── */

.filter-chips-row[b-ejv93ybcgr] {
    display: none;
}

.filter-chip[b-ejv93ybcgr] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1.5px solid var(--separator);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: var(--font-size-footnote);
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--duration-fast) var(--ease-default),
                border-color var(--duration-fast) var(--ease-default),
                color var(--duration-fast) var(--ease-default);
}

.filter-chip:active[b-ejv93ybcgr] {
    opacity: 0.75;
}

.filter-chip.active[b-ejv93ybcgr] {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.filter-chip.sort-chip[b-ejv93ybcgr] {
    background: var(--fill-tertiary);
    border-color: transparent;
    color: var(--text-primary);
    font-weight: 600;
}

.sort-arrow-chip[b-ejv93ybcgr] {
    font-size: 11px;
    line-height: 1;
}

.chip-clear[b-ejv93ybcgr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    margin-left: 1px;
    flex-shrink: 0;
}

.filter-chips-time-expand[b-ejv93ybcgr] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 2px 4px;
    animation: chipExpand-b-ejv93ybcgr 0.2s var(--ease-spring);
}

.filter-chips-time-expand .time-slider[b-ejv93ybcgr] {
    flex: 1;
}

.filter-chips-time-expand .time-filter-value[b-ejv93ybcgr] {
    min-width: 4em;
    text-align: right;
}

@keyframes chipExpand-b-ejv93ybcgr {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .movies-grid[b-ejv93ybcgr] {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
        gap: 1rem;
    }

    .sticky-toolbar-inner[b-ejv93ybcgr] {
        padding: 10px 16px;
    }

    .date-range-input[b-ejv93ybcgr] {
        min-width: 0;
        font-size: var(--font-size-footnote);
    }

    .toolbar-row[b-ejv93ybcgr] {
        display: none;
    }

    .filter-chips-row[b-ejv93ybcgr] {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 2px 0 4px;
    }

    .filter-chips-scroll[b-ejv93ybcgr] {
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 2px 2px 4px;
    }

    .filter-chips-scroll[b-ejv93ybcgr]::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .movies-container[b-ejv93ybcgr] {
        padding: 10px 16px 32px;
    }

    .sticky-toolbar-inner[b-ejv93ybcgr] {
        padding: 8px 16px;
    }

    .movies-grid[b-ejv93ybcgr] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .segmented-control[b-ejv93ybcgr] {
        flex-wrap: wrap;
    }

    /* Stretch filter controls (except sort) to full width when stacked on small screens */
    .toolbar-row > :not(.sort-group)[b-ejv93ybcgr],
    .toolbar-search-row > :not(.sort-group)[b-ejv93ybcgr] {
        flex: 1 1 100%;
        min-width: 0;
    }
}

@media (max-width: 820px) {
    .toolbar-row .date-range-picker[b-ejv93ybcgr],
    .toolbar-search-row .date-range-picker[b-ejv93ybcgr] {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
        padding-inline: 0;
        border: 1.5px solid var(--separator);
        border-radius: var(--radius-pill);
        background: var(--bg-secondary);
        gap: 0;
        transition:
            border-color var(--duration-fast) var(--ease-default),
            box-shadow var(--duration-fast) var(--ease-default);
    }

    .toolbar-row .date-range-picker:focus-within[b-ejv93ybcgr],
    .toolbar-search-row .date-range-picker:focus-within[b-ejv93ybcgr] {
        border-color: var(--accent);
        box-shadow: 0 0 0 3.5px var(--accent-focus);
    }

    .toolbar-row .date-range-picker :is(.date-range-input, .flatpickr-input)[b-ejv93ybcgr],
    .toolbar-search-row .date-range-picker :is(.date-range-input, .flatpickr-input)[b-ejv93ybcgr] {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        padding: 7px 34px;
        border: none;
        background: transparent;
        color: var(--text-primary);
        box-shadow: none;
        outline: none;
        appearance: none;
    }

    .date-range-picker .filter-icon[b-ejv93ybcgr] {
        left: 12px;
    }

    .date-clear-btn[b-ejv93ybcgr] {
        right: 12px;
    }
}
/* /Components/Pages/Premieres.razor.rz.scp.css */
/* ── Toolbar ──────────────────────────────────────────────────── */

.premieres-toolbar[b-0vxixjn9w3] {
    display: flex;
    justify-content: flex-end;
    padding: 12px 20px 0;
    gap: 0.5rem;
    align-items: center;
}

.toolbar-actions[b-0vxixjn9w3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── Container ────────────────────────────────────────────────── */

.premieres-container[b-0vxixjn9w3] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px 40px;
}

.premieres-stats[b-0vxixjn9w3] {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: var(--font-size-subheadline);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.premieres-stats p[b-0vxixjn9w3] {
    margin: 0;
}

/* ── Date Group ──────────────────────────────────────────────── */

.premiere-group[b-0vxixjn9w3] {
    margin-bottom: 2rem;
}

.premiere-date-header[b-0vxixjn9w3] {
    font-size: var(--font-size-title3);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--separator);
    text-transform: capitalize;
}

/* ── Movies Grid ─────────────────────────────────────────────── */

.movies-grid[b-0vxixjn9w3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* ── Loading ─────────────────────────────────────────────────── */

.loading-container[b-0vxixjn9w3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    color: var(--text-tertiary);
}

.loading-dots[b-0vxixjn9w3] {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.loading-dots span[b-0vxixjn9w3] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-tertiary);
    animation: dot-pulse-b-0vxixjn9w3 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1)[b-0vxixjn9w3] { animation-delay: -0.32s; }
.loading-dots span:nth-child(2)[b-0vxixjn9w3] { animation-delay: -0.16s; }

@keyframes dot-pulse-b-0vxixjn9w3 {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ── Empty State ─────────────────────────────────────────────── */

.empty-state[b-0vxixjn9w3] {
    text-align: center;
    padding: 6rem 0;
    color: var(--text-tertiary);
    font-size: var(--font-size-body);
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .movies-grid[b-0vxixjn9w3] {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .premieres-container[b-0vxixjn9w3] {
        padding: 10px 16px 32px;
    }

    .movies-grid[b-0vxixjn9w3] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .premiere-date-header[b-0vxixjn9w3] {
        font-size: var(--font-size-headline);
    }
}
/* /Components/Shared/LanguageSelector.razor.rz.scp.css */
.lang-toggle[b-05cge772w6] {
    --size: 36px;
    height: var(--size);
    width: var(--size);
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--toolbar-bg);
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, transform .06s, box-shadow .12s;
}

.lang-toggle:active[b-05cge772w6] { transform: translateY(1px) scale(.98); }
.lang-toggle:focus[b-05cge772w6]  { outline: 2px solid var(--accent-focus); outline-offset: 2px; }

.lang-code[b-05cge772w6] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
}
/* /Components/Shared/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-xanbnfk058] {
    --size: 36px;
    height: var(--size);
    width: var(--size);
    padding: 6px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--toolbar-bg);
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, transform .06s, box-shadow .12s;
}
.theme-toggle:active[b-xanbnfk058] { transform: translateY(1px) scale(.98); }
.theme-toggle:focus[b-xanbnfk058] { outline: 2px solid var(--accent-focus); outline-offset: 2px; }
