*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#0b0b0b;
    --bg-soft:#141414;
    --gold:#FFD54A;
    --text:#ffffff;
    --muted:#b8b8b8;
}

body{
    font-family:'Poppins', Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
}

.container{
    width:92%;
    max-width:1200px;
    margin:0 auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(0,0,0,0.9);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-wrap{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    align-self:stretch;
    padding-left:12px;
    text-decoration:none;
}

.logo img{
    display:block;
    width:auto;
    height:52px;
    max-width:240px;
    object-fit:contain;
}

.menu-toggle{
    display:none;
    background:none;
    border:0;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.main-nav{
    display:flex;
    gap:26px;
}

.main-nav a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
}

.main-nav a:hover{
    color:var(--gold);
}

.hero{
    min-height:calc(100vh - 76px);
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at right, rgba(245,197,66,.18), transparent 45%),
        linear-gradient(90deg,#050505 0%,#090909 55%,#111111 100%);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
}

.eyebrow{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.hero h1{
    font-family:'Cinzel', serif;
    font-size:82px;
    line-height:1;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero h1 span{
    color:var(--gold);
}

.hero-text{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:32px;
}

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.movie-meta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:25px;
}

.meta-item{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:14px 18px;
    min-width:170px;
    transition:.3s ease;
}

.meta-item:hover{
    transform:translateY(-4px);
    border-color:rgba(245,197,66,.5);
    box-shadow:0 12px 30px rgba(245,197,66,.12);
}

.meta-label{
    display:block;
    color:var(--gold);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:6px;
}

.meta-value{
    color:#fff;
    font-size:15px;
    font-weight:600;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    transition:all .3s ease;
}

.btn-gold{
    background:var(--gold);
    color:#000;
}

.btn-outline{
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
}

.btn-outline:hover{
    border-color:var(--gold);
    color:var(--gold);
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-gold:hover{
    box-shadow:0 12px 30px rgba(245,197,66,.45);
}

footer{
    background:#000;
    color:var(--muted);
    text-align:center;
    padding:28px 20px;
}

.hero-grid{
    display:grid;
    grid-template-columns:minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items:center;
    gap:60px;
    padding:40px 0;
}

.hero-poster{
    position:relative;
    text-align:center;
}

.hero-poster::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:20px;
    top:10px;
    background:radial-gradient(circle, rgba(255,213,74,.22), transparent 65%);
    filter:blur(20px);
    z-index:0;
}

.hero-poster img,
.hero-poster .movie-meta{
    position:relative;
    z-index:1;
}

.hero-poster img{
    display:block;
    width:100%;
    max-width:560px;
    height:auto;
    margin:0 auto;
    border-radius:20px;
    box-shadow:0 35px 80px rgba(0,0,0,.75);
    transition:.4s;
}

.hero-poster img:hover{
    transform:translateY(-8px);
}

.countdown-section{
    background:#050505;
    padding:80px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.countdown-section h2{
    font-family:'Cinzel', serif;
    font-size:42px;
    margin-bottom:35px;
}

.countdown{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    max-width:760px;
    margin:0 auto;
}

.countdown div{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:28px 18px;
}

.countdown strong{
    display:block;
    color:var(--gold);
    font-size:44px;
    line-height:1;
}

.countdown span{
    display:block;
    color:var(--muted);
    margin-top:10px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.news-section{
    background:#0b0b0b;
    padding:90px 0;
}

.section-head{
    text-align:center;
    margin-bottom:45px;
}

.section-head h2{
    font-family:'Cinzel', serif;
    font-size:44px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(340px, 380px));
    justify-content:center;
    gap:24px;
}

.news-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    transition:.3s ease;
}

.news-card:hover{
    transform:translateY(-6px);
    border-color:rgba(255,213,74,.45);
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-content{
    padding:24px;
}

.news-content span{
    color:var(--gold);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:700;
}

.news-content h3{
    margin:12px 0;
    font-size:20px;
    line-height:1.4;
}

.news-content p{
    color:var(--muted);
    line-height:1.7;
    font-size:14px;
}

.news-content a{
    display:inline-block;
    color:var(--gold);
    text-decoration:none;
    margin-top:18px;
    font-weight:700;
}

/* ===========================
   ARTICLE PAGE
=========================== */

.article-page{
    padding:80px 0;
    background:#0b0b0b;
}

.article-content{
    max-width:780px;
    margin:0 auto;
}

.article-content h1{
    max-width:none;
    width:100%;
    font-family:'Poppins',sans-serif;
    font-size:45px;
    line-height:1.1;
    font-weight:700;
    letter-spacing:-1.5px;
    margin:20px 0 24px;
    color:#fff;
}

@media (max-width:768px){
    .article-content h1{
        font-size:30px;
        line-height:1.15;
        letter-spacing:-0.8px;
    }
}

.article-meta{
    color:var(--muted);
    margin-bottom:30px;
    font-size:15px;
}

.article-image{
    display:block;
    width:100%;
    max-height:560px;
    object-fit:cover;
    object-position:center;
    border-radius:18px;
    margin-bottom:35px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.article-excerpt{
    font-size:24px;
    line-height:1.8;
    color:#f5f5f5;
    font-weight:500;
    margin-bottom:35px;
}

.article-body{
    font-size:19px;
    line-height:2;
    color:#d7d7d7;
}

.article-body p{
    margin-bottom:28px;
}


.article-body img{
    display:block;
    max-width:100%;
    width:auto;
    height:auto;
    max-height:650px;
    margin:35px auto;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    font-size:14px;
    color:var(--muted);
    flex-wrap:wrap;
}

.breadcrumb a{
    color:var(--muted);
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:var(--gold);
}

.back-link{
    display:inline-block;
    margin-bottom:28px;
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.back-link:hover{
    transform:translateX(-5px);
}



@media screen and (max-width: 768px){
    
.hero-grid{
    grid-template-columns:1fr;
}

.hero-poster{
    margin-top:40px;
}

.hero-poster img{
    max-width:340px;
}

.logo{
    display:flex;
    align-items:center;
    padding-left:8px;
}
    
.logo img{
    height:52px;
    width:auto;
}    
    .nav-wrap{
    height:76px;
    padding:0;
    flex-direction:row;
    gap:0;
}

    .main-nav{
        gap:14px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        min-height:85vh;
        text-align:center;
        padding:80px 0;
    }

    .hero h1{
        font-size:48px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-actions{
        justify-content:center;
    }
    
.movie-meta{
    justify-content:center;
}

.meta-item{
    width:100%;
    max-width:320px;
}

.countdown{
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.countdown strong{
    font-size:36px;
}

.countdown-section h2{
    font-size:34px;
    line-height:1.2;
}

.menu-toggle{
    display:block;
    margin-left:auto;
}

.main-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction:column;
    gap:0;
    background:#050505;
    border-top:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.65);
    z-index:999;
}

.main-nav.active{
    display:flex;
}

.main-nav a{
    padding:14px 0;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.news-grid{
    grid-template-columns:1fr;
    gap:24px;
}

.section-head h2{
    font-size:34px;
    line-height:1.2;
}

.news-card img{
    height:220px;
}

.news-content{
    padding:20px;
}

.news-content h3{
    font-size:22px;
}

}


/* =========================
   CAST PAGE
========================= */

.cast-page{
    padding:20px 0 100px;
}

.cast-grid{
    display:flex;
    flex-wrap:wrap;
    gap:35px;
    justify-content:center;
}

.cast-card{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    transition:.3s;
}

.cast-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.cast-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
}

.cast-card h3{
    margin:22px 0 8px;
    color:#fff;
    font-size:28px;
}

.character{
    color:#d4af37;
    font-weight:600;
    margin-bottom:8px;
}

.role{
    display:inline-block;
    margin-bottom:20px;
    color:#bbb;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.cast-card .btn{
    margin:0 25px 25px;
    display:block;
}


.cast-card{
    display:block;
    width:100%;
    max-width:280px;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    transition:.3s;
}

.cast-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.cast-info{
    padding:22px;
}

.cast-card h3{
    color:#fff;
    margin:0 0 8px;
}

.cast-card .role{
    display:block;
    margin-top:8px;
}


.page-hero{
    padding:70px 0 30px;
}

.page-hero h1{
    font-size:52px;
    margin:12px 0;
}

.page-hero p{
    max-width:700px;
    line-height:1.9;
    color:#d6d6d6;
}


.prediction-notice{
    margin:30px 0;
    padding:18px 22px;

    background:rgba(244,197,66,.08);
    border:1px solid rgba(244,197,66,.25);
    border-left:4px solid var(--gold);

    border-radius:12px;

    color:#d8d8d8;
    line-height:1.7;
    font-size:15px;
}

.prediction-notice strong{
    color:var(--gold);
}


/* ==========================
   ACTOR PROFILE
========================== */

.actor-profile{
    padding:80px 0;
}

.actor-profile-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:start;
}

.actor-profile-photo img{
    width:100%;
    max-height:620px;
    object-fit:cover;
}

.actor-profile-content h1{
    font-size:60px;
    line-height:1.1;
}

.actor-meta{
    display:grid;
    grid-template-columns:repeat(2,minmax(180px,1fr));
    gap:20px;
    margin-bottom:40px;
}

.actor-meta div{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:18px;
}

.actor-meta span{
    display:block;
    color:#999;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.actor-meta strong{
    color:#fff;
    font-size:18px;
}

.actor-biography h2{
    margin-bottom:20px;
}

.actor-biography p{
    line-height:1.9;
    color:#ddd;
}

.actor-biography{
    max-width:760px;
    margin-top:20px;
}

.actor-profile-photo{
    padding-top:40px;
}

.actor-profile .btn{
    margin-top:40px;
}

@media(max-width:900px){

.actor-profile-grid{
    grid-template-columns:1fr;
}

.actor-profile-photo{
    max-width:350px;
    margin:auto;
}

.actor-meta{
    grid-template-columns:1fr;
}

}


/* ==========================
   GALLERY PAGE
========================== */

.gallery-filters{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:35px 0 45px;
}

.gallery-filters a{
    padding:12px 22px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.gallery-filters a:hover,
.gallery-filters a.active{
    background:#f5c542;
    color:#111;
    border-color:#f5c542;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,380px));
justify-content:start;
    gap:30px;
}


.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    display:block;
    background:#171717;
}

.gallery-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.45s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:24px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.88)
    );
}

.gallery-card-overlay span{
    color:#f5c542;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.gallery-card-overlay h3{
    font-size:28px;
    margin-bottom:10px;
}

.gallery-card-overlay p{
    color:#ddd;
    line-height:1.6;
}

.gallery-empty{
    text-align:center;
    padding:120px 20px;
    color:#999;
}



.gallery-card{
    color:#fff;
    text-decoration:none;
}

.gallery-card:visited{
    color:#fff;
}

.gallery-card-overlay h3{
    color:#fff;
}

.gallery-card img{
    width:100%;
    height:360px;
    object-fit:cover;
    object-position:center top;
    display:block;
    transition:.45s;
}

.gallery-page{
    padding:10px 0 100px;
}


/* ==========================
   GALLERY DETAIL PAGE
========================== */

.gallery-detail{
    padding:100px 0 120px;
}

.gallery-detail-grid{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;
    align-items:start;
}

.gallery-detail-image img{
    width:100%;
    max-height:720px;
    object-fit:contain;
    background:#111;
    border-radius:20px;
    display:block;
}

.gallery-detail-content h1{
    font-size:54px;
    margin:12px 0 30px;
}

.gallery-detail-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.gallery-detail-meta div{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:20px;
}

.gallery-detail-meta span{
    display:block;
    color:#999;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.gallery-detail-meta strong{
    color:#fff;
    font-size:22px;
}

.gallery-detail-description{
    max-width:760px;
}

.gallery-detail-description h2{
    margin-bottom:20px;
}

.gallery-detail-description p{
    color:#ddd;
    line-height:1.9;
}

.gallery-detail-actions{
    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

@media(max-width:900px){

.gallery-detail-grid{
    grid-template-columns:1fr;
}

.gallery-detail-content h1{
    font-size:40px;
}

.gallery-detail-meta{
    grid-template-columns:1fr;
}

}


/* ==========================
   TRAILER PAGE
========================== */

.trailer-page{
    padding:20px 0 100px;
}

.featured-trailer{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
    gap:50px;
    align-items:center;
    margin-top:20px;
}

.featured-trailer-image{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
    background:#111;
    aspect-ratio:16/9;
}

.featured-trailer-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.featured-trailer-image:hover img{
    transform:scale(1.04);
}

.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:76px;
    height:76px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f5c542;
    color:#111;
    font-size:28px;
    box-shadow:0 12px 35px rgba(0,0,0,.45);
}

.featured-trailer-content h2{
    font-size:46px;
    line-height:1.15;
    margin:12px 0 20px;
}

.featured-trailer-content > p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:28px;
}

