/* TMDB Background Styles */
body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay for readability */
    z-index: -1;
}

.container {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

header {
    background-color: rgba(20, 20, 30, 0.8);
}

.tmdb-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(30, 30, 40, 0.7);
    border-radius: 8px;
    color: #fff;
}

.tmdb-poster {
    width: 120px;
    border-radius: 5px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.tmdb-details h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
}

.tmdb-details p {
    margin-top: 5px;
    color: #ddd;
}

.tmdb-rating {
    display: inline-block;
    background-color: #fbc02d;
    color: #000;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .tmdb-info {
        flex-direction: column;
        text-align: center;
    }
    
    .tmdb-poster {
        margin-right: 0;
        margin-bottom: 15px;
    }
}