/* RESET STYLE DASAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #1b1c1e; /* Abu-abu gelap hangat yang sangat soft di mata */
    color: #d1d5db; /* Putih pudar (soft gray) agar tidak silau */
}

/* NAVBAR UTAMA */
.navbar {
    background-color: #232528; /* Sedikit lebih terang dari body */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid #374151; /* Garis pembatas yang sangat tipis dan samar */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e5e7eb;
}

.logo span {
    color: #a7f3d0; /* Aksen Soft Mint yang menenangkan */
}

.search-bar {
    display: flex;
    width: 40%;
}

.search-bar input {
    width: 80%;
    padding: 8px 12px;
    border: 1px solid #4b5563;
    background-color: #1b1c1e;
    color: #fff;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 13px;
}

.search-bar button {
    width: 20%;
    background-color: #374151; /* Tombol pencarian dibuat netral */
    color: #d1d5db;
    border: 1px solid #4b5563;
    border-left: none;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    transition: all 0.2s;
}

.search-bar button:hover {
    background-color: #4b5563;
    color: #fff;
}

/* SUB NAVIGATION / GENRE */
.sub-nav {
    background-color: #232528; 
    padding: 10px 5%;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    border-bottom: 1px solid #2d3139;
}

.sub-nav a {
    color: #9ca3af; /* Warna teks menu yang kalem */
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.2s;
}

.sub-nav a:hover {
    color: #a7f3d0; /* Highlight soft mint saat di-hover */
}

/* CONTAINER GRID FILM */
.featured-section {
    padding: 20px 5%;
    background-color: #1b1c1e;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.btn-more {
    background-color: transparent;
    color: #9ca3af;
    border: 1px solid #4b5563;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-more:hover {
    background-color: #374151;
    color: #fff;
    border-color: #9ca3af;
}

/* CSS GRID UNTUK KARTU FILM */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

/* KARTU FILM */
.movie-card {
    background: #232528;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #2d3139;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.thumbnail {
    position: relative;
    width: 100%;
    height: 230px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9; /* Menurunkan sedikit kecerahan gambar agar menyatu dengan tema soft */
}

/* BADGE RATING DAN EPS */
.badge {
    position: absolute;
    padding: 3px 6px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.rating {
    top: 8px;
    left: 8px;
    background-color: rgba(35, 37, 40, 0.9);
    color: #fcd34d; /* Kuning pastel hangat untuk rating */
}

.eps, .hd {
    top: 8px;
    right: 8px;
    background-color: #34d399; /* Hijau sage/mint yang sangat adem */
    color: #064e3b; /* Teks hijau gelap agar kontrasnya pas dan lembut */
}

.movie-info {
    padding: 12px;
}

.movie-info h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #e5e7eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-info p {
    font-size: 12px;
    color: #9ca3af;
}

/* BANNER INFORMASI */
.info-banner {
    background-color: #2d3748; /* Mengubah hijau mencolok menjadi abu-abu kebiruan yang tenang */
    color: #e2e8f0;
    padding: 15px 5%;
    margin: 20px 0;
    font-size: 14px;
    border-left: 4px solid #a7f3d0; /* Aksen soft mint di sebelah kiri */
    border-radius: 0 6px 6px 0;
}

/* SECTION TERBARU (DIUBAH MENJADI Muted Light Mode) */
.latest-section {
    background-color: #f3f4f6; /* Putih susu/abu-abu super soft */
    padding: 20px 5%;
}

.section-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab {
    background: #e5e7eb;
    color: #4b5563;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.tab.active {
    background-color: #232528; /* Tab aktif dibuat senada dengan warna tema gelap */
    color: #fff;
}

.dark-text h3 {
    color: #1f2937;
}

.genre-tag {
    font-size: 11px;
    color: #6b7280;
}