.featured-trailer-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:22px;
}

.featured-trailer-meta span{
    padding:8px 14px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    color:#ddd;
    font-size:13px;
}

.trailer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:30px;
}

.trailer-card{
    display:block;
    overflow:hidden;
    border-radius:18px;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    text-decoration:none;
    color:#fff;
}

.trailer-card-image{
    position:relative;
    aspect-ratio:16/9;
    overflow:hidden;
}

.trailer-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.trailer-card .play-button{
    width:58px;
    height:58px;
    font-size:20px;
}

.trailer-card-content{
    padding:20px;
}

.trailer-card-content span{
    color:#f5c542;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.trailer-card-content h3{
    margin:10px 0;
    color:#fff;
}

.trailer-card-content p{
    color:#aaa;
}

@media(max-width:900px){

    .featured-trailer{
        grid-template-columns:1fr;
        gap:30px;
    }

    .featured-trailer-content h2{
        font-size:38px;
    }

}

@media(max-width:600px){

    .featured-trailer-content h2{
        font-size:32px;
    }

    .play-button{
        width:62px;
        height:62px;
        font-size:22px;
    }

}

/* ==========================
   TRAILER DETAIL PAGE
========================== */

.trailer-detail{
    padding:70px 0 100px;
}

.trailer-player-wrap{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    border-radius:20px;
    background:#111;
    margin-bottom:50px;
}

