/* RESET STYLE DASAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #141414;
    color: #fff;
}

/* NAVBAR UTAMA */
.navbar {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 3px solid #ec008c;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #ec008c;
}

.search-bar {
    display: flex;
    width: 40%;
}

.search-bar input {
    width: 80%;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search-bar button {
    width: 20%;
    background-color: #ec008c;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

/* SUB NAVIGATION / GENRE */
.sub-nav {
    background-color: #f7e312;
    padding: 10px 5%;
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.sub-nav a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

/* CONTAINER GRID FILM */
.featured-section {
    padding: 20px 5%;
    background-color: #0b0b0b;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.btn-more {
    background-color: #ec008c;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

/* CSS GRID UNTUK KARTU FILM */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

/* KARTU FILM */
.movie-card {
    background: #1f1f1f;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
}

.movie-card:hover {
    transform: scale(1.03);
}

.thumbnail {
    position: relative;
    width: 100%;
    height: 230px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE RATING DAN EPS */
.badge {
    position: absolute;
    padding: 2px 5px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
}

.rating {
    top: 5px;
    left: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #f7e312;
}

.eps, .hd {
    top: 5px;
    right: 5px;
    background-color: #ec008c;
    color: white;
}

.movie-info {
    padding: 10px;
}

.movie-info h3 {
    font-size: 14px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-info p {
    font-size: 12px;
    color: #bbb;
}

/* BANNER INFORMASI */
.info-banner {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 5%;
    margin: 20px 0;
    font-size: 14px;
    border-left: 5px solid #28a745;
}

/* SECTION TERBARU (BACKGROUND PUTIH/TERANG) */
.latest-section {
    background-color: #f8f9fa;
    padding: 20px 5%;
}

.section-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab {
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: bold;
}

.tab.active {
    background-color: #ec008c;
    color: white;
}

.dark-text h3 {
    color: #000;
}
.genre-tag {
    font-size: 11px;
    color: #6c757d;
}