/* =========================================================
RESET
========================================================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:#060b14;
color:#f5f7fb;
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Arial,
sans-serif;
line-height:1.6;
font-size:16px;
-webkit-font-smoothing:antialiased;
text-rendering:optimizeLegibility;
overflow-x:hidden;
}

/* =========================================================
GLOBAL
========================================================= */

a{
color:inherit;
text-decoration:none;
transition:.25s ease;
-webkit-tap-highlight-color:transparent;
}

button{
-webkit-tap-highlight-color:transparent;
font-family:inherit;
}

img{
display:block;
max-width:100%;
height:auto;
content-visibility:auto;
}

.container{
width:100%;
max-width:1380px;
margin:auto;
padding:0 24px;
}

.section{
padding:80px 0;
position:relative;
}

.section-title{
font-size:34px;
font-weight:900;
margin-bottom:28px;
letter-spacing:-1px;
color:#fff;
}

/* =========================================================
SCROLLBAR
========================================================= */

::-webkit-scrollbar{
width:10px;
height:10px;
}

::-webkit-scrollbar-track{
background:#09111f;
}

::-webkit-scrollbar-thumb{
background:#23314d;
border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
background:#314263;
}

/* =========================================================
SELECTION
========================================================= */

::selection{
background:#2d8cff;
color:#fff;
}

/* =========================================================
FOCUS
========================================================= */

a:focus,
button:focus,
input:focus{
outline:2px solid #2d8cff;
outline-offset:2px;
}

/* =========================================================
HEADER
========================================================= */

header{
position:sticky;
top:0;
z-index:9999;
background:rgba(5,9,18,.78);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,.05);
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
min-height:82px;
}

.logo{
font-size:34px;
font-weight:900;
letter-spacing:-2px;
}

.logo a{
color:#fff;
}

.logo span{
color:#2d8cff;
}

/* =========================================================
SEARCH
========================================================= */

.search-box{
width:100%;
max-width:320px;
}

.search-box input{
width:100%;
height:50px;
padding:0 18px;
border:none;
outline:none;
border-radius:999px;
background:#121b30;
color:#fff;
font-size:15px;
border:1px solid rgba(255,255,255,.05);
}

.search-box input:focus{
background:#16233d;
}

/* =========================================================
HERO HOME
========================================================= */

.hero-home{
position:relative;
min-height:760px;
display:flex;
align-items:center;
justify-content:center;
padding:80px 20px;
background:
linear-gradient(
rgba(3,8,20,.82),
rgba(3,8,20,.92)
),
url('https://image.tmdb.org/t/p/original/9cqNxx0GxF0bflZmeSMuL5tnGzr.jpg')
center/cover no-repeat;
overflow:hidden;
}

.hero-inner{
position:relative;
z-index:2;
max-width:850px;
width:100%;
text-align:center;
}

.hero-title{
font-size:74px;
line-height:1;
font-weight:900;
letter-spacing:-3px;
margin-bottom:24px;
color:#fff;
}

.hero-description{
max-width:760px;
margin:auto;
font-size:20px;
line-height:1.9;
color:#d4d8e4;
margin-bottom:36px;
}

.hero-search{
display:flex;
align-items:center;
gap:14px;
max-width:760px;
margin:0 auto 32px;
}

.hero-search input{
flex:1;
height:66px;
padding:0 24px;
border:none;
outline:none;
border-radius:18px;
background:#131d33;
color:#fff;
font-size:17px;
}

.hero-search button{
height:66px;
padding:0 34px;
border:none;
border-radius:18px;
background:#2d8cff;
color:#fff;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:
transform .25s ease,
opacity .25s ease;
}

.hero-search button:hover{
transform:translateY(-2px);
opacity:.95;
}

.hero-button{
display:inline-flex;
align-items:center;
justify-content:center;
height:60px;
padding:0 34px;
border-radius:999px;
background:#22c55e;
color:#fff;
font-size:17px;
font-weight:700;
}

/* =========================================================
GRID
========================================================= */

.grid{
display:grid;
grid-template-columns:
repeat(auto-fill,minmax(200px,1fr));
gap:24px;
}

/* =========================================================
CARD
========================================================= */