.trailer-player-wrap iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

.trailer-detail-content{
    max-width:900px;
}

.trailer-detail-content h1{
    font-size:54px;
    line-height:1.15;
    margin:12px 0 30px;
}

.trailer-detail-meta{
    display:grid;
    grid-template-columns:repeat(3,minmax(180px,1fr));
    gap:20px;
    margin-bottom:40px;
}

.trailer-detail-meta div{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:20px;
}

.trailer-detail-meta span{
    display:block;
    color:#999;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.trailer-detail-meta strong{
    color:#fff;
    font-size:18px;
}

.trailer-description{
    max-width:800px;
}

.trailer-description h2{
    margin-bottom:18px;
}

.trailer-description p{
    color:#ddd;
    line-height:1.9;
}

.trailer-detail-actions{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:35px;
}

.related-trailers{
    padding:20px 0 100px;
}

@media(max-width:800px){

    .trailer-detail-content h1{
        font-size:40px;
    }

    .trailer-detail-meta{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .trailer-detail{
        padding:40px 0 80px;
    }

    .trailer-detail-content h1{
        font-size:32px;
    }

}


.lite-youtube-button{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    padding:0;
    border:0;
    cursor:pointer;
    background:#111;
}

.lite-youtube-button img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.lite-youtube-button .play-button{
    pointer-events:none;
}


/* ===========================
   BOX OFFICE PAGE
=========================== */

.box-office-page{
    padding:70px 0;
}

.box-office-summary{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:50px;
}

.box-office-stat{
    background:#171717;
    border:1px solid #2b2b2b;
    border-radius:16px;
    padding:28px;
    transition:.25s;
}

.box-office-stat:hover{
    border-color:#f5c542;
    transform:translateY(-3px);
}

.box-office-stat span{
    display:block;
    color:#999;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.box-office-stat strong{
    font-size:32px;
    color:#fff;
    font-weight:700;
}

.box-office-table-wrap{
    overflow-x:auto;
    border-radius:16px;
}

.box-office-table{
    width:100%;
    border-collapse:collapse;
    background:#171717;
    border:1px solid #2b2b2b;
}

.box-office-table th{
    background:#111;
    color:#f5c542;
    padding:18px;
    text-align:left;
    text-transform:uppercase;
    font-size:14px;
}

.box-office-table td{
    padding:18px;
    border-top:1px solid #2b2b2b;
}

.box-office-table tr:hover{
    background:#202020;
}

.box-office-notes-row td{
    background:#111;
    color:#ccc;
    font-style:italic;
}

.box-office-empty{
    text-align:center;
    background:#171717;
    border-radius:16px;
    padding:80px 30px;
}

@media(max-width:900px){

.box-office-summary{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.box-office-summary{
    grid-template-columns:1fr;
}

.box-office-stat strong{
    font-size:26px;
}

}


.page-hero + .box-office-page{
    margin-top:-35px;
}

.box-office-page{
    padding-top:20px;
}


.box-office-latest-update{
    margin-top:16px;
    color:#999;
    font-size:14px;
}

.box-office-latest-update strong{
    color:#f5c542;
}


.box-office-analysis{
    margin-top:35px;
    background:#171717;
    border:1px solid #2b2b2b;
    border-radius:18px;
    padding:32px;
}

.analysis-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.analysis-header span{
    font-size:28px;
}

.analysis-header h2{
    margin:0;
    font-size:28px;
    color:#fff;
}

.box-office-analysis p{
    color:#ccc;
    line-height:1.9;
    font-size:17px;
}


/* ===========================
   BOX OFFICE HERO
=========================== */

.box-office-hero{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:35px;
    align-items:start;
    margin-bottom:45px;
}

.box-office-poster{
    width:100%;
    max-width:320px;
    background:#171717;
    border:1px solid #2b2b2b;
    border-radius:14px;
    overflow:hidden;
    align-self:start;
}



.box-office-poster img{
    display:block;
    width:100%;
    height:auto;
    border-radius:14px;
}


.box-office-hero .box-office-summary{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:0;
}

.box-office-hero .box-office-stat{
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:200px;
}

.box-office-hero .box-office-stat strong{
    font-size:36px;
}

@media(max-width:900px){

    .box-office-hero{
        grid-template-columns:1fr;
    }

    .box-office-poster{
        max-width:420px;
        min-height:0;
    }

}

@media(max-width:600px){

    .box-office-hero .box-office-summary{
        grid-template-columns:1fr;
    }

    .box-office-hero .box-office-stat{
        min-height:auto;
    }

}


/* ===========================
   BOX OFFICE VERDICT
=========================== */

.box-office-verdict{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin:18px 0 30px;
    padding:10px 22px;
    border-radius:999px;
    background:linear-gradient(135deg,#f5c542,#ffdb6d);
    color:#111;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    box-shadow:0 10px 30px rgba(245,197,66,.25);
}



/* ===========================
   MOVIE INFORMATION CARDS
=========================== */

.movie-information-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    margin-top:30px;
}

.movie-information-grid > div{
    position:relative;
    overflow:hidden;
    min-height:105px;
    padding:22px;
    background:#171717;
    border:1px solid rgba(255,255,255,.09);
    border-radius:16px;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.movie-information-grid > div::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:#f5c542;
}

.movie-information-grid > div:hover{
    transform:translateY(-3px);
    border-color:rgba(245,197,66,.55);
    box-shadow:0 14px 30px rgba(0,0,0,.25);
}

.movie-information-grid span{
    display:block;
    margin-bottom:10px;
    color:#9b9b9b;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.movie-information-grid strong{
    display:block;
    color:#fff;
    font-size:18px;
    line-height:1.45;
}

.movie-verdict-badge{
    display:inline-flex;
    align-items:center;
    margin-top:18px;
    padding:10px 20px;
    border-radius:999px;
    background:linear-gradient(135deg,#f5c542,#ffda63);
    color:#111;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    box-shadow:0 10px 25px rgba(245,197,66,.2);
}

@media(max-width:700px){

    .movie-information-grid{
        grid-template-columns:1fr;
    }

    .movie-information-grid > div{
        min-height:auto;
    }

}


/* ===========================
   MOVIE SYNOPSIS
=========================== */

.movie-section{
    padding:70px 0;
}

.movie-section .section-head{
    margin-bottom:28px;
}

.movie-synopsis{
    max-width:950px;
    padding:30px;
    background:#151515;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    color:#d7d7d7;
    font-size:17px;
    line-height:1.9;
    box-shadow:0 16px 35px rgba(0,0,0,.18);
}

.movie-synopsis::first-letter{
    color:#f5c542;
    font-size:46px;
    font-weight:800;
    line-height:1;
    float:left;
    margin:8px 10px 0 0;
}

@media(max-width:700px){

    .movie-section{
        padding:50px 0;
    }

    .movie-synopsis{
        padding:22px;
        font-size:16px;
    }

}


/* ===========================
   MOVIE TRAILER SECTION
=========================== */

.movie-trailer-player{
    position:relative;
    width:100%;
    max-width:1000px;
    aspect-ratio:16/9;
    overflow:hidden;
    margin-top:28px;
    border-radius:20px;
    background:#111;
}

.movie-trailer-player iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

.movie-trailer-player .lite-youtube-button{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    padding:0;
    border:0;
    cursor:pointer;
    background:#111;
}

.movie-trailer-player .lite-youtube-button img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.movie-section .section-head h2{
    font-size:42px;
    line-height:1.2;
    max-width:900px;
}

.movie-section-button{
    display:inline-flex;
    margin-top:25px;
}

@media(max-width:700px){

    .movie-section .section-head h2{
        font-size:30px;
    }

    .movie-trailer-player{
        border-radius:14px;
    }

}


/* ===========================
   MOVIE BOX OFFICE CARDS
=========================== */

.movie-box-office-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin-top:28px;
}

.movie-box-office-grid > div{
    min-height:150px;
    padding:24px;
    background:#171717;
    border:1px solid rgba(255,255,255,.09);
    border-radius:16px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:
        transform .25s ease,
        border-color .25s ease;
}

.movie-box-office-grid > div:hover{
    transform:translateY(-3px);
    border-color:rgba(245,197,66,.55);
}

.movie-box-office-grid span{
    color:#9b9b9b;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.movie-box-office-grid strong{
    color:#fff;
    font-size:28px;
    line-height:1.2;
}

@media(max-width:900px){

    .movie-box-office-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:600px){

    .movie-box-office-grid{
        grid-template-columns:1fr;
    }

    .movie-box-office-grid > div{
        min-height:auto;
    }

}


/* ===========================
   MOVIE CAST CARDS
=========================== */

.movie-cast-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
    margin-top:28px;
}

.movie-cast-card{
    display:block;
    overflow:hidden;
    background:#171717;
    border:1px solid rgba(255,255,255,.09);
    border-radius:18px;
    color:#fff;
    text-decoration:none;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.movie-cast-card:hover{
    transform:translateY(-5px);
    border-color:rgba(245,197,66,.55);
    box-shadow:0 16px 35px rgba(0,0,0,.3);
}

.movie-cast-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.movie-cast-card > div{
    padding:20px;
}

.movie-cast-card h3{
    margin:0 0 8px;
    color:#fff;
    font-size:20px;
}

.movie-cast-card p{
    margin:0 0 8px;
    color:#f5c542;
    font-size:15px;
}

.movie-cast-card span{
    color:#999;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

@media(max-width:1000px){

    .movie-cast-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:600px){

    .movie-cast-grid{
        grid-template-columns:1fr;
    }

    .movie-cast-card img{
        height:380px;
    }

}


/* ===========================
   MOVIE GALLERY
=========================== */

.movie-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:28px;
}

.movie-gallery-item{
    display:block;
    overflow:hidden;
    border-radius:16px;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
}

.movie-gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.movie-gallery-item:hover img{
    transform:scale(1.06);
}

@media(max-width:900px){

    .movie-gallery-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:600px){

    .movie-gallery-grid{
        grid-template-columns:1fr;
    }

    .movie-gallery-item img{
        height:340px;
    }

}


/* ===========================
   MOVIE NEWS CARDS
=========================== */

.movie-news-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    margin-top:28px;
}

.movie-news-card{
    overflow:hidden;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.movie-news-card:hover{
    transform:translateY(-4px);
    border-color:rgba(245,197,66,.5);
    box-shadow:0 16px 35px rgba(0,0,0,.28);
}

.movie-news-card > a{
    display:block;
}

.movie-news-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.movie-news-card > div{
    padding:24px;
}

.movie-news-card h3{
    margin:8px 0 12px;
    font-size:23px;
    line-height:1.35;
}

.movie-news-card h3 a{
    color:#fff;
    text-decoration:none;
}

.movie-news-card h3 a:hover{
    color:#f5c542;
}

.movie-news-card > div > p:last-child{
    color:#bdbdbd;
    line-height:1.7;
}

@media(max-width:800px){

    .movie-news-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .movie-news-card img{
        height:220px;
    }

}


/* ===========================
   MOVIE PAGE SPACING CLEANUP
=========================== */

.movie-detail-page .movie-section{
    padding:55px 0;
}

.movie-detail-page .section-head{
    text-align:center;
}

.movie-detail-page .section-head .eyebrow{
    margin-bottom:12px;
}

.movie-detail-page .section-head h2{
    margin:0;
}

.movie-detail-page .movie-section-button{
    margin-top:20px;
}

@media(max-width:700px){

    .movie-detail-page .movie-section{
        padding:40px 0;
    }

}


/* ===========================
   FINAL MOVIE HERO FIX
=========================== */

/* Hide any old banner still present */
.movie-detail-banner{
    display:none !important;
}

/* Main movie hero area */
.movie-detail-hero{
    padding:60px 0;
    background:#0b0b0b;
}

/* Poster and information side by side */
.movie-detail-grid{
    display:grid;
    grid-template-columns:300px minmax(0,1fr);
    gap:45px;
    align-items:start;
}

/* Stop poster from becoming huge */
.movie-detail-poster{
    width:300px;
    max-width:100%;
    overflow:hidden;
    border-radius:18px;
    background:#171717;
    border:1px solid rgba(255,255,255,.1);
}

.movie-detail-poster img{
    display:block;
    width:100% !important;
    height:440px !important;
    max-height:440px !important;
    object-fit:cover !important;
    object-position:center !important;
}

/* Movie information */
.movie-detail-content{
    min-width:0;
}

.movie-detail-content h1{
    margin:8px 0 12px;
    font-size:54px;
    line-height:1.1;
}

/* Tablet and mobile */
@media(max-width:850px){

    .movie-detail-hero{
        padding:35px 0;
    }

    .movie-detail-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .movie-detail-poster{
        width:100%;
        max-width:380px;
        margin:0 auto;
    }

    .movie-detail-poster img{
        height:auto !important;
        max-height:none !important;
        aspect-ratio:2/3;
    }

    .movie-detail-content h1{
        font-size:38px;
    }

}


.movie-detail-hero{
    padding-top:40px;
    padding-bottom:50px;
}


/* =========================
   HOME CAST
========================= */

.home-cast-section{
    padding:90px 0;
}

.home-cast-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
    margin-top:40px;
}

.home-cast-card{
    display:block;
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    transition:.3s;
}

.home-cast-card:hover{
    transform:translateY(-8px);
    border-color:#f4c542;
}

.home-cast-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.home-cast-content{
    padding:20px;
}

.home-cast-content h3{
    color:#fff;
    font-size:22px;
    margin:0;
}

.home-section-action{
    text-align:center;
    margin-top:40px;
}


.home-cast-role{
    color:#f5c542;
    font-size:14px;
    font-weight:600;
    margin-top:6px;
}

.home-cast-character{
    display:block;
    color:#999;
    font-size:13px;
    margin-top:2px;
}


.home-cast-card img{
    width:100%;
    height:420px;
    object-fit:contain;
    background:#111;
}


.home-cast-grid{
    grid-template-columns:repeat(2, minmax(0, 360px));
    justify-content:center;
}

.home-cast-card{
    width:100%;
}

.home-cast-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:contain;
    background:#111;
}


