/* ==========================================
   HOME PAGE — RapPhim.vn
   ========================================== */

/* ---- Hero Banner Slider (rapphim.vn style) ---- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 680px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-8);
    background: #0a0a1a;
}

.hero-banner__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Fade transition: slides stack on top of each other */
.hero-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.hero-banner__slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-banner__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.5) 45%,
        rgba(0,0,0,0.15) 75%,
        transparent 100%
    ),
    linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        transparent 40%
    );
}

/* Content: poster + info side by side */
.hero-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: var(--space-6);
    padding: var(--space-8);
    padding-bottom: 100px; /* space for thumbnails */
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* Poster thumbnail */
.hero-banner__poster {
    flex-shrink: 0;
    width: 220px;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 60px rgba(226,51,64,0.1);
    align-self: flex-end;
    border: 2px solid rgba(255,255,255,0.08);
}

.hero-banner__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Info section */
.hero-banner__info {
    flex: 1;
    padding-bottom: var(--space-2);
}

.hero-banner__title {
    font-family: 'Oswald', var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-2);
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-top: 4px;
    background: linear-gradient(135deg, #fff 60%, rgba(226,51,64,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
    overflow: visible;
}

.hero-banner__meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}

.hero-banner__mpaa {
    display: inline-block;
    padding: 1px 8px;
    background: var(--brand-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.hero-banner__sep {
    color: rgba(255,255,255,0.3);
    margin: 0 2px;
}

.hero-banner__desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.01em;
}

/* CTA Buttons */
.hero-banner__actions {
    display: flex;
    gap: var(--space-3);
}

.hero-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
}

.hero-banner__btn--trailer {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.hero-banner__btn--trailer:hover {
    background: rgba(255,255,255,0.25);
}

.hero-banner__btn--book {
    background: var(--brand-red);
    color: #fff;
    border: 1px solid var(--brand-red);
}

.hero-banner__btn--book:hover {
    background: #c42030;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(226,51,64,0.4);
}

/* Poster thumbnail strip at bottom */
.hero-banner__thumbs {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-6);
    z-index: 5;
    display: flex;
    gap: var(--space-2);
    align-items: flex-end;
}

.hero-banner__thumb {
    width: 60px;
    height: 85px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-banner__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner__thumb:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.hero-banner__thumb.active {
    opacity: 1;
    border-color: var(--brand-red);
    transform: scale(1.08);
    box-shadow: 0 2px 12px rgba(226, 51, 64, 0.4);
}

/* ---- YouTube Trailer Modal ---- */
.trailer-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trailer-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.trailer-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.trailer-modal__container {
    position: relative;
    width: 80vw;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    z-index: 1;
}

.trailer-modal__container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.trailer-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.trailer-modal__close:hover {
    background: rgba(255,255,255,0.3);
}


/* ---- Movie Detail Page ---- */
.movie-page__back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: none;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    margin-bottom: var(--space-4);
    transition: all var(--transition-fast);
}
.movie-page__back:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.movie-page__hero {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-6);
    background: #0a0a1a;
}

.movie-page__banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.movie-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.5) 45%,
        rgba(0,0,0,0.15) 75%,
        transparent 100%
    ),
    linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        transparent 40%
    );
}

.movie-page__hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: var(--space-6);
    padding: var(--space-8);
    height: 100%;
    box-sizing: border-box;
}

.movie-page__poster {
    flex-shrink: 0;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.movie-page__poster img {
    width: 100%;
    height: auto;
    display: block;
}

.movie-page__hero-info {
    flex: 1;
    padding-bottom: var(--space-2);
}

.movie-page__title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-1);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.movie-page__alias {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-3);
    font-style: italic;
}

.movie-page__hero-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.movie-page__mpaa {
    display: inline-block;
    padding: 2px 10px;
    background: var(--brand-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.movie-page__sep {
    color: rgba(255,255,255,0.3);
    margin: 0 2px;
}

.movie-page__hero-actions {
    display: flex;
    gap: var(--space-3);
}

.movie-page__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.movie-page__btn--trailer {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.movie-page__btn--trailer:hover {
    background: rgba(255,255,255,0.25);
}

.movie-page__btn--book {
    background: var(--brand-red);
    color: #fff;
}
.movie-page__btn--book:hover {
    background: #c42030;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(226,51,64,0.4);
}

/* Body: info + showtimes */
.movie-page__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.movie-page__main {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.movie-page__revenue {
    padding: var(--space-4);
    background: var(--accent-rose-soft);
    border-radius: var(--radius-lg);
    text-align: center;
}
.movie-page__revenue-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-1);
}
.movie-page__revenue-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-red);
}

.movie-page__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.movie-page__info-item {
    padding: var(--space-3) var(--space-4);
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.movie-page__info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-1);
}

.movie-page__info-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.movie-page__genres {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.movie-page__synopsis h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.movie-page__synopsis p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.movie-page__showtimes {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}

.movie-page__showtimes h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}


/* ---- Movie Review Card ---- */
.movie-page__review h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.movie-review__card {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-3);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
    overflow: hidden;
}
.movie-review__card:hover {
    border-color: var(--brand-red);
    box-shadow: 0 4px 20px rgba(226,51,64,0.12);
    transform: translateY(-2px);
}

