body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #eee;
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    margin: auto;
    width: 95%;
    background-color: #1e1e1e;
    box-shadow: 0 0 10px #000;
}
td {
    padding: 10px;
    vertical-align: top;
}
.header {
    background-color: #111;
    color: #00ffc3;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 25px;
    text-shadow: 0 0 5px #00ffc3;
}
.menu {
    background-color: #222;
    text-align: center;
}
.menu a {
    color: #00ffc3;
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    font-weight: bold;
}
.menu a:hover {
    background-color: #00ffc3;
    color: #111;
    transition: 0.2s;
}
.banner {
    text-align: center;
    background-color: #2b2b2b;
    height: 150px;
    color: #aaa;
    font-size: 22px;
    line-height: 150px;
    font-style: italic;
}
.content {
    padding: 25px;
    color: #ddd;
}
.sidebar {
    width: 20%;
    background-color: #181818;
    border-left: 2px solid #00ffc3;
    padding: 10px;
    text-align: center;
    height: 100%;
}
.sidebar h3 {
    color: #00ffc3;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}
.sidebar-item {
    text-align: center;
    margin-bottom: 15px;
    background-color: #222;
    border-radius: 10px;
    padding: 8px;
    transition: transform 0.2s;
}
.sidebar-item:hover {
    transform: scale(1.05);
    background-color: #2d2d2d;
}
.sidebar-item img {
    width: 100%;
    max-width: 130px;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}
.sidebar-item a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
}
.sidebar-item a:hover {
    color: #00ffc3;
}
.footer {
    background-color: #111;
    color: #888;
    text-align: center;
    font-size: 14px;
    padding: 10px;
}
.film-info-table {
    width: 100%;
}
.film-poster {
    text-align: center;
    width: 30%;
}
.film-poster img {
    width: 100%;
    max-width: 300px;
    height: 450px;
    object-fit: cover;
    border: 2px solid #00ffc3;
    border-radius: 8px;
}
.film-details {
    padding-left: 20px;
    color: #eee;
}
.film-title {
    color: #00ffc3;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}
.film-category {
    color: #ffb400;
    font-style: italic;
    margin-bottom: 15px;
}
.watch-button {
    display: inline-block;
    margin-top: 15px;
    background-color: #00ffc3;
    color: #111;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
}
.watch-button:hover{
    background-color:#00bfa5
}

.banner {
    text-align: center;
    background-color: #2b2b2b;
    height: 35vh;
    color: #aaa;
    line-height: 90px;
}
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px}
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75)
}
.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffc3;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 0 8px #00ffc3
}