.card{
display:block;
position:relative;
overflow:hidden;
border-radius:18px;
background:#0e1524;
border:1px solid rgba(255,255,255,.05);
transition:
transform .3s ease,
border-color .3s ease,
box-shadow .3s ease;
}

.card:hover{
transform:translateY(-6px);
border-color:#29466f;
box-shadow:
0 18px 40px rgba(0,0,0,.35);
}

.card-image{
aspect-ratio:2/3;
overflow:hidden;
background:#111827;
}

.card-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}

.card:hover img{
transform:scale(1.06);
}

.card-content{
padding:14px;
}

.card-title{
font-size:15px;
line-height:1.5;
font-weight:700;
color:#fff;
}

.card-meta{
margin-top:8px;
font-size:13px;
color:#8f9db4;
}

/* =========================================================
MOVIE HERO CINEMATIC
========================================================= */

.movie-hero{
position:relative;
overflow:hidden;
min-height:92vh;
display:flex;
align-items:flex-end;
background:#05070d;
}

.movie-backdrop{
position:absolute;
inset:0;
overflow:hidden;
}

.movie-backdrop img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.72);
transform:scale(1.04);
}

.movie-backdrop-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
to right,
rgba(2,6,16,.97) 0%,
rgba(2,6,16,.82) 30%,
rgba(2,6,16,.55) 60%,
rgba(2,6,16,.9) 100%
),
linear-gradient(
to top,
rgba(2,6,16,1) 0%,
rgba(2,6,16,.15) 45%,
rgba(2,6,16,.75) 100%
);
}

.movie-hero-content{
position:relative;
z-index:5;
display:grid;
grid-template-columns:
320px
minmax(0,1fr)
110px;
gap:46px;
align-items:end;
width:100%;
padding:
140px
24px
90px;
}

.movie-poster-wrap{
position:relative;
}

.movie-poster-large{
width:100%;
border-radius:24px;
box-shadow:
0 25px 70px rgba(0,0,0,.45);
border:1px solid rgba(255,255,255,.08);
}

.movie-main-info{
max-width:850px;
}

.watch-player-button{
width:96px;
height:96px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:42px;
cursor:pointer;
margin-bottom:28px;
background:
linear-gradient(
135deg,
#1fb6ff,
#4d7cff
);
color:#fff;
box-shadow:
0 18px 50px rgba(31,182,255,.35);
transition:
transform .25s ease,
box-shadow .25s ease;
}

.watch-player-button:hover{
transform:scale(1.06);
box-shadow:
0 22px 60px rgba(31,182,255,.45);
}

.movie-hero-title{
font-size:76px;
line-height:.96;
font-weight:900;
letter-spacing:-3px;
margin-bottom:22px;
color:#fff;
max-width:850px;
}

.movie-hero-meta{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:28px;
}

.movie-hero-meta span,
.movie-hero-meta a{
height:40px;
padding:0 18px;
border-radius:999px;
display:inline-flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.06);
backdrop-filter:blur(8px);
color:#fff;
font-size:14px;
font-weight:700;
}

.movie-hero-overview{
font-size:21px;
line-height:1.9;
color:#eef2ff;
margin-bottom:24px;
max-width:760px;
}

.overview{
font-size:16px;
line-height:1.95;
color:#cfd6e6;
margin-bottom:34px;
max-width:760px;
}

.watch-button{
display:inline-flex;
align-items:center;
justify-content:center;
height:62px;
padding:0 38px;
border-radius:999px;
background:#22c55e;
color:#fff;
font-size:17px;
font-weight:800;
box-shadow:
0 12px 30px rgba(34,197,94,.25);
}

.watch-button:hover{
transform:translateY(-2px);
}

/* =========================================================
SOCIAL COLUMN
========================================================= */

.movie-social{
display:flex;
flex-direction:column;
gap:16px;
align-items:flex-end;
padding-bottom:10px;
}

.social-circle{
width:52px;
height:52px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);
font-size:18px;
color:#fff;
}

/* =========================================================
PLAYER SECTION
========================================================= */

.desktop-player-section{
padding:0 0 70px;
background:#060b14;
margin-top:-40px;
position:relative;
z-index:10;
}

.desktop-player-wrapper{
position:relative;
border-radius:28px;
overflow:hidden;
background:#0f1728;
border:1px solid rgba(255,255,255,.05);
box-shadow:
0 20px 70px rgba(0,0,0,.45);
}