.movie-review__thumb {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}
.movie-review__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.movie-review__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--bg-card);
}

.movie-review__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-1);
}

.movie-review__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.movie-review__date {
    font-size: 12px;
    color: var(--text-tertiary);
}

.movie-review__cta {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--brand-red);
    margin-top: var(--space-1);
}
.movie-review__card:hover .movie-review__cta {
    text-decoration: underline;
}


/* ---- Home Layout: Full-width ---- */
.home-layout {
    display: block;
    margin-bottom: var(--space-8);
}

.home-main {
    min-width: 0;
    overflow: hidden;
}

/* ---- Bento Grid (Mockup Layout: Review + Revenue + 2 Upcoming) ---- */
.bento-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 3fr;
    gap: var(--space-4);
    min-height: 380px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: bentoFadeIn 0.6s ease-out backwards;
}

.bento-card:nth-child(2) { animation-delay: 0.1s; }
.bento-card:nth-child(3) { animation-delay: 0.2s; }

@keyframes bentoFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.bento-card:hover {
    border-color: var(--border-default);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* --- Featured Review Card (Large — spans left col) --- */
.bento-card--review {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    grid-row: 1 / -1;
}

.bento-review__badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--brand-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    z-index: 3;
}

.bento-review__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.5s ease;
}

.bento-card--review:hover .bento-review__image {
    transform: scale(1.05);
}

.bento-review__overlay {
    position: relative;
    z-index: 2;
    padding: var(--space-5);
    background: linear-gradient(to top, rgba(8,8,14,0.95) 0%, rgba(8,8,14,0.7) 50%, transparent 100%);
    min-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: var(--space-2);
}

.bento-review__date {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

.bento-review__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-review__excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Revenue Card (Medium — center col) --- */
.bento-card--revenue {
    cursor: pointer;
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(226,51,64,0.06) 0%, rgba(147,51,234,0.04) 100%);
    border-color: rgba(226,51,64,0.12);
}

.bento-card--revenue:hover {
    border-color: rgba(226,51,64,0.25);
    box-shadow: var(--shadow-glow-red);
}

.bento-card--revenue .bento-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}

.bento-card__date {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

.bento-card__chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    min-height: 200px;
    padding: 0 8px;
}

.mini-chart__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    max-width: 80px;
}

.mini-chart__value {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.mini-chart__bar-wrap {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: flex-end;
}

.mini-chart__bar {
    width: 100%;
    min-height: 6px;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(226,51,64,0.5) 0%, rgba(147,51,234,0.2) 100%);
    transition: height 0.6s ease;
}

