/* Giao diện tối hiện đại */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #111;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #1a1a1a;
    border-bottom: 2px solid #ff3e3e;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff3e3e;
}

#searchInput {
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    background-color: #333;
    color: white;
    outline: none;
    width: 250px;
}

/* Khu vực phát video */
.player-section {
    padding: 20px 5%;
    background-color: #000;
}

.player-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background-color: #111;
    border-radius: 8px;
    overflow: hidden;
}

video {
    width: 100%;
    display: block;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 62, 62, 0.8);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.playing-title {
    margin-top: 15px;
    color: #ff3e3e;
}

.playing-desc {
    color: #ccc;
    margin-top: 5px;
    font-size: 14px;
}

/* Danh sách phim dạng Grid */
.catalog-section {
    padding: 40px 5%;
}

.section-title {
    margin-bottom: 20px;
    border-left: 4px solid #ff3e3e;
    padding-left: 10px;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.movie-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.movie-card:hover {
    transform: scale(1.05);
    border: 1px solid #ff3e3e;
}

.movie-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.movie-info {
    padding: 10px;
}

.movie-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-tag {
    display: inline-block;
    background-color: #ff3e3e;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #222;
}