.prediction-note{
    margin-top:20px;
    margin-bottom:22px;
    text-align:center;
    color:#9a9a9a;
    font-size:14px;
    line-height:1.6;
    font-style:italic;
}

@media(max-width:700px){

    .home-cast-grid{
        grid-template-columns:1fr;
    }

}


/* =========================
   HOME GALLERY
========================= */

.home-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

.home-gallery-card{
    display:block;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
    background:#181818;
}

.home-gallery-card:hover{
    transform:translateY(-8px);
    border-color:#f5c542;
    box-shadow:0 20px 45px rgba(0,0,0,.45);
}

.home-gallery-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
    transition:.35s;
}

.home-gallery-card:hover img{
    transform:scale(1.05);
}

.home-section-action{
    margin-top:40px;
    text-align:center;
}

@media(max-width:1000px){

    .home-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:700px){

    .home-gallery-grid{
        grid-template-columns:1fr;
    }

    .home-gallery-card img{
        height:280px;
    }

}


/* Mobile gallery fix */
@media(max-width:700px){

    .home-gallery-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .home-gallery-card{
        max-width:420px;
        margin:0 auto;
    }

    .home-gallery-card img{
        width:100%;
        height:auto;
        aspect-ratio:auto;
        object-fit:contain;
        background:#111;
    }

}