.mini-chart__bar--top {
    background: linear-gradient(180deg, #E23340 0%, #9333ea 100%);
    box-shadow: 0 2px 8px rgba(226,51,64,0.3);
}

.mini-chart__poster {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.mini-chart__poster-placeholder {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
}

.mini-chart__name {
    font-size: 9px;
    color: rgba(255,255,255,0.45);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bento-card__value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1.1;
}

.bento-card__cta {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--brand-red);
    transition: all var(--transition-fast);
}

.bento-card--revenue:hover .bento-card__cta {
    letter-spacing: 0.03em;
}

/* --- Upcoming Stack (Right col — 2 cards stacked) --- */
.bento-upcoming-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.bento-upcoming__hot-label {
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    height: 26px;
    border-radius: 13px;
    background: linear-gradient(135deg, #ff6b35, #E23340);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255,107,53,0.4);
    z-index: 2;
}

.bento-card--upcoming {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    cursor: pointer;
    min-height: 0;
    overflow: hidden;
}

.bento-card--upcoming:hover {
    border-color: rgba(226, 51, 64, 0.2);
}

.bento-upcoming__poster {
    width: 72px;
    height: 100px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.bento-upcoming__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bento-upcoming__label {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.bento-upcoming__badge {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    height: 26px;
    border-radius: 13px;
    background: var(--brand-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(226,51,64,0.4);
}

.bento-upcoming__badge:empty {
    display: none;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-card--review {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card--review {
        grid-column: auto;
        min-height: 260px;
    }
    .bento-upcoming-stack {
        flex-direction: row;
    }
}


/* ---- Movie Section ---- */
.home-section {
    margin-bottom: var(--space-10);
}

.home-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
}

.home-section__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    letter-spacing: -0.02em;
}

/* Red dot before section titles — animated pulse */
.section-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-red);
    flex-shrink: 0;
    animation: dot-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(226,51,64,0.4);
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.home-section__viewall {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: none;
    border: none;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    border: 1px solid rgba(226,51,64,0.15);
}

.home-section__viewall:hover {
    background: var(--brand-red-soft);
    gap: var(--space-2);
    border-color: rgba(226,51,64,0.3);
}

/* Movie carousel — continuous arc carousel (mockup style) */
.movie-carousel {
    position: relative;
    overflow: clip;
    padding: 30px 0 50px;
}

/* Disable card transitions during drag for smooth instant response */
.movie-carousel__track.dragging .home-movie-card {
    transition: none !important;
}

.movie-carousel__track {
    position: relative;
    height: 380px;
    width: 100%;
}

/* No more pages */
.movie-carousel__page {
    display: contents;
}

/* Individual card — positioned absolutely by JS */
.movie-carousel__track > .home-movie-card,
.movie-carousel__track .home-movie-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease,
                box-shadow 0.5s ease,
                border-color 0.5s ease;
    will-change: transform, opacity;
}

/* Center card highlight — applied by JS via data-arc="0" */
.home-movie-card[data-arc="0"] {
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 28px rgba(226,51,64,0.18);
    border-color: rgba(226,51,64,0.35);
}

@media (max-width: 1100px) {
    .movie-carousel__track .home-movie-card {
        width: 170px;
    }
    .movie-carousel__track {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .movie-carousel__track .home-movie-card {
        width: 150px;
    }
    .movie-carousel__track {
        height: 300px;
    }
    .movie-carousel { padding-bottom: 40px; }
}

@media (max-width: 480px) {
    .movie-carousel__track .home-movie-card {
        width: 130px;
    }
    .movie-carousel__track {
        height: 260px;
    }
}

/* Carousel arrows — top right aligned with header */
.movie-carousel__arrow {
    position: absolute;
    top: -52px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.movie-carousel__arrow:hover {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
}

.movie-carousel__arrow--prev { right: 48px; }
.movie-carousel__arrow--next { right: 4px; }

.movie-carousel__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Carousel dots */



/* Movie card for homepage — compact overlay style matching mockup */
.home-movie-card {
    width: 100%;
    cursor: pointer;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    will-change: transform;
}

/* 3D tilt hover effect */
.home-movie-card:hover {
    transform: perspective(800px) rotateY(-2deg) rotateX(1deg) translateY(-6px) scale(1.03);
    box-shadow:
        0 12px 40px rgba(226, 51, 64, 0.2),
        0 0 20px rgba(226, 51, 64, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 51, 64, 0.35);
    z-index: 2;
}

/* Animated glow border on hover */
.home-movie-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 40%, rgba(226,51,64,0.3) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.home-movie-card:hover::after {
    opacity: 1;
    animation: glowSweep 2s ease-in-out infinite;
}

@keyframes glowSweep {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.home-movie-card__poster {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    position: relative;
    background: #1a1a2e;
    flex-shrink: 0;
    z-index: 1;
}

.home-movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.home-movie-card:hover .home-movie-card__poster img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

/* Badges container — top right */
.home-movie-card__badges {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.home-movie-card__score {
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 1.5px solid;
    backdrop-filter: blur(4px);
}

.home-movie-card__badge {
    padding: 2px 6px;
    background: var(--brand-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
}

/* Card info section — below poster, dark bg */
.home-movie-card__info {
    padding: var(--space-2) var(--space-2);
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 0;
    position: relative;
    z-index: 1;
    background: var(--bg-card);
}

.home-movie-card__title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-movie-card__alias {
    font-size: 11px;
    color: var(--text-tertiary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none; /* hide alias in compact mode */
}

.home-movie-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 6px;
    font-size: 10px;
    color: var(--text-tertiary);
}

.home-movie-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-movie-card__meta-item .section-dot {
    width: 5px;
    height: 5px;
}

.home-movie-card__genres {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 2px;
}

/* Star Ratings */
.home-movie-card__stars {
    display: flex;
    gap: 1px;
    margin-top: 2px;
}

.star {
    font-size: 12px;
    line-height: 1;
}

.star--full {
    color: #F5C518;
    text-shadow: 0 0 4px rgba(245, 197, 24, 0.3);
}

.star--half {
    color: #F5C518;
    opacity: 0.6;
}

.star--empty {
    color: var(--text-quaternary);
    opacity: 0.4;
}

/* Countdown badge for coming-soon movies */
.home-movie-card__countdown {
    position: absolute;
    bottom: var(--space-2);
    left: var(--space-2);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    letter-spacing: 0.02em;
}

.home-movie-card__countdown--soon {
    background: linear-gradient(135deg, rgba(226, 51, 64, 0.85) 0%, rgba(219, 39, 119, 0.85) 100%);
    border-color: rgba(226, 51, 64, 0.4);
    animation: countdownPulse 2s ease-in-out infinite;
}

.home-movie-card__countdown--today {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.85) 0%, rgba(5, 150, 105, 0.85) 100%);
    border-color: rgba(52, 211, 153, 0.3);
    animation: countdownPulse 1.5s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(226, 51, 64, 0.3); }
    50% { box-shadow: 0 0 12px 2px rgba(226, 51, 64, 0.2); }
}

/* Revenue widget animation */
@keyframes countFadeIn {
    from { opacity: 0; transform: translateY(8px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.home-movie-card__genre {
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-red);
    background: var(--brand-red-light);
    border-radius: var(--radius-full);
}

/* ---- Widget Row ---- */
.home-widgets-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
    .home-widgets-row {
        grid-template-columns: 1fr;
    }
}

/* ---- Promotion Widget ---- */
.widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
}

.widget-card__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.widget-promo-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.widget-promo-item:last-child {
    border-bottom: none;
}

.widget-promo-item:hover {
    background: var(--bg-elevated);
    margin: 0 calc(-1 * var(--space-3));
    padding-left: var(--space-3);
    padding-right: var(--space-3);
    border-radius: var(--radius-md);
}

.widget-promo-item__thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.widget-promo-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-promo-item__info {
    flex: 1;
    min-width: 0;
}

.widget-promo-item__title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget-promo-item__date {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* ---- Blog Preview Section ---- */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

@media (max-width: 900px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog card — glassmorphism with red gradient bottom border (mockup style) */
.blog-card {
    background: rgba(20, 20, 35, 0.75);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    position: relative;
}

/* Shimmer top edge */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.12) 50%, transparent 90%);
    z-index: 1;
}

/* Red gradient bottom border */
.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), #9333ea, var(--brand-red));
    background-size: 200% 100%;
    opacity: 0.5;
    transition: opacity 0.35s ease, background-position 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(226,51,64,0.12);
    border-color: rgba(226,51,64,0.18);
    background: rgba(24, 24, 42, 0.85);
}

.blog-card:hover::after {
    opacity: 1;
    background-position: 100% 0;
}

.blog-card__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-elevated);
}

.blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__thumb img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: var(--space-3) var(--space-4) var(--space-4);
}

.blog-card__category {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
}

.blog-card__title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: var(--space-1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title {
    color: #fff;
}

.blog-card__date {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}


/* ---- Footer ---- */
.site-footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.7);
    padding: var(--space-10) var(--space-8) var(--space-6);
    margin-top: var(--space-10);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.footer-brand__icon {
    font-size: 2rem;
}

.footer-brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    color: #fff;
}

.footer-about {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-col__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.footer-col__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-col__links a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer-col__links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-3);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--brand-red);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.35);
}

/* Banner responsive */
@media (max-width: 768px) {
    .hero-banner { height: 280px; }
    .hero-banner__title { font-size: 1.4rem; }
    .hero-banner__info { padding: var(--space-5); }
}

/* ==========================================
   AUTH MODAL
   ========================================== */
.auth-modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-6);
    opacity: 0; transition: opacity 0.3s;
}
.auth-modal-overlay.active { opacity: 1; }

.auth-modal {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); width: 100%; max-width: 420px;
    position: relative; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    transform: translateY(20px); transition: transform 0.3s;
}
.auth-modal-overlay.active .auth-modal { transform: translateY(0); }

.auth-modal__close {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    width: 32px; height: 32px; border-radius: var(--radius-full);
    background: var(--bg-elevated); border: none;
    color: var(--text-secondary); font-size: 18px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition-fast);
}
.auth-modal__close:hover { background: var(--accent-rose-soft); color: var(--accent-rose); }

.auth-modal__tabs {
    display: flex; border-bottom: 1px solid var(--border-subtle);
}
.auth-tab {
    flex: 1; padding: 16px; text-align: center; cursor: pointer;
    font-weight: 600; font-size: var(--text-sm);
    color: var(--text-tertiary); border: none; background: none;
    border-bottom: 2px solid transparent; transition: all 0.2s;
    font-family: inherit;
}
.auth-tab:hover { color: var(--text-primary); }
.auth-tab.active { color: var(--brand-red); border-bottom-color: var(--brand-red); }

.auth-modal__body { padding: var(--space-5); }

.auth-form { display: flex; flex-direction: column; gap: var(--space-4); }

.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label {
    font-size: var(--text-xs); font-weight: 600;
    color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.03em;
}
.auth-field input {
    padding: 10px 14px; border-radius: var(--radius-md);
    border: 1px solid var(--border-default); background: var(--bg-input);
    color: var(--text-primary); font-size: var(--text-sm); font-family: inherit;
    transition: border-color var(--transition-fast);
}
.auth-field input:focus { outline: none; border-color: var(--brand-red); }

