*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#000;
    color:#fff;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#111;
}

.logo img{
    height:60px;
}

.app-btn{
    background:#E50914;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.app-btn:hover{
    transform:scale(1.05);
}

/* SEARCH */

.search-box{
    text-align:center;
    margin-top:20px;
}

.search-box input{
    width:80%;
    max-width:650px;
    padding:16px 22px;
    border:none;
    border-radius:40px;
    background:#1f1f1f;
    color:white;
    outline:none;
    font-size:16px;
}

/* HERO */

.hero{
    text-align:center;
    min-height:500px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    color:#aaa;
    margin-bottom:25px;
}

.watch-btn{
    background:#E50914;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.watch-btn:hover{
    transform:scale(1.05);
}

/* FEATURED */

.featured{
    width:90%;
    max-width:1200px;
    margin:50px auto;
    padding:80px 40px;
    border-radius:20px;
    background:linear-gradient(135deg,#1a1a1a,#2d2d2d);
    text-align:center;
}

.featured h2{
    font-size:50px;
    margin-bottom:15px;
}

.featured p{
    color:#ddd;
    margin-bottom:25px;
}

/* SECTION */

.section{
    padding:40px;
}

.section h2{
    font-size:52px;
    margin-bottom:25px;
}

/* CATEGORIES */

.categories{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.categories button{
    background:#1a1a1a;
    color:white;
    border:1px solid #333;
    padding:14px 24px;
    border-radius:14px;
    cursor:pointer;
    transition:.3s;
    font-size:18px;
}

.categories button:hover{
    background:#E50914;
    border-color:#E50914;
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card{
    width:100%;
    height:320px;
    background:#1a1a1a;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card h3{
    text-align:center;
    padding:15px;
}

/* APP SECTION */

.app-card{
    width:90%;
    max-width:1200px;
    margin:60px auto;
    background:#151515;
    border-radius:20px;
    padding:40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.app-left h2{
    font-size:50px;
    margin-bottom:15px;
}

.app-left p{
    color:#bbb;
}

.phone-icon{
font-size:140px;
flex-shrink:0;
}

/* FOOTER */

.footer{
    background:#111;
    text-align:center;
    padding:50px 20px;
    margin-top:60px;
}

.footer-logo{
    height:70px;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:20px;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-links a:hover{
    color:#E50914;
}

/* MOBILE */

@media (max-width:768px){

nav{
padding:15px 20px;
}

.hero h1{
font-size:38px;
}

.section{
padding:25px;
}

.cards{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.card{
height:260px;
}

.card img{
height:200px;
}

.categories button{
width:100%;
max-width:180px;
font-size:16px;
}

.app-card{
flex-direction:column;
text-align:center;
}

.phone-icon{
font-size:90px;
margin-top:20px;
}

.video-wrapper{
width:280px;
}

}

/* DRAMA PAGE */

/* ================= DRAMA PAGE ================= */

.drama-hero{

height:500px;

background:linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.85)
);

position:relative;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;
}

.overlay-nav{

position:absolute;

top:0;

left:0;

width:100%;

padding:20px 50px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:10;
}

.drama-overlay h1{

font-size:65px;

margin-bottom:20px;
}

.drama-meta{

display:flex;

gap:25px;

flex-wrap:wrap;

justify-content:center;

font-size:18px;

color:#ddd;
}

/* PLAYER */

.player-section{

padding:50px 20px;
}

.video-wrapper{

width:340px;

margin:auto;

border-radius:25px;

overflow:hidden;

box-shadow:0 0 35px rgba(0,0,0,.6);
}

#player{

width:100%;

aspect-ratio:9/16;
}

/* BUTTONS */

.video-actions{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin:40px 0;
}

.action-btn{

background:#161616;

color:white;

border:1px solid #333;

padding:14px 26px;

border-radius:14px;

cursor:pointer;

font-size:16px;

transition:.3s;
}

.action-btn:hover{

background:#E50914;

border-color:#E50914;
}

/* STORY */

.story-box{

width:90%;

max-width:1100px;

margin:50px auto;

background:#111;

padding:35px;

border-radius:20px;
}

.story-box h2{

font-size:40px;

margin-bottom:20px;
}

.story-box p{

line-height:1.8;

color:#bbb;
}

/* MOBILE */

@media(max-width:768px){

.overlay-nav{

padding:15px 20px;
}

.drama-overlay h1{

font-size:36px;
}

.drama-meta{

font-size:14px;

gap:12px;
}

.video-wrapper{

width:280px;
}

.story-box{

padding:25px;
}

.story-box h2{

font-size:30px;
}

}

/* DOWNLOAD PAGE */

.download-page{

width:90%;

max-width:1200px;

margin:70px auto;

display:flex;

justify-content:space-between;

align-items:center;

gap:50px;
}

.download-left{

flex:1;
}

.download-left h1{

font-size:60px;

margin-bottom:20px;
}

.download-left p{

color:#bbb;

font-size:18px;

margin-bottom:30px;
}

.download-left ul{

list-style:none;

line-height:2.2;

font-size:20px;
}

.download-app-btn{

margin-top:20px;

background:#E50914;

color:white;

border:none;

padding:16px 30px;

border-radius:12px;

cursor:pointer;

font-size:18px;
}

.mobile-mockup{

font-size:180px;
}

@media(max-width:768px){

.download-page{

flex-direction:column;

text-align:center;
}

.download-left h1{

font-size:40px;
}

.mobile-mockup{

font-size:120px;
}

}