.desktop-player-image{
position:relative;
aspect-ratio:16/8;
overflow:hidden;
}

.desktop-player-image img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.55);
}

.desktop-player-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
rgba(0,0,0,.35),
rgba(0,0,0,.7)
);
}

.desktop-big-play{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:120px;
height:120px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:52px;
cursor:pointer;
background:
linear-gradient(
135deg,
#1fb6ff,
#497cff
);
color:#fff;
box-shadow:
0 18px 50px rgba(31,182,255,.35);
}

/* =========================================================
MOVIE TAGS
========================================================= */

.movie-tags-section{
padding:20px 0 10px;
}

.tags-title{
font-size:22px;
font-weight:800;
margin-bottom:18px;
color:#fff;
}

.movie-tags{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.movie-tag{
display:inline-flex;
align-items:center;
justify-content:center;
height:42px;
padding:0 18px;
border-radius:999px;
background:#121b2e;
border:1px solid rgba(255,255,255,.05);
color:#dce4f5;
font-size:14px;
font-weight:700;
}

.movie-tag:hover{
background:#1b2944;
}

/* =========================================================
SEARCH PAGE
========================================================= */

.search-page{
padding:70px 0;
background:#0b1220;
min-height:100vh;
}

.search-title{
font-size:46px;
font-weight:900;
margin-bottom:40px;
letter-spacing:-1px;
color:#fff;
}

.search-grid{
display:grid;
grid-template-columns:
repeat(auto-fill,minmax(220px,1fr));
gap:26px;
}

/* =========================================================
PLAYER MODAL
========================================================= */

.player-modal{
position:fixed;
inset:0;
z-index:99999;
display:none;
align-items:center;
justify-content:center;
padding:20px;
background:rgba(0,0,0,.82);
backdrop-filter:blur(6px);
}

.player-modal.active{
display:flex;
}

.player-modal-inner{
position:relative;
width:100%;
max-width:980px;
border-radius:24px;
overflow:hidden;
background:#0d1525;
box-shadow:
0 30px 80px rgba(0,0,0,.45);
}

.close-player{
position:absolute;
top:16px;
right:16px;
z-index:10;
width:42px;
height:42px;
border:none;
border-radius:50%;
background:rgba(255,255,255,.12);
color:#fff;
font-size:28px;
cursor:pointer;
}

.fake-player{
position:relative;
aspect-ratio:16/9;
display:flex;
align-items:center;
justify-content:center;
background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.72)
),
#0f172a;
}

.player-loading{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:22px;
color:#fff;
font-size:18px;
font-weight:600;
}

.spinner{
width:74px;
height:74px;
border-radius:50%;
border:5px solid rgba(255,255,255,.18);
border-top-color:#fff;
animation:spin 1s linear infinite;
}

@keyframes spin{

to{
transform:rotate(360deg);
}

}

.player-message{
display:none;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
max-width:640px;
}

.player-message h2{
font-size:42px;
line-height:1.2;
font-weight:900;
margin-bottom:18px;
color:#fff;
}

.player-message p{
font-size:18px;
line-height:1.9;
color:#d4d9e5;
margin-bottom:30px;
}

.continue-button{
display:inline-flex;
align-items:center;
justify-content:center;
height:60px;
padding:0 34px;
border-radius:999px;
background:#20c997;
color:#fff;
font-size:17px;
font-weight:800;
}

/* =========================================================
FOOTER
========================================================= */

footer{
background:#0a101b;
border-top:1px solid rgba(255,255,255,.05);
padding:50px 0;
margin-top:50px;
}

.footer-links{
display:flex;
flex-wrap:wrap;
gap:18px;
margin-bottom:20px;
}

.footer-links a{
color:#b7c2d5;
font-size:14px;
}

