
body {
    background-color: #111;
    color: #eee;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
#movies-container, #tv-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px 0;
}
.movie-card {
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

#player {
    width: 100%;
    height: 500px;
    background: #000;
}

@media (max-width: 768px) {
    #player {
        height: 300px;
    }
}
#load-more {
    background: #f80;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

#load-more:hover {
    background: #f60;
}

.section-title {
    color: #fff;
    font-size: 24px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f80;
    display: inline-block;
}