.auth-error { color: #ef4444; font-size: var(--text-xs); min-height: 16px; }

.auth-submit {
    padding: 12px; border: none; border-radius: var(--radius-md);
    background: var(--brand-red); color: #fff;
    font-size: var(--text-sm); font-weight: 700; font-family: inherit;
    cursor: pointer; transition: all var(--transition-fast);
}
.auth-submit:hover { background: #c42030; transform: translateY(-1px); }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Avatar grid */
.auth-avatar-grid {
    display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px;
}
.auth-avatar-btn {
    width: 100%; aspect-ratio: 1; border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md); background: var(--bg-elevated);
    font-size: 20px; cursor: pointer; transition: all 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.auth-avatar-btn:hover { border-color: var(--brand-red); transform: scale(1.1); }
.auth-avatar-btn.selected { border-color: var(--brand-red); background: rgba(226,51,64,0.1); box-shadow: 0 0 0 2px rgba(226,51,64,0.3); }

/* CAPTCHA */
.auth-captcha-field { position: relative; }
.auth-captcha-q {
    color: var(--brand-red); font-weight: 700; font-size: var(--text-sm);
}
.auth-captcha-refresh {
    position: absolute; right: 8px; bottom: 8px;
    background: none; border: none; font-size: 16px; cursor: pointer;
    opacity: 0.6; transition: opacity 0.2s;
}
.auth-captcha-refresh:hover { opacity: 1; }

/* ==========================================
   SIDEBAR USER BADGE
   ========================================== */
.sidebar__login-btn { color: var(--brand-red) !important; }
.sidebar__user-badge {
    display: flex; align-items: center; gap: var(--space-2);
    padding: 8px 16px; margin: 4px 12px; border-radius: var(--radius-md);
    background: var(--bg-elevated); cursor: pointer;
    transition: all var(--transition-fast);
}
.sidebar__user-badge:hover { background: var(--brand-red-light); }
.user-badge__avatar {
    width: 28px; height: 28px; border-radius: var(--radius-full);
    background: var(--bg-card); display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.user-badge__name {
    font-size: var(--text-xs); font-weight: 600; color: var(--text-primary);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    flex: 1;
}
.user-badge__logout {
    background: none; border: none; color: var(--text-tertiary);
    cursor: pointer; font-size: 12px; padding: 2px 4px; border-radius: 4px;
    transition: all 0.2s;
}
.user-badge__logout:hover { color: #ef4444; background: rgba(239,68,68,0.1); }
.sidebar-collapsed .sidebar__user-badge .user-badge__name,
.sidebar-collapsed .sidebar__user-badge .user-badge__logout { display: none; }

/* ==========================================
   STAR RATING
   ========================================== */
.star-rating {
    display: flex; flex-direction: column; gap: var(--space-2);
    padding: var(--space-3); background: var(--bg-elevated);
    border-radius: var(--radius-lg); border: 1px solid var(--border-subtle);
}
.star-rating__header {
    display: flex; align-items: center; justify-content: space-between;
}
.star-rating__label {
    font-size: var(--text-xs); font-weight: 600; color: var(--text-tertiary);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.star-rating__avg {
    font-family: var(--font-display); font-size: var(--text-lg);
    font-weight: 800; color: var(--accent-gold);
}
.star-rating__stars {
    display: flex; gap: 4px;
}
.star-rating__star {
    font-size: 28px; cursor: pointer; transition: transform 0.15s, filter 0.15s;
    background: none; border: none; padding: 0; line-height: 1;
    filter: grayscale(1) opacity(0.3);
}
.star-rating__star.filled { filter: none; }
.star-rating__star.hover-fill { filter: none; transform: scale(1.15); }
.star-rating__star:hover { transform: scale(1.2); }

.star-rating__count {
    font-size: var(--text-xs); color: var(--text-tertiary);
}
.star-rating__login-hint {
    font-size: var(--text-xs); color: var(--brand-red);
    cursor: pointer; font-weight: 500;
}
.star-rating__login-hint:hover { text-decoration: underline; }
.star-rating__user-score {
    font-size: var(--text-xs); color: var(--accent-emerald); font-weight: 600;
}

/* Stacked avatars */
.star-rating__raters {
    display: flex; align-items: center; gap: 0; margin-top: var(--space-1);
}
.rater-avatar {
    width: 24px; height: 24px; border-radius: var(--radius-full);
    background: var(--bg-card); border: 2px solid var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; margin-left: -6px; position: relative;
    cursor: default;
}
.rater-avatar:first-child { margin-left: 0; }
.rater-avatar:hover { z-index: 2; transform: scale(1.15); }
.rater-avatar--more {
    background: var(--brand-red); color: #fff;
    font-size: 9px; font-weight: 700;
}

/* ==========================================
   BOOKING / MASCOT PAGE
   ========================================== */
.mascot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mascot-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    animation: mascotFadeIn 0.6s ease both;
}

.mascot-card:nth-child(1) { animation-delay: 0s; }
.mascot-card:nth-child(2) { animation-delay: 0.08s; }
.mascot-card:nth-child(3) { animation-delay: 0.16s; }
.mascot-card:nth-child(4) { animation-delay: 0.24s; }
.mascot-card:nth-child(5) { animation-delay: 0.32s; }
.mascot-card:nth-child(6) { animation-delay: 0.40s; }
.mascot-card:nth-child(7) { animation-delay: 0.48s; }
.mascot-card:nth-child(8) { animation-delay: 0.56s; }

@keyframes mascotFadeIn {
    from { opacity: 0; transform: translateY(24px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.mascot-card__glow {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(226,51,64,0.4), rgba(147,51,234,0.4), rgba(59,130,246,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(1px);
}

.mascot-card:hover .mascot-card__glow { opacity: 1; }

.mascot-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 12px 40px rgba(226,51,64,0.15), 0 0 60px rgba(147,51,234,0.08);
}

.mascot-card__img-wrap {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: mascotFloat 3s ease-in-out infinite;
}

/* Stagger the idle float so each mascot moves at different timing */
.mascot-card:nth-child(1) .mascot-card__img-wrap { animation-delay: 0s; }
.mascot-card:nth-child(2) .mascot-card__img-wrap { animation-delay: -0.4s; }
.mascot-card:nth-child(3) .mascot-card__img-wrap { animation-delay: -0.8s; }
.mascot-card:nth-child(4) .mascot-card__img-wrap { animation-delay: -1.2s; }
.mascot-card:nth-child(5) .mascot-card__img-wrap { animation-delay: -1.6s; }
.mascot-card:nth-child(6) .mascot-card__img-wrap { animation-delay: -2.0s; }
.mascot-card:nth-child(7) .mascot-card__img-wrap { animation-delay: -2.4s; }
.mascot-card:nth-child(8) .mascot-card__img-wrap { animation-delay: -2.8s; }

/* Gentle idle float — mascot bobs up and down like breathing */
@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.mascot-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: filter 0.4s ease, opacity 0.3s ease;
}

/* Video source: hidden, only used as data source for canvas */
.mascot-card__img-wrap .mascot-video {
    display: none;
}

/* Canvas: renders video frames with transparent background */
.mascot-card__img-wrap .mascot-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* On hover: hide img, show canvas */
.mascot-card:hover .mascot-card__img-wrap img {
    opacity: 0;
}

.mascot-card:hover .mascot-card__img-wrap .mascot-canvas {
    opacity: 1;
}

.mascot-card__name {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.mascot-card__followers {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 600;
    color: rgba(226,51,64,0.8);
    background: rgba(226,51,64,0.1);
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
}

.mascot-total {
    margin-top: 32px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(226,51,64,0.08) 0%, rgba(147,51,234,0.05) 100%);
    border: 1px solid rgba(226,51,64,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.mascot-total__icon { font-size: 24px; }
.mascot-total strong { color: var(--brand-red); font-size: 18px; }

@media (max-width: 1200px) {
    .mascot-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .mascot-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mascot-card__img-wrap { width: 80px; height: 80px; }
}

/* ---- Insight Modal ---- */
.fanpage-modal {
    width: 640px;
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
}

.fanpage-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fanpage-modal__close:hover { background: rgba(226,51,64,0.6); transform: scale(1.1); }
.fanpage-modal__header { display: none; }
.fanpage-modal__body { padding: 0 !important; overflow-y: auto; }

.insight-modal { padding: 0; }

/* Hero */
.insight-hero {
    position: relative;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
}

.insight-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226,51,64,0.18) 0%, rgba(147,51,234,0.12) 50%, rgba(59,130,246,0.08) 100%);
}

.insight-hero__mascot {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.insight-hero__text {
    position: relative;
    z-index: 1;
}

.insight-hero__text h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.insight-hero__followers { display: flex; align-items: baseline; gap: 6px; }
.insight-hero__count { font-size: 16px; font-weight: 700; color: var(--brand-red); }
.insight-hero__label { font-size: 12px; color: rgba(255,255,255,0.5); }

.insight-hero__btn {
    position: relative;
    z-index: 1;
    margin-left: auto;
    flex-shrink: 0;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(226,51,64,0.15) 0%, rgba(226,51,64,0.85) 100%);
    border: 1px solid rgba(226,51,64,0.3);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.insight-hero__btn:hover {
    background: linear-gradient(135deg, rgba(226,51,64,0.3) 0%, rgba(226,51,64,1) 100%);
    box-shadow: 0 4px 20px rgba(226,51,64,0.35);
    transform: translateY(-1px);
}

/* KPI Cards */
.insight-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px 20px;
}

.insight-kpi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
}

.insight-kpi__icon {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.5);
}

.insight-kpi__icon svg {
    width: 22px;
    height: 22px;
}

.insight-kpi__value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.insight-kpi__label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}

.insight-kpi__change {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
}

.insight-kpi__change--up {
    color: #22c55e;
    background: rgba(34,197,94,0.1);
}

.insight-kpi__change--down {
    color: #ef4444;
    background: rgba(239,68,68,0.1);
}

/* Section */
.insight-section {
    padding: 16px 20px;
}

.insight-section__title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Gender Legend */
.insight-gender-legend {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    padding: 0 20px;
}

.insight-gender-legend__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.insight-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.insight-dot--f { background: rgba(147,197,253,0.7); }
.insight-dot--m { background: rgba(59,130,246,0.9); }

/* Age Chart */
.insight-age-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 0 20px 8px;
    height: 120px;
}

.insight-age-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.insight-age-bars {
    flex: 1;
    width: 100%;
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.insight-age-bar {
    flex: 1;
    min-height: 3px;
    border-radius: 3px 3px 0 0;
    transition: height 0.6s ease;
}

.insight-age-bar--f { background: rgba(147,197,253,0.6); }
.insight-age-bar--m { background: rgba(59,130,246,0.85); }

.insight-age-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

/* Geo Grid */
.insight-geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.insight-geo-grid .insight-section {
    padding: 16px 20px;
}

.insight-geo-grid .insight-section:first-child {
    border-right: 1px solid rgba(255,255,255,0.06);
}

/* Horizontal Bar */
.insight-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.insight-bar-row__name {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    width: 55px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.insight-bar-row__track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    overflow: hidden;
}

.insight-bar-row__fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(226,51,64,0.6), rgba(226,51,64,0.9));
    transition: width 0.8s ease;
}

