/* V18 FULL VIEW PREMIUM REDESIGN */

:root{
    --ott-card:rgba(14,23,31,.78);
    --ott-card-2:rgba(10,17,24,.92);
    --ott-line:rgba(255,255,255,.105);
    --ott-soft:rgba(255,255,255,.06);
    --ott-glow:0 24px 70px rgba(0,0,0,.36);
}

.ott-view{
    background:
        radial-gradient(circle at 10% 20%,rgba(33,136,180,.10),transparent 30%),
        radial-gradient(circle at 88% 0%,rgba(247,201,72,.05),transparent 26%),
        var(--bg);
}

.ott-hero{
    min-height:635px;
    position:relative;
    background-size:cover;
    background-position:center right;
    display:flex;
    align-items:center;
    padding-top:112px;
    overflow:hidden;
}

.ott-hero:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:210px;
    background:linear-gradient(transparent,var(--bg));
}

.ott-hero__shade{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(7,16,24,.98) 0%,rgba(7,16,24,.86) 34%,rgba(7,16,24,.30) 70%,rgba(7,16,24,.66) 100%),
        linear-gradient(180deg,rgba(7,16,24,.08),rgba(7,16,24,.02) 52%,var(--bg) 100%);
}

.ott-hero__inner{
    position:relative;
    z-index:2;
}

.ott-breadcrumbs{
    display:flex;
    align-items:center;
    gap:12px;
    color:#95a5b3;
    font-size:14px;
    margin-bottom:30px;
}

.ott-breadcrumbs b{
    color:var(--accent);
}

.ott-hero__content{
    max-width:900px;
}

.ott-kicker{
    color:var(--accent);
    font-weight:950;
    letter-spacing:.8px;
    text-transform:uppercase;
    font-size:13px;
}

.ott-hero h1{
    margin:12px 0 18px;
    font-size:72px;
    line-height:.95;
    letter-spacing:-1.9px;
    text-shadow:0 24px 62px rgba(0,0,0,.55);
}

.ott-badges{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.ott-badges span{
    min-height:34px;
    padding:7px 13px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-weight:850;
    font-size:14px;
}

.ott-badges .is-gold{
    background:var(--accent);
    color:#111;
    border-color:transparent;
}

.ott-hero p{
    max-width:790px;
    color:#d7e2ec;
    line-height:1.78;
    font-size:17px;
}

.ott-actions{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:30px;
}

.ott-btn,
.ott-icon-btn{
    min-height:52px;
    border-radius:14px;
    background:rgba(255,255,255,.075);
    border:1px solid rgba(255,255,255,.17);
    color:#fff;
    font-weight:900;
    padding:0 22px;
    cursor:pointer;
    backdrop-filter:blur(12px);
}

.ott-icon-btn{
    width:52px;
    padding:0;
    font-size:24px;
}

/* tabs */
.ott-tabs{
    margin-top:-52px;
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    background:rgba(14,23,31,.70);
    border:1px solid var(--ott-line);
    backdrop-filter:blur(18px);
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--ott-glow);
}

.ott-tabs a{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d9e4ee;
    border-right:1px solid rgba(255,255,255,.065);
    font-weight:850;
    position:relative;
    transition:.2s ease;
}

.ott-tabs a:hover{
    background:rgba(255,255,255,.04);
    color:#fff;
}

.ott-tabs a.active{
    color:var(--accent);
    background:linear-gradient(180deg,rgba(247,201,72,.12),rgba(247,201,72,.035));
}

.ott-tabs a.active:after{
    content:"";
    position:absolute;
    left:26%;
    right:26%;
    bottom:0;
    height:3px;
    border-radius:20px;
    background:var(--accent);
}

/* layout */
.ott-layout{
    margin-top:36px;
    display:grid;
    grid-template-columns:minmax(0,1.46fr) minmax(335px,.64fr);
    gap:26px;
}