.footer-text{
font-size:14px;
color:#7f8ba0;
line-height:1.8;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1100px){

.movie-hero-content{
grid-template-columns:
260px
1fr;
}

.movie-social{
display:none;
}

.movie-hero-title{
font-size:58px;
}

.movie-poster-large{
width:100%;
}

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

.container{
padding:0 18px;
}

.header-inner{
flex-direction:column;
align-items:flex-start;
padding:16px 0;
}

.search-box{
max-width:100%;
}

.section{
padding:55px 0;
}

.section-title{
font-size:26px;
margin-bottom:22px;
}

.grid{
grid-template-columns:
repeat(2,minmax(0,1fr));
gap:18px;
}

.hero-home{
min-height:620px;
padding:70px 20px;
}

.hero-title{
font-size:40px;
line-height:1.05;
}

.hero-description{
font-size:15px;
line-height:1.8;
}

.hero-search{
flex-direction:column;
}

.hero-search input,
.hero-search button{
width:100%;
}

.movie-hero{
display:block;
min-height:auto;
}

.movie-backdrop{
position:relative;
height:400px;
}

.movie-backdrop img{
transform:none;
filter:brightness(.6);
}

.movie-backdrop-overlay{
background:
linear-gradient(
to top,
rgba(3,7,18,1) 0%,
rgba(3,7,18,.65) 55%,
rgba(3,7,18,.78) 100%
);
}

.movie-hero-content{
display:flex;
flex-direction:column;
align-items:flex-start;
gap:22px;
margin-top:-100px;
padding:
0
18px
45px;
}

.movie-poster-wrap{
position:relative;
z-index:5;
}

.movie-poster-large{
width:150px;
border-radius:18px;
}

.watch-player-button{
width:72px;
height:72px;
font-size:28px;
margin-bottom:12px;
}

.movie-main-info{
max-width:100%;
}

.movie-hero-title{
font-size:34px;
line-height:1.05;
letter-spacing:-1px;
margin-bottom:16px;
}

.movie-hero-meta{
gap:8px;
margin-bottom:18px;
}

.movie-hero-meta span,
.movie-hero-meta a{
height:32px;
padding:0 12px;
font-size:11px;
}

.movie-hero-overview{
font-size:15px;
line-height:1.85;
margin-bottom:18px;
}

.overview{
font-size:15px;
line-height:1.9;
margin-bottom:24px;
}

.watch-button{
width:100%;
height:54px;
font-size:15px;
}

.desktop-player-section{
margin-top:0;
padding:0 0 50px;
}

.desktop-player-wrapper{
border-radius:18px;
}

.desktop-big-play{
width:84px;
height:84px;
font-size:36px;
}

.movie-tags{
gap:10px;
}

.movie-tag{
height:38px;
padding:0 14px;
font-size:12px;
}

.player-message{
padding:28px;
}

.player-message h2{
font-size:28px;
}

.player-message p{
font-size:15px;
}

.footer-links{
gap:12px;
}

}

/* =========================================================
SMALL MOBILE
========================================================= */

@media(max-width:480px){

.movie-backdrop{
height:340px;
}

.movie-hero-content{
margin-top:-80px;
}

.movie-poster-large{
width:125px;
}

.movie-hero-title{
font-size:28px;
}

.movie-hero-overview,
.overview{
font-size:14px;
line-height:1.8;
}

.grid{
gap:14px;
}

.card-content{
padding:12px;
}

.card-title{
font-size:13px;
}

}

/* =========================================================
REDUCE MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

*{
animation:none !important;
transition:none !important;
scroll-behavior:auto !important;
}

}

/* =========================================================
FINAL FIX DESKTOP LAYOUT
========================================================= */

header{
height:82px;
}

.header-inner{
min-height:82px;
padding:0;
flex-direction:row !important;
align-items:center !important;
}

.movie-hero{
padding-top:82px;
min-height:980px;
}

.movie-hero-content{
padding-top:80px;
align-items:center;
}

.movie-backdrop-overlay{
background:
linear-gradient(
to right,
rgba(3,7,18,.92) 0%,
rgba(3,7,18,.72) 32%,
rgba(3,7,18,.45) 58%,
rgba(3,7,18,.88) 100%
),
linear-gradient(
to top,
rgba(3,7,18,.96) 0%,
rgba(3,7,18,.15) 42%,
rgba(3,7,18,.72) 100%
);
}

.movie-main-info{
padding-top:40px;
}

.movie-poster-large{
max-width:290px;
}

.movie-hero-title{
font-size:82px;
line-height:.95;
}

.movie-hero-overview{
max-width:760px;
}

.overview{
max-width:760px;
}