/* =========================
   HOME TRAILER
========================= */

.home-trailer-section{
    padding:80px 0;
}

.home-trailer-card{
    position:relative;
    display:block;
    max-width:900px;
    margin:35px auto 0;
    overflow:hidden;
    border-radius:20px;
    background:#171717;
    border:1px solid rgba(255,255,255,.09);
    color:#fff;
    text-decoration:none;
}

.home-trailer-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
}

.home-trailer-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:74px;
    height:74px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5c542;
    color:#111;
    font-size:28px;
    box-shadow:0 12px 35px rgba(0,0,0,.35);
}

.home-trailer-content{
    padding:22px;
}

.home-trailer-content h3{
    margin:0;
    font-size:24px;
    color:#fff;
}

@media(max-width:700px){

    .home-trailer-section{
        padding:55px 0;
    }

    .home-trailer-card{
        border-radius:14px;
    }

    .home-trailer-play{
        width:58px;
        height:58px;
        font-size:22px;
    }

    .home-trailer-content h3{
        font-size:19px;
    }

}


.home-trailer-content{
    padding:16px 20px;
}

.home-trailer-content h3{
    font-size:21px;
}


/* =========================
   HOME BOX OFFICE
========================= */

.home-box-office-section{
    padding:80px 0;
}

.home-box-office-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
    margin-top:40px;
}

.home-box-office-grid > div{
    min-height:145px;
    padding:24px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#171717;
    border:1px solid rgba(255,255,255,.09);
    border-radius:16px;
    transition:.3s;
}

.home-box-office-grid > div:hover{
    transform:translateY(-5px);
    border-color:#f5c542;
}

.home-box-office-grid span{
    margin-bottom:12px;
    color:#999;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.home-box-office-grid strong{
    color:#fff;
    font-size:27px;
    line-height:1.2;
}

@media(max-width:900px){

    .home-box-office-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:600px){

    .home-box-office-section{
        padding:55px 0;
    }

    .home-box-office-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .home-box-office-grid > div{
        min-height:auto;
    }

}



/* =========================================
   FINAL HOMEPAGE MOBILE CLEANUP
========================================= */

/* Make the sticky header completely solid */
.site-header{
    background:#050505 !important;
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 5px 18px rgba(0,0,0,.35);
}

/* Prevent linked sections from hiding behind sticky header */
section{
    scroll-margin-top:90px;
}

@media(max-width:700px){

    /* General container spacing */
    .container{
        width:92%;
        max-width:100%;
        margin-left:auto;
        margin-right:auto;
    }

    /* Consistent section spacing */
    .news-section,
    .home-cast-section,
    .home-gallery-section,
    .home-trailer-section,
    .home-box-office-section{
        padding:60px 0 !important;
    }

    /* Headings */
    .section-head{
        text-align:center;
        margin-bottom:32px;
    }

    .section-head h2{
        margin:8px 0 0;
        font-size:38px;
        line-height:1.15;
    }

    .section-head .eyebrow{
        font-size:12px;
        letter-spacing:3px;
    }

    /* -------------------------
       NEWS
    ------------------------- */

    .news-grid{
        grid-template-columns:1fr !important;
        gap:24px;
    }

    .news-card{
        border-radius:18px;
    }

    .news-card img{
        width:100%;
        height:auto;
        aspect-ratio:16/10;
        object-fit:cover;
    }

    .news-content{
        padding:24px;
    }

    .news-content h3{
        font-size:25px;
        line-height:1.35;
    }

    /* -------------------------
       CAST
    ------------------------- */

    .home-cast-grid{
        grid-template-columns:1fr !important;
        gap:28px;
    }

    .home-cast-card{
        width:100%;
        max-width:420px;
        margin:0 auto;
        border-radius:18px;
    }

    .home-cast-card img{
        width:100%;
        height:auto !important;
        max-height:none !important;
        aspect-ratio:auto !important;
        object-fit:contain !important;
        object-position:center !important;
        background:#111;
    }

    .home-cast-content{
        padding:22px;
    }

    .home-cast-content h3{
        font-size:24px;
    }

    /* -------------------------
       GALLERY
    ------------------------- */

    .home-gallery-grid{
        grid-template-columns:1fr !important;
        gap:24px;
    }

    .home-gallery-card{
        width:100%;
        max-width:420px;
        margin:0 auto;
        border-radius:18px;
    }

    .home-gallery-card img{
        width:100%;
        height:auto !important;
        max-height:none !important;
        aspect-ratio:auto !important;
        object-fit:contain !important;
        background:#111;
    }

    /* -------------------------
       TRAILER
    ------------------------- */

    .home-trailer-card{
        width:100%;
        margin-top:28px;
        border-radius:18px;
    }

    .home-trailer-card img{
        width:100%;
        height:auto;
        aspect-ratio:16/9;
        object-fit:cover;
    }

    .home-trailer-content{
        padding:18px 22px;
    }

    .home-trailer-content h3{
        font-size:22px;
        line-height:1.35;
    }

    .home-trailer-play{
        width:62px;
        height:62px;
        font-size:23px;
    }

    /* -------------------------
       BOX OFFICE
    ------------------------- */

    .home-box-office-grid{
        grid-template-columns:1fr !important;
        gap:18px;
    }

    .home-box-office-grid > div{
        min-height:140px;
        padding:26px;
    }

    .home-box-office-grid strong{
        font-size:30px;
    }

    /* Buttons */
    .home-section-action{
        margin-top:32px;
    }

    .home-section-action .btn{
        min-height:50px;
        padding:13px 24px;
    }

    /* Footer */
    .site-footer{
        padding:32px 20px;
        text-align:center;
        line-height:1.7;
    }
}