.ott-player,
.ott-story,
.ott-info-card,
.ott-rating-card{
    background:linear-gradient(180deg,var(--ott-card),var(--ott-card-2));
    border:1px solid var(--ott-line);
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.24);
}

.ott-player{
    height:520px;
    position:relative;
    overflow:hidden;
}

.ott-player img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.84);
    transition:.35s ease;
}

.ott-player:hover img{
    transform:scale(1.025);
}

.ott-player__shade{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 42%,rgba(0,0,0,.80));
}

.ott-play{
    position:absolute;
    left:50%;
    top:50%;
    width:88px;
    height:88px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    border:1px solid rgba(255,255,255,.28);
    background:rgba(7,16,24,.58);
    backdrop-filter:blur(12px);
    color:#fff;
    font-size:34px;
    cursor:pointer;
    transition:.22s ease;
}

.ott-play:hover{
    background:var(--accent);
    color:#111;
    transform:translate(-50%,-50%) scale(1.06);
}

.ott-player__bottom{
    position:absolute;
    left:22px;
    right:22px;
    bottom:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    background:rgba(0,0,0,.36);
    border:1px solid rgba(255,255,255,.13);
    border-radius:16px;
    padding:16px;
    backdrop-filter:blur(12px);
}

.ott-player__bottom strong,
.ott-player__bottom span{
    display:block;
}

.ott-player__bottom span{
    color:#b9c6d2;
    margin-top:4px;
}

.ott-player__bottom a{
    color:var(--accent);
    font-weight:900;
}

.ott-story{
    margin-top:24px;
    padding:30px;
}

.ott-section-label,
.ott-title-row span{
    color:var(--accent);
    font-weight:950;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.45px;
}

.ott-story h2{
    margin:6px 0 14px;
    font-size:28px;
}

.ott-story p{
    color:#b9c6d2;
    line-height:1.84;
}

.ott-story button{
    border:0;
    background:transparent;
    color:var(--accent);
    font-weight:950;
    padding:0;
    cursor:pointer;
}

.ott-sidebar{
    display:grid;
    align-content:start;
    gap:24px;
}

.ott-info-card,
.ott-rating-card{
    padding:30px;
}

.ott-info-card h3,
.ott-rating-card h3{
    margin:0 0 20px;
    font-size:22px;
}

.ott-info-card dl{
    display:grid;
    grid-template-columns:136px 1fr;
    gap:15px 18px;
    margin:0;
}

.ott-info-card dt{
    color:#8fa0ae;
    font-size:13px;
}

.ott-info-card dd{
    margin:0;
    color:#fff;
    font-weight:850;
}

.ott-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#27d26f;
    display:inline-block;
    margin-right:8px;
}

.ott-stars{
    color:var(--accent);
    font-size:42px;
    letter-spacing:5px;
    margin-bottom:18px;
}

.ott-rating-card > div:last-child{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    color:#b8c5cf;
}

.ott-rating-card button{
    background:var(--accent);
    color:#111;
    border:0;
    border-radius:12px;
    padding:13px 25px;
    font-weight:950;
    cursor:pointer;
}

/* shared title */
.ott-title-row{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:18px;
    margin-bottom:18px;
}

.ott-title-row h2{
    margin:4px 0 0;
    font-size:31px;
}

.ott-title-row a{
    color:var(--accent);
    font-weight:900;
}

/* cast */
.ott-cast{
    margin-top:42px;
}

.ott-cast-row{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:18px;
}

.ott-cast-card{
    background:linear-gradient(180deg,rgba(16,25,34,.70),rgba(10,17,24,.88));
    border:1px solid rgba(255,255,255,.09);
    border-radius:22px;
    overflow:hidden;
    transition:.22s ease;
    box-shadow:0 16px 38px rgba(0,0,0,.18);
}

.ott-cast-card:hover{
    transform:translateY(-6px);
    border-color:rgba(247,201,72,.36);
    box-shadow:0 24px 58px rgba(0,0,0,.32);
}