.desktop-player-section{
margin-top:-10px;
padding-top:10px;
}

.desktop-player-wrapper{
max-width:1200px;
margin:auto;
}

.desktop-player-image{
aspect-ratio:16/7;
}

.desktop-big-play{
width:110px;
height:110px;
font-size:48px;
}

/* =========================================================
BETTER MOBILE
========================================================= */

@media(max-width:768px){

header{
height:auto;
}

.header-inner{
flex-direction:column !important;
align-items:flex-start !important;
padding:14px 0;
}

.movie-hero{
padding-top:0;
min-height:auto;
}

.movie-hero-content{
padding-bottom:40px;
margin-top:-90px;
}

.movie-main-info{
padding-top:0;
}

.movie-hero-title{
font-size:34px;
line-height:1.05;
}

.desktop-player-image{
aspect-ratio:16/9;
}

.desktop-big-play{
width:82px;
height:82px;
font-size:34px;
}

}

/* =========================================================
ULTRA WIDE SCREEN
========================================================= */

@media(min-width:1600px){

.container{
max-width:1500px;
}

.movie-hero-title{
font-size:96px;
}

.movie-main-info{
max-width:900px;
}

}

/* =========================================================
MOVIE CONTENT AREA
========================================================= */

.movie-content-area{
padding:40px 0 0;
}

.movie-content-grid{
display:grid;
grid-template-columns:
minmax(0,1fr)
320px;
gap:60px;
align-items:start;
}

.movie-main-column{
min-width:0;
}

/* =========================================================
POPULAR TAGS
========================================================= */

.popular-tags-box{
background:#11182b;
border:1px solid rgba(255,255,255,.05);
border-radius:20px;
padding:22px;
margin-bottom:50px;
}

.popular-tags-title{
font-size:28px;
font-weight:900;
margin-bottom:20px;
color:#fff;
}

.movie-tags{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.movie-tag{
display:inline-flex;
align-items:center;
justify-content:center;
height:38px;
padding:0 14px;
border-radius:10px;
background:#1a2642;
border:1px solid rgba(255,255,255,.04);
color:#dbe7ff;
font-size:13px;
font-weight:700;
}

.movie-tag:hover{
background:#23345d;
}

/* =========================================================
SIDEBAR
========================================================= */

.movie-sidebar{
position:sticky;
top:100px;
}

.sidebar-widget{
background:transparent;
}

.sidebar-title{
height:58px;
display:flex;
align-items:center;
justify-content:center;
background:#121a2e;
border-radius:12px;
font-size:15px;
font-weight:800;
text-transform:uppercase;
letter-spacing:.5px;
margin-bottom:22px;
color:#b9c7e6;
}

.sidebar-movies{
display:flex;
flex-direction:column;
gap:22px;
}

.sidebar-movie-item{
display:flex;
align-items:flex-start;
gap:14px;
}

.sidebar-rank{
width:42px;
height:42px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:#20c997;
color:#fff;
font-size:16px;
font-weight:900;
flex-shrink:0;
}

.sidebar-poster{
width:72px;
border-radius:12px;
overflow:hidden;
flex-shrink:0;
}

.sidebar-poster img{
width:100%;
aspect-ratio:2/3;
object-fit:cover;
}

.sidebar-info{
padding-top:4px;
}

.sidebar-movie-title{
font-size:18px;
line-height:1.5;
font-weight:700;
color:#fff;
margin-bottom:6px;
}

.sidebar-meta{
font-size:15px;
font-weight:700;
color:#ffd54f;
}

/* =========================================================
RELATED SECTION
========================================================= */

.related-section{
padding-top:0;
}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:1024px){

.movie-content-grid{
grid-template-columns:1fr;
gap:40px;
}

.movie-sidebar{
position:relative;
top:auto;
}

}

@media(max-width:768px){

.popular-tags-box{
padding:18px;
border-radius:18px;
margin-bottom:40px;
}

.popular-tags-title{
font-size:24px;
margin-bottom:18px;
}

.movie-tag{
height:34px;
padding:0 12px;
font-size:12px;
}

.sidebar-title{
height:54px;
font-size:14px;
}

.sidebar-movie-item{
gap:12px;
}

.sidebar-poster{
width:62px;
}

.sidebar-movie-title{
font-size:15px;
}

.sidebar-meta{
font-size:13px;
}

}

