/* (Salin seluruh kode CSS dari respons saya sebelumnya, karena sudah lengkap) */
/* Pastikan Anda menambahkan style untuk .section-title, .btn, .btn-sm, dll. */

:root {
    --color-bg: #121212; --color-surface: #1e1e1e; --color-primary: #bb86fc;
    --color-text: #e0e0e0; --color-text-secondary: #a0a0a0; --font-family: 'Inter', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
body { background-color: var(--color-bg); color: var(--color-text); font-family: var(--font-family); margin: 0; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.site-header { padding: 20px 0; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); background-color: rgba(30, 30, 30, 0.8); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-logo { font-size: 1.5em; font-weight: 900; text-decoration: none; color: var(--color-text); }
.site-logo span { color: var(--color-primary); }
nav a { color: var(--color-text-secondary); text-decoration: none; margin-left: 20px; transition: color 0.3s; }
nav a:hover { color: var(--color-primary); }
.site-footer { padding: 40px 0; margin-top: 40px; border-top: 1px solid #333; text-align: center; font-size: 0.9em; color: var(--color-text-secondary); }
.site-footer a { color: var(--color-primary); }
.hero { text-align: center; padding: 60px 0; }
.hero h1 { font-size: 3em; margin-bottom: 10px; font-weight: 900; }
.hero p { font-size: 1.2em; color: var(--color-text-secondary); }
.section-title { margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--color-primary); }
.section-title h2 { margin: 0; font-size: 1.8em; }
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.movie-card { background-color: var(--color-surface); border-radius: 8px; overflow: hidden; text-decoration: none; color: var(--color-text); position: relative; border: 1px solid #333; transition: transform 0.3s, box-shadow 0.3s; }
.movie-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.movie-card img { width: 100%; height: auto; display: block; aspect-ratio: 2/3; object-fit: cover; }
.movie-card-content { padding: 15px; }
.movie-card h3 { margin: 0 0 10px; font-size: 1.1em; }
.movie-card .rating { color: var(--color-primary); font-weight: bold; }
.article-header { position: relative; padding: 40px 0; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.backdrop-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(18,18,18,1) 0%, rgba(18,18,18,0.6) 50%, rgba(18,18,18,1) 100%); }
.header-content { position: relative; display: flex; align-items: flex-end; gap: 30px; }
.header-content .poster { width: 200px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); flex-shrink: 0;}
.header-text h1 { font-size: 3em; margin: 0; line-height: 1.1; }
.header-text h1 span { font-weight: 400; color: var(--color-text-secondary); }
.tagline { font-style: italic; color: var(--color-text-secondary); font-size: 1.2em; margin: 10px 0; }
.article-body { display: flex; flex-wrap: wrap; gap: 40px; padding: 40px 0; }
.main-content { flex: 3; min-width: 60%; }
.sidebar { flex: 1; background: var(--color-surface); padding: 20px; border-radius: 8px; align-self: flex-start; min-width: 250px;}
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li { margin-bottom: 10px; }
.btn { display: block; text-align: center; padding: 15px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: background-color 0.3s, transform 0.2s; }
.btn-watch { background-color: var(--color-primary); color: var(--color-bg); margin-top: 20px; }
.btn-watch:hover { background-color: #a067e6; transform: scale(1.05); }
.btn-sm { padding: 8px 12px; font-size: 0.9em; margin-top: 10px; background-color: #333; color: var(--color-text); }
.btn-sm:hover { background-color: var(--color-primary); color: var(--color-bg); }
.watch-container { padding-top: 40px; padding-bottom: 40px; }
.disclaimer-box { background-color: #4a2121; border: 1px solid #ff5252; color: #ffdada; padding: 20px; border-radius: 8px; margin-bottom: 30px; }
.streaming-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background-color: #000; border-radius: 8px; }
.streaming-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-error { background-color: #000; color: #fff; display: flex; align-items: center; justify-content: center; position: absolute; top:0; left:0; right:0; bottom:0; }
.seasons-list { display: grid; grid-template-columns: 1fr; gap: 15px; }
.season-card { background-color: var(--color-surface); border-radius: 8px; overflow: hidden; display: flex; align-items: center; gap: 15px; transition: background-color 0.3s; }
.season-card:hover { background-color: #2c2c2c; }
.season-card img { width: 80px; height: 120px; object-fit: cover; }
.season-info h3 { margin: 0 0 5px; font-size: 1.1em; }

/* Style untuk Form Pencarian */
.search-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.search-form input {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    border: 2px solid var(--color-surface);
    border-radius: 8px;
    background-color: var(--color-surface);
    color: var(--color-text);
    font-size: 1em;
}
.search-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    background-color: var(--color-primary);
    color: var(--color-bg);
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.search-form button:hover {
    background-color: #a067e6;
}
/* === MODERN NAVIGATION STYLE === */

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-nav a, .dropdown-btn {
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: color 0.3s, background-color 0.3s;
    font-size: 1em;
    font-family: var(--font-family);
    background: none;
    border: none;
    cursor: pointer;
}
.main-nav a:hover, .dropdown-btn:hover {
    color: var(--color-text);
    background-color: var(--color-surface);
}

.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 110%; 
    left: 0;
    background-color: var(--color-surface);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1001;
    border-radius: 8px;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #333;
}
.dropdown-content a {
    color: var(--color-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Mobile Navigation (Hamburger Menu) --- */
.nav-toggle {
    display: none; /* Sembunyikan di desktop */
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2000;
}
.hamburger {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s ease-in-out;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Animasi Hamburger menjadi 'X' */
.nav-open .hamburger { background: transparent; }
.nav-open .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-open .hamburger::after { transform: rotate(-45deg); top: 0; }

/* Tampilan untuk layar kecil */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
 .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px 20px;
    gap: 10px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0px 15px rgba(0,0,0,0.5);
    overflow-y: auto; /* <-- TAMBAHKAN BARIS INI */
}
    .main-nav.nav-open {
        transform: translateX(0);
    }
    .dropdown { width: 100%; }
    .dropdown-btn { text-align: left; width: 100%; }
    .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    /* Hapus max-height dan overflow dari sini */
}
    .dropdown-btn.active + .dropdown-content {
        display: block; /* Tampilkan jika tombolnya aktif */
    }
}