.insight-bar-row__fill--alt {
    background: linear-gradient(90deg, rgba(59,130,246,0.5), rgba(59,130,246,0.9));
}

.insight-bar-row__pct {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

/* Footer */
.insight-footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
    .insight-kpis { grid-template-columns: repeat(2, 1fr); }
    .insight-geo-grid { grid-template-columns: 1fr; }
    .fanpage-modal { border-radius: 16px 16px 0 0; }
}

/* ==========================================
   LIGHT THEME — Home Page Overrides
   ========================================== */

/* Hero Banner — brighten */
[data-theme="light"] .hero-banner {
    background: #e8e8ed;
}

[data-theme="light"] .hero-banner__backdrop {
    filter: brightness(0.7);
}

[data-theme="light"] .hero-banner__overlay {
    background: linear-gradient(
        to right,
        rgba(20,20,40,0.7) 0%,
        rgba(20,20,40,0.4) 45%,
        rgba(20,20,40,0.1) 75%,
        transparent 100%
    ),
    linear-gradient(
        to top,
        rgba(20,20,40,0.6) 0%,
        transparent 40%
    );
}

[data-theme="light"] .hero-banner__title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

[data-theme="light"] .hero-banner__meta,
[data-theme="light"] .hero-banner__desc {
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Trailer button — visible on banner */
[data-theme="light"] .hero-banner__btn--trailer {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
}

[data-theme="light"] .hero-banner__dot {
    background: rgba(0,0,0,0.3);
}

[data-theme="light"] .hero-banner__dot.active {
    background: var(--brand-red);
}

[data-theme="light"] .hero-banner__thumb-strip {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
}

/* Section Headers */
[data-theme="light"] .section-header__title {
    color: #1a1a2e;
}

[data-theme="light"] .section-header__accent {
    color: var(--text-secondary);
}

/* Movie Cards */
[data-theme="light"] .movie-card {
    background: var(--bg-card);
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .movie-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(226,51,64,0.2);
}

[data-theme="light"] .movie-card__title {
    color: #1a1a2e;
}

[data-theme="light"] .movie-card__meta {
    color: var(--text-secondary);
}

/* Carousel arrows */
[data-theme="light"] .carousel-btn {
    background: rgba(255,255,255,0.9);
    color: #1a1a2e;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

[data-theme="light"] .carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Bento Grid */
[data-theme="light"] .bento-review-card {
    background: var(--bg-card);
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .bento-review-card__title {
    color: #1a1a2e;
}

[data-theme="light"] .bento-review-card__desc {
    color: var(--text-secondary);
}

[data-theme="light"] .bento-revenue-card {
    background: var(--bg-card);
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .bento-upcoming-card {
    background: var(--bg-card);
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .bento-upcoming-card__title {
    color: #1a1a2e;
}

/* Stat cards */
[data-theme="light"] .stat-card {
    background: var(--bg-card);
    border-color: var(--border-default);
}

[data-theme="light"] .stat-card__label {
    color: var(--text-secondary);
}

[data-theme="light"] .stat-card__value {
    color: #1a1a2e;
}

/* Blog Section */
[data-theme="light"] .blog-card {
    background: var(--bg-card);
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .blog-card:hover {
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .blog-card__title {
    color: #1a1a2e;
}

[data-theme="light"] .blog-card__desc {
    color: var(--text-secondary);
}

/* Mascot Section — FORCE DARK (canvas black-removal needs dark bg) */
[data-theme="light"] .mascot-section {
    background: #0e0e18;
    border-radius: var(--radius-xl);
    margin: var(--space-4) 0;
}

[data-theme="light"] .mascot-section .section-header__title,
[data-theme="light"] .mascot-section .section-title {
    color: #eaeaf0;
}

[data-theme="light"] .mascot-card {
    background: #161625;
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
}

[data-theme="light"] .mascot-card:hover {
    border-color: rgba(226,51,64,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

[data-theme="light"] .mascot-card__name {
    color: #eaeaf0;
}

[data-theme="light"] .mascot-card__followers {
    color: var(--brand-red);
}

[data-theme="light"] .mascot-card__glow {
    opacity: 0.5;
}

/* Booking Page — FORCE DARK (same reason as mascot section) */
[data-theme="light"] #page-booking {
    background: linear-gradient(135deg, 
        rgba(226,51,64,0.03) 0%, 
        rgba(226,51,64,0.08) 30%,
        rgba(226,51,64,0.15) 70%, 
        rgba(226,51,64,0.22) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226,51,64,0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

[data-theme="light"] #page-booking .page-title {
    color: #1a1a2e;
}

[data-theme="light"] #page-booking .page-description {
    color: var(--text-secondary);
}

/* Mascot cards inside booking — dark cards on glass bg */
[data-theme="light"] #page-booking .mascot-card {
    background: rgba(14,14,24,0.85);
    backdrop-filter: blur(12px);
    border-color: rgba(226,51,64,0.12);
}

[data-theme="light"] #page-booking .mascot-card:hover {
    border-color: rgba(226,51,64,0.35);
    box-shadow: 0 4px 24px rgba(226,51,64,0.15);
}

[data-theme="light"] #page-booking .mascot-card__name {
    color: #eaeaf0;
}

/* Footer */
[data-theme="light"] .site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-default);
}

[data-theme="light"] .footer-brand__name {
    color: #1a1a2e;
}

[data-theme="light"] .footer-about {
    color: #5e5e72;
}

[data-theme="light"] .footer-col__title {
    color: #1a1a2e;
}

[data-theme="light"] .footer-col__links a,
[data-theme="light"] .footer-col__links li {
    color: #5e5e72;
}

[data-theme="light"] .footer-col__links a:hover {
    color: var(--brand-red);
}

[data-theme="light"] .footer-social a {
    background: rgba(0,0,0,0.06);
    color: #5e5e72;
}

[data-theme="light"] .footer-social a:hover {
    background: var(--brand-red);
    color: #fff;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    color: #8e8ea2;
}

/* Featured Upcoming */
[data-theme="light"] .featured-upcoming-card {
    background: var(--bg-card);
    border-color: var(--border-default);
}

/* Fanpage Modal — Light */
[data-theme="light"] .fanpage-modal-overlay {
    background: rgba(0,0,0,0.3);
}

[data-theme="light"] .fanpage-modal {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

[data-theme="light"] .fanpage-modal__close {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.1);
    color: #1a1a2e;
}

[data-theme="light"] .fanpage-modal__close:hover {
    background: rgba(226,51,64,0.6);
    color: #fff;
}

/* Hero */
[data-theme="light"] .insight-hero__text h3 {
    color: #1a1a2e;
}

[data-theme="light"] .insight-hero__label {
    color: rgba(0,0,0,0.45);
}

/* KPI */
[data-theme="light"] .insight-kpi {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .insight-kpi__value {
    color: #1a1a2e;
}

[data-theme="light"] .insight-kpi__label {
    color: #6b6b80;
}

[data-theme="light"] .insight-kpi__icon {
    color: #8e8ea2;
}

/* Section titles */
[data-theme="light"] .insight-section__title {
    color: #5e5e72;
}

/* Gender legend */
[data-theme="light"] .insight-gender-legend__item {
    color: #5e5e72;
}

/* Age labels */
[data-theme="light"] .insight-age-label {
    color: #8e8ea2;
}

/* Geo grid */
[data-theme="light"] .insight-geo-grid {
    border-top-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .insight-geo-grid .insight-section:first-child {
    border-right-color: rgba(0,0,0,0.08);
}

/* Bar rows */
[data-theme="light"] .insight-bar-row__name {
    color: #5e5e72;
}

[data-theme="light"] .insight-bar-row__track {
    background: rgba(0,0,0,0.05);
}

[data-theme="light"] .insight-bar-row__pct {
    color: #5e5e72;
}

/* Footer */
[data-theme="light"] .insight-footer {
    border-top-color: rgba(0,0,0,0.08);
    color: #8e8ea2;
}

/* Auth Modal */
[data-theme="light"] .auth-modal-overlay {
    background: rgba(0,0,0,0.3);
}

[data-theme="light"] .auth-modal {
    background: var(--bg-card);
    border-color: var(--border-default);
}

[data-theme="light"] .auth-modal input {
    background: var(--bg-input);
    border-color: var(--border-default);
    color: var(--text-primary);
}

/* Insight KPIs */
[data-theme="light"] .insight-kpi {
    background: var(--bg-card);
    border-color: var(--border-default);
}

[data-theme="light"] .insight-kpi__label {
    color: var(--text-secondary);
}

[data-theme="light"] .insight-kpi__value {
    color: #1a1a2e;
}

/* General hardcoded dark overrides */
[data-theme="light"] .rating-stars__bg {
    color: rgba(0,0,0,0.15);
}

/* Badge/tag overrides */
[data-theme="light"] .mpaa-badge,
[data-theme="light"] .hero-banner__tag {
    background: rgba(0,0,0,0.06);
    color: var(--text-secondary);
}

/* ---- Hardcoded #fff text → dark in light mode ---- */

/* Movie carousel card title & badge */
[data-theme="light"] .home-movie-card__title {
    color: #1a1a2e;
}

[data-theme="light"] .home-movie-card__badge {
    color: #fff; /* badge on poster keeps white */
}

/* Bento grid */
[data-theme="light"] .bento-review__title {
    color: #1a1a2e;
}

[data-theme="light"] .mini-chart__value {
    color: #1a1a2e;
}

/* Section headers with hardcoded white */
[data-theme="light"] .section-header h2,
[data-theme="light"] .section-header__title,
[data-theme="light"] .section-title {
    color: #1a1a2e;
}

/* Movie detail page */
[data-theme="light"] .movie-page__title {
    color: #1a1a2e;
}

[data-theme="light"] .movie-page__mpaa {
    color: var(--text-secondary);
}

/* Hero banner mpaa badge */
[data-theme="light"] .hero-banner__mpaa {
    color: var(--text-secondary);
    border-color: rgba(0,0,0,0.15);
}

/* Footer */
[data-theme="light"] .footer-brand__name {
    color: #1a1a2e;
}

[data-theme="light"] .footer-col__title {
    color: #1a1a2e;
}

[data-theme="light"] .footer-col__links a:hover {
    color: var(--brand-red);
}

[data-theme="light"] .footer-social a:hover {
    color: var(--brand-red);
}

/* Blog card hover title */
[data-theme="light"] .blog-card:hover .blog-card__title {
    color: var(--brand-red);
}

/* Carousel arrow hover */
[data-theme="light"] .movie-carousel__arrow:hover {
    color: #1a1a2e;
}

/* Bento upcoming card title & label with hardcoded white */
[data-theme="light"] .bento-upcoming__title,
[data-theme="light"] .bento-upcoming__name {
    color: #1a1a2e;
}

[data-theme="light"] .bento-upcoming__date {
    color: var(--text-secondary);
}

/* Insight section */
[data-theme="light"] .insight-title {
    color: #1a1a2e;
}

[data-theme="light"] .insight-value {
    color: #1a1a2e;
}

/* Auth modal */
[data-theme="light"] .auth-modal__title {
    color: #1a1a2e;
}

/* Fanpage items */
[data-theme="light"] .fanpage-modal__item-name {
    color: #1a1a2e;
}

/* General white text on cards that needs dark text */
[data-theme="light"] .home-movie-card__info {
    background: var(--bg-card);
}

[data-theme="light"] .home-movie-card {
    background: var(--bg-card);
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}