/* =========================================
   HOMEPAGE MOBILE GAP REDUCTION
========================================= */

@media(max-width:700px){

    /* Reduce empty space inside the hero */
    .hero{
        padding-top:55px !important;
        padding-bottom:35px !important;
        min-height:auto !important;
    }

    /* Reduce space below hero buttons */
    .hero-actions{
        margin-bottom:25px !important;
    }

    /* Reduce space around the poster/details area */
    .hero-poster{
        margin-top:30px !important;
        margin-bottom:0 !important;
    }

    /* Reduce the gap before countdown */
    .countdown-section{
        padding-top:50px !important;
        padding-bottom:55px !important;
        margin-top:0 !important;
    }

    /* Keep all later homepage sections consistent */
    .news-section,
    .home-cast-section,
    .home-gallery-section,
    .home-trailer-section,
    .home-box-office-section{
        padding-top:55px !important;
        padding-bottom:55px !important;
    }
}


.home-gallery-section{
    margin-top:50px;
}


/* ==========================================
   Movie Status & Verdict Badges
========================================== */

.movie-badges{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:25px 0 35px;
}

.movie-status-badge,
.movie-verdict-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.movie-status-badge{
    background:#1f3b2f;
    color:#63ff9b;
    border:1px solid rgba(99,255,155,.25);
}

.movie-verdict-badge{
    background:linear-gradient(135deg,#f5c542,#d99b06);
    color:#111;
    border:none;
}


/* ==========================================
   Movie Production Timeline
========================================== */

.movie-timeline{
    display:grid;
    grid-template-columns:repeat(7,minmax(0,1fr));
    gap:14px;
    margin-top:30px;
}

.movie-timeline-item{
    position:relative;
    min-height:120px;
    padding:24px 14px 18px;
    background:#171717;
    border:1px solid #2d2d2d;
    border-radius:14px;
    text-align:center;
}

.movie-timeline-item strong{
    display:block;
    color:#8f8f8f;
    font-size:13px;
    line-height:1.5;
}

.movie-timeline-dot{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    margin:0 auto 14px;
    border-radius:50%;
    background:#252525;
    border:1px solid #3a3a3a;
    color:#777;
    font-weight:800;
}

.movie-timeline-item.completed{
    border-color:rgba(99,255,155,.35);
}

.movie-timeline-item.completed .movie-timeline-dot{
    background:#1f3b2f;
    border-color:#39c875;
    color:#63ff9b;
}

.movie-timeline-item.completed strong{
    color:#d7fbe3;
}

.movie-timeline-item.current{
    border-color:#f5c542;
    box-shadow:0 0 24px rgba(245,197,66,.12);
}

.movie-timeline-item.current .movie-timeline-dot{
    background:#f5c542;
    border-color:#f5c542;
    color:#111;
}

.movie-timeline-item.current strong{
    color:#fff;
}

@media(max-width:1000px){
    .movie-timeline{
        grid-template-columns:repeat(4,minmax(0,1fr));
    }
}

@media(max-width:650px){
    .movie-timeline{
        grid-template-columns:1fr 1fr;
    }

    .movie-timeline-item{
        min-height:105px;
    }
}


/* Homepage timeline adjustment */

.home-timeline{
    max-width:960px;
    margin:30px auto 0;
    gap:10px;
}

.home-timeline .movie-timeline-item{
    min-height:96px;
    padding:18px 8px 14px;
    border-radius:12px;
}

.home-timeline .movie-timeline-dot{
    width:34px;
    height:34px;
    margin-bottom:10px;
}

.home-timeline .movie-timeline-item strong{
    font-size:12px;
}

@media(max-width:1000px){
    .home-timeline{
        grid-template-columns:repeat(4,minmax(0,1fr));
        max-width:760px;
    }
}

@media(max-width:650px){
    .home-timeline{
    display:flex;
    overflow-x:auto;
    overflow-y:hidden;
    gap:12px;
    padding:0 20px 8px 0;
    max-width:100%;
    scrollbar-width:thin;
    -webkit-overflow-scrolling:touch;
}

.home-timeline .movie-timeline-item{
    flex:0 0 155px;
    min-height:105px;
}


}

/* ==========================================
   Movie Page Top Cast
========================================== */

.cast-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    margin-top:30px;
}

.cast-card{
    display:block;
    overflow:hidden;
    background:#181818;
    border:1px solid #2d2d2d;
    border-radius:16px;
    text-decoration:none;
    transition:.25s ease;
}

.cast-card:hover{
    transform:translateY(-5px);
    border-color:#f5c542;
}

.cast-card img{
    width:100%;
    height:360px;
    display:block;
    object-fit:cover;
    object-position:center top;
}

.cast-card-content{
    padding:18px;
}

.cast-card-content h3{
    margin:0 0 7px;
    color:#fff;
    font-size:20px;
}

.cast-card-content p{
    margin:0;
    color:#f5c542;
    font-size:14px;
}

@media(max-width:900px){
    .cast-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:600px){
    .cast-grid{
        grid-template-columns:1fr;
    }

    .cast-card img{
        height:auto;
        max-height:520px;
        object-fit:contain;
        background:#111;
    }
}


.home-section-action{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:34px;
}

.home-section-action .btn{
    min-width:155px;
    text-align:center;
}


.news-section{
    padding-bottom:70px;
}

.news-section + .home-cast-section{
    padding-top:70px;
}


/* ==========================================
   Global Search Page
========================================== */

.search-page{
    min-height:70vh;
}

.site-search-form{
    display:flex;
    width:100%;
    max-width:760px;
    margin:30px auto 0;
    gap:14px;
}

.site-search-form input{
    flex:1;
    min-width:0;
    padding:16px 18px;
    background:#171717;
    color:#fff;
    border:1px solid #333;
    border-radius:12px;
    font:inherit;
    outline:none;
}

.site-search-form input:focus{
    border-color:#f5c542;
    box-shadow:0 0 0 3px rgba(245,197,66,.10);
}

.site-search-form button{
    flex-shrink:0;
}

.search-results-section{
    padding:70px 0 100px;
}

.search-result-group{
    margin-top:55px;
}

.search-result-group > h2{
    margin:0 0 24px;
    font-size:30px;
}

.search-result-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.search-result-card{
    display:block;
    overflow:hidden;
    background:#181818;
    border:1px solid #2e2e2e;
    border-radius:15px;
    color:#fff;
    text-decoration:none;
    transition:.25s ease;
}

.search-result-card:hover{
    transform:translateY(-5px);
    border-color:#f5c542;
}

.search-result-card img{
    width:100%;
    height:230px;
    display:block;
    object-fit:cover;
    object-position:center top;
    background:#111;
}

.search-result-card > div{
    padding:18px;
}

