/* General */
body { font-family: sans-serif; margin:0; padding:0; background:#000; color:#fff;}
.container{width:95%; margin:auto;}
.site-header{display:flex; justify-content:space-between; align-items:center; padding:10px; background:#222; color:#fff;}
.main-nav a{margin:0 10px; color:#fff; text-decoration:none;}
.main-nav a:hover{color:#ff69b4;}
.categories{display:flex; flex-wrap:wrap; margin:15px 0;}
.categories button{padding:6px 12px; margin:5px; border-radius:5px; border:1px solid #ff69b4; background:transparent; color:#fff; cursor:pointer; transition:0.2s;}
.categories button:hover{background:#ff69b4; color:#000;}
.featured-section, .latest-section{margin-bottom:25px; padding:10px; border-radius:8px;}
#featured, #mostFavorite, #topIMDB{background:#111; padding:15px; border-radius:8px;}
#latest{background:transparent;}
.section-header{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px;}
.section-header h2{color:#fff; font-size:1.3em;}
.section-header a.view-more{color:#ff69b4; text-decoration:none;}
.section-header a.view-more:hover{text-decoration:underline;}
.gallery{display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); gap:10px;}
@media(min-width:1024px){.gallery{grid-template-columns:repeat(6,1fr);}}
@media(max-width:600px){.gallery{grid-template-columns:repeat(2,1fr);}}
.movie-item{background:rgba(255,255,255,0.05); border-radius:6px; padding:5px; text-align:center;}
.movie-item img{width:100%; height:180px; object-fit:cover; border-radius:5px;}
.movie-item p{margin:5px 0 0; font-size:14px; color:#fff;}
.dl-btn{background:transparent; border:1px solid #ff69b4; color:#ff69b4; padding:5px 10px; margin:2px; border-radius:4px; text-decoration:none; display:inline-block; transition:0.2s;}
.dl-btn:hover{background:#ff69b4; color:#000;}
.site-footer{text-align:center; padding:15px 0; color:#fff; font-size:14px;}
.ad-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.9);display:flex;justify-content:center;align-items:center; z-index:999;}
.ad-content{position:relative;}
.skip-btn{position:absolute;top:5px;right:5px;padding:5px 10px; cursor:pointer;}
.hidden{display:none;}
