/* --- FONT & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root { 
    --primary: #e50914; 
    --dark: #141414; 
    --modal-bg: #181818; 
    --gray: #bcbcbc; 
    --content-width: 1100px; 
}

* { box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }

body { 
    margin: 0; 
    font-family: 'Roboto', sans-serif; 
    background-color: var(--dark); 
    color: #fff; 
    overflow-x: hidden; 
    padding-bottom: 20px; 
}

/* NAVBAR */
header { position: fixed; top: 0; width: 100%; height: 60px; z-index: 1000; background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 100%); transition: 0.3s; display: flex; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.navbar-inner { width: 100%; max-width: var(--content-width); padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 100%; }
.nav-left { display: flex; align-items: center; height: 100%; }
.hamburger { display: none; font-size: 24px; cursor: pointer; color: white; margin-right: 15px; }
.logo { color: var(--primary); font-size: 24px; font-weight: 90; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; margin-right: 30px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); display: flex; align-items: center; }
.logo img { max-height: 27px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; padding: 0; margin: 0; gap: 15px; }
.nav-links li { font-size: 13px; font-weight: 500; color: #e5e5e5; cursor: pointer; transition: 0.2s; white-space: nowrap; }
.nav-links li:hover { color: #fff; font-weight: 700; }
.search-box { display: flex; align-items: center; background: rgba(0,0,0,0.7); border: 1px solid #fff; padding: 4px 10px; border-radius: 4px; transition: 0.3s; }
.search-box input { background: transparent; border: none; color: white; font-size: 13px; width: 200px; }
.search-box button { background: transparent; border: none; color: #fff; cursor: pointer; font-size: 14px; }

/* SIDEBAR */
.sidebar { position: fixed; top: 0; left: -250px; width: 250px; height: 100%; background: #000; z-index: 2000; transition: 0.3s ease; padding-top: 20px; box-shadow: 5px 0 15px rgba(0,0,0,0.8); display: flex; flex-direction: column; }
.sidebar.active { left: 0; }
.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1999; display: none; backdrop-filter: blur(2px); }
.sidebar-overlay.active { display: block; }
.sidebar-header { padding: 0 20px 20px 20px; border-bottom: 1px solid #333; display: flex; align-items: center; justify-content: space-between; }
.sidebar-menu li { padding: 15px 20px; color: #ccc; font-weight: 600; font-size: 15px; border-bottom: 1px solid #222; cursor: pointer; transition: 0.2s; }
.sidebar-menu li:hover { color: white; }

/* IKLAN HOME */
.ad-slot { width: 100%; height: 65px; background-color: #000; border-radius: 4px; overflow: hidden; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.3); border: 1px solid #333; background-size: 100% 100%; background-position: center; background-repeat: no-repeat; display: none; }
.ads-container { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; width: 100%; max-width: var(--content-width); margin: 70px auto 5px auto; padding: 0 20px; }
.mid-ads-container { display: flex; justify-content: space-between; gap: 10px; width: 100%; margin: 30px 0; }

/* HERO */
.hero { position: relative; width: 100%; max-width: var(--content-width); margin: 5px auto 30px auto; height: 50vh; max-height: 420px; min-height: 350px; background-size: cover; background-position: center top; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.7); transition: background-image 1s ease-in-out; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); }
.hero-gradient { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; background: linear-gradient(to top, var(--dark), transparent); }
.hero-content { position: absolute; bottom: 40px; left: 0; width: 100%; padding: 0 40px; z-index: 10; text-align: left; }
.hero-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 10px; line-height: 1.1; text-transform: uppercase; text-shadow: 2px 2px 8px rgba(0,0,0,0.9); opacity: 0; animation: fadeUp 0.8s forwards; }
.hero-desc { font-size: 1rem; line-height: 1.5; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.9); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; color: #e5e5e5; max-width: 60%; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-buttons { opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.btn { border: none; padding: 0.7rem 2rem; border-radius: 4px; font-weight: bold; font-size: 1rem; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: 0.2s; }
.btn-play { background: #fff; color: #000; } .btn-play:hover { background: rgba(255,255,255,0.75); }
.btn-info { background: rgba(109, 109, 110, 0.7); color: white; margin-left: 10px; } .btn-info:hover { background: rgba(109, 109, 110, 0.4); }

/* CONTENT ROWS */
.main-wrapper { width: 100%; max-width: var(--content-width); margin: 0 auto; padding: 0 20px; }
.row { margin: 15px 0; min-height: 160px; } 
.row-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid var(--primary); padding-bottom: 5px; margin-bottom: 10px; }
.row h2 { font-size: 1.4rem; font-weight: 900; margin: 0; color: #fff; line-height: 1; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: none; }
.see-more-btn { font-size: 0.8rem; font-weight: bold; color: #b3b3b3; cursor: pointer; display: flex; align-items: center; gap: 4px; transition: 0.2s; }
.see-more-btn:hover { color: #fff; }
.row-posters, .grid-container-full, .player-recs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.row-scroll-x { display: flex; overflow-x: auto; gap: 8px; scroll-behavior: smooth; padding-bottom: 5px; }
.row-scroll-x::-webkit-scrollbar { display: none; }
.row-scroll-x .movie-card { min-width: 150px; max-width: 150px; flex-shrink: 0; }
.movie-card { aspect-ratio: 2 / 3; border-radius: 4px; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; background: #202020; border: 1px solid #333; }
.movie-card:hover { transform: scale(1.08); z-index: 50; box-shadow: 0 0 15px rgba(0,0,0,0.8); border-color: #fff; }
.movie-img { width: 100%; height: 100%; object-fit: cover; }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent); padding: 8px; display: flex; flex-direction: column; justify-content: flex-end; opacity: 1; }
.card-title { font-size: 11px; font-weight: bold; color: #fff; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-shadow: 1px 1px 2px rgba(0,0,0,1); }
.card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 9px; color: #ddd; }
.rating-box { color: #46d369; font-weight: bold; }
.hd-badge { border: 1px solid #aaa; padding: 0 3px; border-radius: 2px; font-size: 9px; color: #ccc; }

/* FOOTER */
footer { background: #111; padding: 60px 0 30px 0; margin-top: 60px; border-top: 1px solid #222; font-size: 13px; color: #757575; }
.footer-wrapper { max-width: var(--content-width); margin: 0 auto; padding: 0 20px; }
.social-icons { margin-bottom: 30px; display: flex; gap: 20px; }
.social-icons a { color: #fff; font-size: 24px; text-decoration: none; transition: 0.3s; }
.social-icons a:hover { color: var(--primary); transform: scale(1.1); }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h3 { color: var(--primary); font-size: 16px; font-weight: 900; margin-bottom: 20px; margin-top: 0; text-transform: uppercase; letter-spacing: 1px; border-left: 3px solid var(--primary); padding-left: 10px; }
.footer-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-links-vertical { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #757575; text-decoration: none; font-size: 13px; transition: 0.2s; font-weight: 500; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-copyright { font-size: 11px; margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; text-align: center; color: #555; }
.service-code-btn { background: transparent; border: 1px solid #757575; color: #757575; padding: 6px 12px; cursor: pointer; font-size: 12px; margin-top: 10px; transition: 0.2s; }
.service-code-btn:hover { color: #fff; border-color: #fff; }

/* PAGES & MODALS */
#grid-view { display: none; padding-top: 80px; min-height: 100vh; background: var(--dark); }
.grid-header-main { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 15px;}
.back-btn-grid { font-size: 24px; cursor: pointer; width: 40px; height: 40px; background: #333; border-radius: 50%; display: flex; justify-content: center; align-items: center; transition:0.2s; }
.load-more-btn { display: block; margin: 40px auto; padding: 10px 30px; background: var(--primary); color: white; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }

/* FILTER POPUP */
.filter-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 5000; display: none; justify-content: center; align-items: center; }
.filter-content { background: #1f1f1f; width: 90%; max-width: 500px; padding: 20px; border-radius: 8px; border: 1px solid #333; max-height: 80vh; overflow-y: auto; }
.filter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 15px; }
.filter-item { background: #333; padding: 10px; text-align: center; font-size: 13px; border-radius: 4px; cursor: pointer; transition: 0.2s; }
.filter-item:hover { background: var(--primary); color: white; }

/* DETAIL MODAL */
.detail-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 4000; overflow-y: auto; backdrop-filter: blur(8px); animation: fadeIn 0.3s; }
.detail-content { background: #181818; width: 90%; max-width: 650px; margin: 5% auto; border-radius: 10px; overflow: hidden; position: relative; box-shadow: 0 0 50px rgba(0,0,0,0.9); }
.detail-close { position: absolute; top: 15px; right: 15px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.7); color: white; font-size: 20px; display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 2002; border: 2px solid rgba(255,255,255,0.7); }
.modal-ads-box { padding: 10px; background: #111; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid #333; }
.modal-ad-slot { width: 100%; height: 60px; background-color: #000; border-radius: 4px; background-size: 100% 100%; background-position: center; cursor: pointer; display: none; }
.detail-header { position: relative; height: 350px; width: 100%; background-size: cover; background-position: center top; }
.detail-gradient { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, #181818 0%, transparent 60%); }
.detail-info-block { position: absolute; bottom: 20px; left: 30px; width: 80%; text-shadow: 2px 2px 10px #000; }
.detail-title { font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 10px; }
.detail-actions { display: flex; gap: 10px; margin-bottom: 15px; }
.detail-meta-row { display: flex; gap: 15px; align-items: center; font-weight: bold; color: #fff; }
.match-text { color: #46d369; }
.detail-body { padding: 0 30px 30px 30px; display: grid; grid-template-columns: 1fr; gap: 20px; } 
.synopsis { font-size: 15px; line-height: 1.6; color: #ddd; }
.detail-sidebar { font-size: 13px; color: #777; } .detail-sidebar span { color: #ddd; }
.detail-label { display: block; margin-bottom: 5px; }

/* PLAYER PAGE */
#player-view { display: none; position: fixed; inset: 0; background: #000; z-index: 3000; flex-direction: column; overflow-y: auto; }
.player-header-custom { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; width: 100%; }
.back-btn-custom { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 16px; font-weight: bold; color: #ccc; transition: 0.2s; flex-shrink: 0; }
.back-btn-custom:hover { color: #fff; }
.back-icon-svg { width: 32px; height: 32px; fill: var(--primary); }
.marquee-box { flex-grow: 1; height: 32px; background: #111; border: 1px solid #333; border-radius: 4px; overflow: hidden; position: relative; display: flex; align-items: center; }
.marquee-text { position: absolute; white-space: nowrap; font-size: 13px; font-weight: bold; letter-spacing: 0.5px; padding-left: 100%; will-change: transform; animation-timing-function: linear; }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

.watch-content-container { width: 100%; max-width: var(--content-width); margin: 0 auto; padding: 20px; }
.player-ads-box { display: flex; justify-content: space-between; gap: 15px; width: 100%; margin-bottom: 15px; }
.player-bottom-ads { margin-top: 15px; border-top: 1px solid #333; padding-top: 15px; display: flex; gap: 10px; margin-bottom: 20px; }
.player-ad-slot { flex: 1; height: 60px; background-color: #050505; border: 1px solid #333; border-radius: 4px; background-size: 100% 100%; background-position: center; background-repeat: no-repeat; cursor: pointer; display: none; }
.player-wrapper { width: 100%; position: relative; padding-top: 56.25%; background: black; border-radius: 4px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.7); }
.player-iframe { position: absolute; top:0; left:0; width: 100%; height: 100%; border: none; z-index: 1; }
.player-overlay-ad { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 50; display: none; justify-content: center; align-items: center; backdrop-filter: blur(2px); padding: 25px; }
.overlay-ad-content { position: relative; max-width: 100%; max-height: 100%; display: flex; justify-content: center; align-items: center; animation: fadeIn 0.4s; }
.overlay-ad-content img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; border-radius: 6px; border: 1px solid #444; box-shadow: 0 0 20px rgba(0,0,0,0.8); }
.overlay-close-btn { position: absolute; top: -15px; right: -15px; width: 35px; height: 35px; background: var(--primary); color: white; border: 2px solid white; border-radius: 50%; cursor: pointer; font-weight: bold; font-size: 16px; display: flex; justify-content: center; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); z-index: 52; transition: 0.2s; }
.overlay-close-btn:hover { transform: scale(1.1); background: red; }
.player-watermark-ad { position: absolute; top: 0; left: 0; width: 17%; max-width: 200px; min-width: 60px; z-index: 25; opacity: 0.8; transition: opacity 0.3s, transform 0.2s; display: none; margin: 0; padding: 5px; }
.player-watermark-ad:hover { opacity: 1; transform: scale(1.05); z-index: 60; }
.player-watermark-ad img { width: 100%; height: auto; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8)); }
.player-controls-ui { margin-top: 15px; background: #141414; padding: 15px; border-radius: 4px; border: 1px solid #333; }
.controls-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.server-label { font-size: 12px; font-weight: 700; color: #aaa; text-transform: uppercase; }
.server-tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; }
.server-tabs::-webkit-scrollbar { height: 4px; }
.server-tabs::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
.server-btn { background: #222; border: 1px solid #444; color: #ccc; padding: 8px 15px; border-radius: 4px; cursor: pointer; font-size: 12px; font-weight: bold; transition: 0.2s; flex-shrink: 0; }
.server-btn:hover, .server-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.player-meta-info { display: flex; gap: 20px; margin-top: 25px; padding: 0 10px; align-items: flex-start; }
.p-meta-thumb { width: 120px; border-radius: 4px; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.p-meta-text { flex-grow: 1; }
.p-meta-title { font-size: 28px; font-weight: bold; margin-bottom: 10px; line-height: 1.2; }
.p-meta-stats { display: flex; gap: 15px; font-size: 14px; font-weight: bold; color: #bcbcbc; margin-bottom: 15px; align-items: center; }
.p-meta-desc { font-size: 15px; line-height: 1.6; color: #ccc; max-width: 800px; }
#series-ui-container { margin-top: 30px; padding: 0 10px; }
.season-tabs { display: flex; gap: 20px; overflow-x: auto; border-bottom: 1px solid #333; margin-bottom: 20px; padding-bottom: 10px; }
.season-tab-item { font-size: 16px; font-weight: bold; color: #999; cursor: pointer; padding: 5px 10px; white-space: nowrap; border: 1px solid transparent; }
.season-tab-item.active { color: white; border: 1px solid #555; background: #222; border-radius: 4px; }
.episodes-container { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 20px; scroll-behavior: smooth; }
.episodes-container::-webkit-scrollbar { height: 6px; }
.episodes-container::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
.ep-card { min-width: 200px; max-width: 200px; cursor: pointer; background: #1f1f1f; border-radius: 4px; overflow: hidden; transition: 0.3s; flex-shrink: 0; }
.ep-card:hover { transform: scale(1.02); background: #2a2a2a; }
.ep-card.active { border: 2px solid var(--primary); }
.ep-img-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; }
.ep-img { width: 100%; height: 100%; object-fit: cover; }
.ep-play-icon { position: absolute; top:50%; left:50%; transform:translate(-50%, -50%); font-size: 30px; color: rgba(255,255,255,0.9); display: none; }
.ep-card:hover .ep-play-icon { display: block; }
.ep-info { padding: 10px; }
.ep-num { font-size: 13px; font-weight: bold; color: #fff; margin-bottom: 3px; display: flex; justify-content: space-between; }
.ep-title { font-size: 12px; color: #bbb; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.ep-desc { font-size: 11px; color: #777; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.player-recs-container { margin-top: 40px; padding: 20px 10px; border-top: 1px solid #333; }
.player-recs-title { font-size: 20px; font-weight: bold; margin-bottom: 15px; color: #eee; border-left: 4px solid var(--primary); padding-left: 10px; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    header { height: 50px; } .navbar-inner { padding: 0 10px; } .nav-links { display: none; } .hamburger { display: block; font-size: 22px; margin-right: 5px; margin-top: -2px; }
    .search-box { background: rgba(0,0,0,0.5); border: 1px solid #555; padding: 3px 6px; width: auto; } .search-box input { width: 100px; padding-left: 5px; font-size: 12px; }
    .logo { font-size: 18px; margin-right: 10px; }
    .ads-container { display: grid; grid-template-columns: 1fr; gap: 5px; margin-top: 55px; } .ad-slot { display: block !important; height: 40px !important; } .modal-ad-slot { display: block !important; height: 50px !important; width: 100% !important; }
    .row { margin: 10px 0; } .row-header { margin-bottom: 5px; padding-bottom: 3px; } .row h2 { font-size: 1.1rem; }
    .hero { height: 35vh; min-height: 250px; max-height: 320px; margin-top: 5px; margin-bottom: 15px; } .hero-content { bottom: 10px; padding: 0 15px; width: 100%; } .hero-title { font-size: 1.4rem; margin-bottom: 5px; } .hero-desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 0.8rem; margin-bottom: 10px; max-width: 95%; text-shadow: 1px 1px 2px #000; line-height: 1.3; } .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .row-scroll-x .movie-card { min-width: calc((100% - 16px) / 3) !important; max-width: calc((100% - 16px) / 3) !important; flex-shrink: 0; } .main-wrapper .row .row-posters { display: grid; grid-template-columns: repeat(3, 1fr) !important; gap: 5px; overflow: visible; }
    #top-category-container .row .row-scroll-x { display: flex; overflow-x: auto; gap: 8px; } #top-category-container .row .row-scroll-x .movie-card { min-width: calc((100% - 16px) / 3) !important; } .movie-card { border: none; } 
    .watch-content-container { padding: 5px 10px; } .player-header-custom { margin-bottom: 8px; gap: 4px; justify-content: flex-start; } .back-btn-custom { font-size: 14px; gap: 2px; margin-right: 5px; } .back-icon-svg { width: 24px; height: 24px; } .marquee-box { height: 28px; } .marquee-text { font-size: 11px; }
    .player-ads-box, .player-bottom-ads { display: flex !important; flex-direction: column !important; width: 100% !important; gap: 8px !important; margin-bottom: 10px !important; } .player-ad-slot { display: block !important; width: 100% !important; height: 50px !important; min-height: 50px; background-size: 100% 100% !important; } .player-watermark-ad { width: 25%; top: 0; left: 0; max-width: none; margin: 0; padding: 2px; }
    .controls-header { margin-bottom: 5px; } .server-btn { padding: 6px 12px; font-size: 11px; } .server-label { font-size: 11px; margin-right: 5px; }
    .player-meta-info { display: block; margin-top: 15px; padding-bottom: 15px; } .p-meta-thumb { float: left; width: 95px; margin-right: 15px; margin-bottom: 5px; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.5); } .p-meta-text { display: block; } .p-meta-title { font-size: 1.3rem; margin-bottom: 5px; line-height: 1.2; } .p-meta-stats { font-size: 11px; gap: 10px; margin-bottom: 10px; display: flex; align-items: center; } .p-meta-desc { font-size: 0.9rem; line-height: 1.5; color: #ccc; margin-top: 5px; display: block; }
    .episodes-container { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 8px; overflow-x: hidden; overflow-y: auto; padding-bottom: 0; max-height: 350px; border-bottom: 1px solid #333; } .ep-card { min-width: unset !important; max-width: unset !important; width: 100%; background: #222; border-radius: 4px; border: none; } .ep-img-wrapper { aspect-ratio: 16/9; width: 100%; } .ep-info { padding: 6px; } .ep-num { font-size: 10px; color: var(--primary); margin-bottom: 2px; } .ep-title { font-size: 10px; font-weight: normal; margin-bottom: 0; } .ep-desc { display: none; } 
    .player-recs-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 5px; } .player-recs-title { font-size: 1.1rem; margin-bottom: 10px; }
    .detail-content { width: 95%; max-width: 100%; margin: 10% auto; } .detail-header { height: 250px; } .player-overlay-ad { padding: 15px; } .mid-ads-container { flex-direction: column; }
    /* Footer Mobile */
    .footer-columns { grid-template-columns: 1fr; gap: 30px; }
    .footer-sub-grid { gap: 8px; }
}