.search-result-card span{
    display:block;
    margin-bottom:9px;
    color:#f5c542;
    font-size:12px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.search-result-card h3{
    margin:0 0 10px;
    color:#fff;
    font-size:19px;
    line-height:1.35;
}

.search-result-card p{
    margin:0;
    color:#aaa;
    font-size:14px;
    line-height:1.6;
}

.search-empty{
    max-width:650px;
    margin:35px auto 0;
    padding:35px;
    background:#181818;
    border:1px solid #2e2e2e;
    border-radius:15px;
    text-align:center;
}

.search-empty h3{
    margin:0 0 10px;
    font-size:26px;
}

.search-empty p{
    margin:0;
    color:#aaa;
}

@media(max-width:1050px){
    .search-result-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media(max-width:800px){
    .search-result-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:600px){
    .site-search-form{
        flex-direction:column;
    }

    .site-search-form button{
        width:100%;
    }

    .search-result-grid{
        grid-template-columns:1fr;
    }

    .search-result-card img{
        height:auto;
        max-height:480px;
        object-fit:contain;
    }
}


/* News Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 45px;
}

.pagination-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 8px;
    background: #151515;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.pagination-link:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
    transform: translateY(-2px);
}

.pagination-link.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
    pointer-events: none;
}

@media (max-width: 600px) {
    .pagination {
        gap: 8px;
        margin-top: 32px;
    }

    .pagination-link {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }
}


/* Article Share Buttons */
.article-share {
    margin: 40px 0 70px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.article-share > p {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    background: #151515;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.share-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .article-share {
        margin-top: 28px;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-btn {
        min-height: 40px;
        padding: 0 13px;
        font-size: 12px;
    }
}


/* ==========================
   Movie Information Section
========================== */

.movie-info-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.movie-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.movie-info-item {
    background: #161616;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 22px;
    transition: .25s ease;
}

.movie-info-item:hover {
    border-color: #f4c542;
    transform: translateY(-3px);
}

.movie-info-item span {
    display: block;
    color: #f4c542;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.movie-info-item strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}


.story-section {
    padding: 90px 0;
    background: #111;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    background: #171717;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 30px 40px;   /* was 40px */
    text-align: center;
}

.story-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #d7d7d7;
    margin: 0;
}


/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: #0d0d0d;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 20px 55px 20px 22px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #f4c542;
    font-size: 26px;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
}

.faq-item[open] {
    border-color: rgba(244, 197, 66, 0.45);
}

@media (max-width: 600px) {
    .faq-section {
        padding: 65px 0;
    }

    .faq-item summary {
        padding: 17px 48px 17px 18px;
        font-size: 15px;
    }

    .faq-item summary::after {
        right: 18px;
    }

    .faq-item p {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}


/* Previous / Next Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.article-nav-item {
    min-height: 120px;
    padding: 22px;
    background: #171717;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
}

.article-nav-item span {
    display: block;
    margin-bottom: 10px;
    color: #f4c542;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-nav-item a {
    color: #fff;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    text-decoration: none;
}

.article-nav-item a:hover {
    color: #f4c542;
}

.article-nav-next {
    text-align: right;
}

.article-navigation .article-nav-item:only-child {
    grid-column: 1 / -1;
}


@media (max-width: 700px) {
    .article-navigation {
        grid-template-columns: 1fr;
    }

    .article-nav-next {
        text-align: left;
    }


.article-navigation:has(.article-nav-item:only-child) {
    grid-template-columns: 1fr;
}

.article-navigation .article-nav-item:only-child {
    width: 100%;
    grid-column: 1 / -1;
}
    .article-nav-item:empty {
        display: none;
    }
}


.related-news {
    margin-top: 70px;
}


/* ===========================
   FOOTER
=========================== */

.site-footer{
    background:#090909;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
    padding:50px 0;
}

.footer-about h2{
    font-size:34px;
    margin-bottom:18px;
    color:#fff;
}

.footer-about p{
    color:#a7a7a7;
    line-height:1.9;
    max-width:520px;
}

.footer-links h3{
    color:#fff;
    margin-bottom:20px;
    font-size:20px;
}

.footer-links a{
    display:block;
    color:#bdbdbd;
    text-decoration:none;
    margin-bottom:14px;
    transition:.25s;
}

.footer-links a:hover{
    color:#f4c542;
    padding-left:6px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:28px 0;
}

.footer-bottom p{
    color:#9a9a9a;
    margin:0;
}

@media (max-width:900px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

}


.footer-logo{
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo img{
    display:block;
    width:auto;
    height:80px;
    max-width:300px;
    object-fit:contain;
}


/* Footer Social Icons */

.footer-social{
    display:flex;
    gap:16px;
    margin-top:28px;
}

.footer-social a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{
    background:#f4c542;
    color:#111;
    border-color:#f4c542;
    transform:translateY(-3px);
}

.footer-social i{
    font-size:18px;
}


@media (max-width: 768px) {

    .footer-social {
        justify-content: center;
        width: 100%;
    }

}


/* ==========================
   STATIC PAGES
========================== */

.page-content{
    padding-bottom:80px;
}

.content-card{
    max-width:760px;
    margin:0 auto;
    background:#141414;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:50px;
    line-height:1.9;
}

.content-card h2{
    margin:40px 0 18px;
    color:#fff;
    font-size:30px;
}

.content-card h2:first-child{
    margin-top:0;
}

.content-card p{
    color:#d6d6d6;
    margin-bottom:24px;
}

.content-card ul{
    margin:20px 0 30px 25px;
}

.content-card li{
    color:#d6d6d6;
    margin-bottom:12px;
}

@media (max-width:768px){

    .content-card{
        padding:30px 24px;
    }

    .content-card h2{
        font-size:24px;
    }

}



/* ==========================
   CONTACT PAGE
========================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    margin-top:50px;
}

.contact-item{
    margin-top:25px;
}

.contact-item strong{
    display:block;
    color:#f4c542;
    margin-bottom:6px;
}

.contact-item span{
    color:#d6d6d6;
}

.contact-form label{
    display:block;
    margin:22px 0 8px;
    font-weight:600;
    color:#fff;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid rgba(255,255,255,.12);
    background:#0d0d0d;
    color:#fff;
    border-radius:12px;
    font-size:16px;
    box-sizing:border-box;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#f4c542;
}

.contact-form textarea{
    resize:vertical;
    min-height:180px;
}

.contact-form button{
    margin-top:25px;
}


.contact-form .btn{
    margin-top:25px;
    width:100%;
}

@media (max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}


.success-message,
.error-message {
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.success-message {
    color: #b9f6ca;
    background: rgba(46, 160, 67, 0.12);
    border: 1px solid rgba(46, 160, 67, 0.35);
}

.error-message {
    color: #ffb4b4;
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.35);
}


.page-header p{
    margin-bottom:15px;
    line-height:1.8;
    color:#d7d7d7;
    max-width:800px;
}


/* ==========================
   SEARCH PAGE
========================== */

.site-search-form{
    display:flex;
    align-items:stretch;
    gap:12px;
    width:100%;
    max-width:760px;
    margin-top:32px;
}

.site-search-form input{
    flex:1;
    min-width:0;
    height:56px;
    padding:0 20px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:14px;
    background:#151515;
    color:#fff;
    font-size:16px;
}

.site-search-form input:focus{
    outline:none;
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(244,197,66,.12);
}

.site-search-form button{
    height:56px;
    padding:0 28px;
    flex-shrink:0;
}

@media (max-width:600px){

    .site-search-form{
        flex-direction:column;
    }

    .site-search-form button{
        width:100%;
    }

}


.search-heading{
    text-align:center;
    margin:45px 0 40px;
}

.search-subtitle{
    margin-top:14px;
    color:var(--muted);
    font-size:18px;
}

.search-subtitle strong{
    color:var(--gold);
    font-weight:700;
}



.home-box-office-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.home-box-office-feature,
.home-box-office-stats > div {
    background: #171717;
    border: 1px solid #2f2f2f;
    border-radius: 16px;
}

.home-box-office-feature {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-office-kicker,
.home-box-office-stats span,
.box-office-summary-row span,
.box-office-recovery-head span {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #aeb7c6;
}

.box-office-worldwide {
    display: block;
    margin-bottom: 28px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    color: #ffffff;
}

.box-office-summary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.box-office-summary-row > div {
    padding: 18px;
    background: #111111;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
}

.box-office-summary-row strong {
    display: block;
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
}

.box-office-summary-row .profit strong {
    color: #48c774;
}

.box-office-summary-row .loss strong {
    color: #ff6b6b;
}

.box-office-summary-row .break-even strong {
    color: #e6c86e;
}

.box-office-recovery-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
}

.box-office-recovery-head span {
    margin-bottom: 0;
}

.box-office-recovery-head strong {
    font-size: 18px;
    color: #ffffff;
}

.box-office-progress {
    height: 12px;
    overflow: hidden;
    background: #2b2b2b;
    border-radius: 999px;
}

.box-office-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #b9933f, #f0d58c);
    border-radius: inherit;
}

.home-box-office-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.home-box-office-stats > div {
    min-height: 135px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-box-office-stats > div:last-child {
    grid-column: 1 / -1;
}

.home-box-office-stats strong {
    font-size: 25px;
    line-height: 1.2;
    color: #ffffff;
}



/* Public Box Office summary */

.box-office-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.box-office-summary-item {
    padding: 18px 20px;
    background: #171717;
    border: 1px solid #2f2f2f;
    border-radius: 14px;
}

.featured-worldwide{
    grid-column:1 / -1;
    padding:24px 28px;
    background:linear-gradient(135deg,#1b1b1b,#242424);
    border:1px solid #2f2f2f;
}

.featured-worldwide span {
    color: #d8c28a;
}

.featured-worldwide strong {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
}



.box-office-summary-item span {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aeb7c6;
}

.box-office-summary-item strong {
    display: block;
    margin-top: 6px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.box-office-summary-item .profit-positive,
.profit-positive {
    color: #48c774;
}

.box-office-summary-item .profit-negative,
.profit-negative {
    color: #ff6b6b;
}

.trend-up {
    color: #48c774;
    font-weight: 700;
    white-space: nowrap;
}

.trend-down {
    color: #ff6b6b;
    font-weight: 700;
    white-space: nowrap;
}


.verdict-badge{
    display:inline-flex !important;
    width:auto !important;
    align-self:flex-start;
}

@media (max-width: 700px) {
    .box-office-summary-grid {
        grid-template-columns: 1fr;
    }

    .box-office-summary-item {
        padding: 16px;
    }

    .box-office-summary-item strong {
        font-size: 18px;
    }
}


.recovery-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recovery-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.recovery-card-head span {
    margin-bottom: 0;
}

.recovery-card-head strong {
    margin-top: 0;
    font-size: 24px;
}

.recovery-progress {
    width: 100%;
    height: 11px;
    overflow: hidden;
    background: #303030;
    border-radius: 999px;
}

.recovery-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #b9933f, #f0d58c);
    border-radius: inherit;
}

.recovery-card small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #aeb7c6;
}


.verdict-card{
    grid-column:1 / -1;
    padding:16px 20px;
    min-height:auto;
}


.verdict-card span{
    margin-bottom:8px;
}

.verdict-card .verdict-badge{
    margin-top:0;
}

.verdict-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:auto;
    padding:10px 18px;
    margin-top:8px;
    border-radius:999px;
    background:#b9933f;
    color:#111 !important;
    font-size:18px !important;
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
}




@media (max-width: 900px) {
    .home-box-office-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .home-box-office-feature {
        padding: 22px;
    }

    .box-office-summary-row,
    .home-box-office-stats {
        grid-template-columns: 1fr;
    }

    .home-box-office-stats > div:last-child {
        grid-column: auto;
    }

    .home-box-office-stats > div {
        min-height: auto;
        padding: 20px;
    }

    .box-office-worldwide {
        font-size: 40px;
    }
}


.box-office-verdict {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: -8px 0 18px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.verdict-disaster,
.verdict-flop {
    background: rgba(255, 80, 80, 0.14);
    border: 1px solid rgba(255, 80, 80, 0.45);
    color: #ff6b6b;
}

.verdict-below-average {
    background: rgba(255, 165, 0, 0.14);
    border: 1px solid rgba(255, 165, 0, 0.45);
    color: #ffb347;
}

.verdict-average {
    background: rgba(230, 200, 110, 0.14);
    border: 1px solid rgba(230, 200, 110, 0.45);
    color: #e6c86e;
}

.verdict-hit,
.verdict-super-hit,
.verdict-blockbuster,
.verdict-all-time-blockbuster {
    background: rgba(72, 199, 116, 0.14);
    border: 1px solid rgba(72, 199, 116, 0.45);
    color: #48c774;
}


.box-office-message {
    margin: 14px 0 24px;
    max-width: 540px;
    color: #b8c0cc;
    font-size: 15px;
    line-height: 1.7;
}



.trend-up{
    color:#22c55e;
    font-weight:700;
    white-space:nowrap;
}

.trend-down{
    color:#ef4444;
    font-weight:700;
    white-space:nowrap;
}



.highest-collection-row{
    background:rgba(185,147,63,.12);
}

.highest-collection-row td{
    border-top:1px solid rgba(185,147,63,.35);
    border-bottom:1px solid rgba(185,147,63,.35);
}

.highest-collection-row td:first-child{
    border-left:3px solid #b9933f;
}

.highest-collection-row td:last-child{
    border-right:3px solid #b9933f;
}


.highest-day-badge{
    display:inline-flex;
    align-items:center;
    margin-left:8px;
    padding:2px 7px;
    border-radius:999px;
    background:#b9933f;
    color:#111;
    font-size:10px;
    font-weight:700;
    line-height:1;
    text-transform:uppercase;
}


/* Box Office Collection Chart */

.box-office-chart-card {
    margin-top: 32px;
    padding: 28px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.box-office-chart-header {
    margin-bottom: 24px;
}

.box-office-chart-header h2 {
    margin: 4px 0 0;
    font-size: 28px;
}

.box-office-chart-header > span {
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
}

.box-office-chart-container {
    position: relative;
    width: 100%;
    height: 380px;
}

@media (max-width: 768px) {
    .box-office-chart-card {
        padding: 20px 16px;
    }

    .box-office-chart-header h2 {
        font-size: 22px;
    }

    .box-office-chart-container {
        height: 300px;
    }
}