/* =========================================================
PLAYER MESSAGE IMPROVED
========================================================= */

.player-alert{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:40px;
padding:10px 16px;
border-radius:999px;
background:rgba(255,193,7,.12);
border:1px solid rgba(255,193,7,.22);
color:#ffd54f;
font-size:13px;
font-weight:800;
letter-spacing:.3px;
margin-bottom:22px;
}

.player-note{
margin-top:18px;
font-size:13px;
line-height:1.7;
color:#97a6bf;
font-weight:600;
}

/* =========================================================
SEASONS
========================================================= */

.season-tabs{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-bottom:24px;
}

.season-tab{
background:#1f1f1f;
border:none;
padding:12px 18px;
border-radius:10px;
color:#fff;
cursor:pointer;
font-weight:600;
transition:.2s;
}

.season-tab.active{
background:#e50914;
}

.season-content{
display:none;
}

.season-content.active{
display:block;
}

.episode-grid{
display:flex;
flex-direction:column;
gap:14px;
}

.episode-card{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
background:#151515;
padding:18px;
border-radius:14px;
border:1px solid rgba(255,255,255,.06);
}

.episode-number{
font-size:14px;
font-weight:700;
color:#e50914;
min-width:70px;
}

.episode-info{
flex:1;
}

.episode-info h3{
font-size:16px;
margin-bottom:6px;
}

.episode-info p{
font-size:13px;
opacity:.7;
line-height:1.5;
}

.episode-watch-btn{
background:#e50914;
color:#fff;
padding:10px 18px;
border-radius:10px;
text-decoration:none;
font-weight:700;
white-space:nowrap;
}

@media(max-width:768px){

.episode-card{
flex-direction:column;
align-items:flex-start;
}

.episode-watch-btn{
width:100%;
text-align:center;
}

}

/* =========================================================
HEADER SEO NAV
========================================================= */

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.main-nav{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.main-nav a{
color:#fff;
font-size:15px;
font-weight:600;
text-decoration:none;
}

.main-nav a:hover{
opacity:.8;
}

.subnav{
border-top:1px solid rgba(255,255,255,.06);
border-bottom:1px solid rgba(255,255,255,.06);
background:#060b18;
overflow:hidden;
}

.subnav-scroll{
display:flex;
gap:18px;
overflow-x:auto;
padding:12px 0;
white-space:nowrap;
scrollbar-width:none;
}

.subnav-scroll::-webkit-scrollbar{
display:none;
}

.subnav-scroll a{
color:#d7d7d7;
text-decoration:none;
font-size:14px;
}

.subnav-scroll a:hover{
color:#fff;
}

@media(max-width:768px){

.header-inner{
align-items:flex-start;
}

.search-box{
width:100%;
}

.search-box input{
width:100%;
}

}

.meta-link{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 18px;
border-radius:999px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
color:#fff;
font-weight:600;
text-decoration:none;
transition:.2s;
}

.meta-link:hover{
background:rgba(255,255,255,.16);
transform:translateY(-1px);
}

.breadcrumb{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:8px;
padding:18px 0 28px;
font-size:14px;
color:rgba(255,255,255,.72);
}

.breadcrumb a{
color:#fff;
text-decoration:none;
transition:.2s;
}

.breadcrumb a:hover{
opacity:.8;
text-decoration:underline;
}

.breadcrumb span{
color:rgba(255,255,255,.7);
}

/* =========================================================
SOCIAL SHARE
========================================================= */

.movie-social{
position:fixed;
right:24px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:14px;
z-index:50;
}

.social-circle{
width:54px;
height:54px;
border-radius:999px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.08);
backdrop-filter:blur(12px);
color:#fff;
font-size:20px;
font-weight:700;
text-decoration:none;
transition:.2s;
border:1px solid rgba(255,255,255,.08);
}

.social-circle:hover{
transform:translateY(-2px) scale(1.05);
background:rgba(255,255,255,.16);
}

@media(max-width:768px){

.movie-social{
right:14px;
bottom:20px;
top:auto;
transform:none;
flex-direction:row;
}

.social-circle{
width:46px;
height:46px;
font-size:16px;
}

}