.ott-cast-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
    transition:.3s ease;
}

.ott-cast-card:hover img{
    transform:scale(1.06);
    filter:brightness(.83);
}

.ott-cast-card div{
    padding:14px;
}

.ott-cast-card strong{
    display:block;
    color:#fff;
    font-size:15px;
    line-height:1.25;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ott-cast-card span{
    display:block;
    color:#9facb9;
    font-size:13px;
    margin-top:6px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* episodes */
.ott-episodes{
    margin-top:44px;
}

.ott-sort{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    border-radius:12px;
    padding:11px 16px;
    cursor:pointer;
}

.ott-season-pills{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.ott-season-pills button{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    border-radius:13px;
    padding:11px 18px;
    cursor:pointer;
    font-weight:900;
    transition:.2s ease;
}

.ott-season-pills button.active,
.ott-season-pills button:hover{
    background:rgba(247,201,72,.13);
    border-color:rgba(247,201,72,.45);
    color:var(--accent);
}

.ott-episode-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.ott-episode-card{
    min-width:0;
}

.ott-episode-img{
    position:relative;
    height:150px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.ott-episode-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.28s ease;
}

.ott-episode-img:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.68));
    opacity:.9;
}

.ott-episode-play{
    position:absolute;
    left:50%;
    top:50%;
    z-index:3;
    transform:translate(-50%,-50%) scale(.82);
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(7,16,24,.64);
    color:#fff;
    opacity:0;
    transition:.2s ease;
}

.ott-episode-no{
    position:absolute;
    left:10px;
    top:10px;
    z-index:3;
    background:rgba(7,16,24,.68);
    border:1px solid rgba(255,255,255,.16);
    border-radius:9px;
    padding:5px 8px;
    color:#fff;
    font-weight:900;
    font-size:12px;
}

.ott-episode-img em{
    position:absolute;
    right:10px;
    bottom:10px;
    z-index:3;
    color:#d6e0ea;
    font-size:12px;
    font-style:normal;
}

.ott-episode-card:hover .ott-episode-img img{
    transform:scale(1.07);
    filter:brightness(.78);
}

.ott-episode-card:hover .ott-episode-play{
    opacity:1;
    transform:translate(-50%,-50%) scale(1);
}

.ott-episode-card strong{
    display:block;
    padding-top:10px;
    color:#fff;
    font-size:14px;
    line-height:1.35;
}

/* similar */
.ott-similar{
    margin-top:46px;
    margin-bottom:44px;
}

.ott-similar-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.ott-similar-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.09);
    background:linear-gradient(180deg,rgba(16,25,34,.62),rgba(10,17,24,.75));
    transition:.2s ease;
}

.ott-similar-card:hover{
    transform:translateY(-5px);
    border-color:rgba(247,201,72,.35);
}

.ott-similar-card img{
    width:100%;
    height:135px;
    object-fit:cover;
    display:block;
    filter:brightness(.82);
}

.ott-similar-card div{
    padding:12px;
}

.ott-similar-card strong{
    display:block;
    color:#fff;
}

.ott-similar-card span{
    display:block;
    color:#9facb9;
    margin-top:5px;
    font-size:13px;
}

@media(max-width:1300px){
    .ott-cast-row{grid-template-columns:repeat(5,1fr)}
    .ott-episode-grid{grid-template-columns:repeat(4,1fr)}
}

@media(max-width:1100px){
    .ott-layout{grid-template-columns:1fr}
    .ott-similar-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:850px){
    .ott-hero h1{font-size:44px}
    .ott-tabs{grid-template-columns:repeat(2,1fr)}
    .ott-player{height:360px}
    .ott-player__bottom{display:block}
    .ott-info-card dl{grid-template-columns:1fr}
    .ott-cast-row{grid-template-columns:repeat(3,1fr)}
    .ott-episode-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:560px){
    .ott-cast-row,
    .ott-episode-grid,
    .ott-similar-grid{grid-template-columns:1fr}
}
