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: 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
}
.content {
    padding: 20px;
    color: #ddd;
}
/* Sidebar container */
.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 when wrapped in <a> */
.sidebar-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
}

/* Inner div styling preserved */
.sidebar-item {
    text-align: center;
    background-color: #222;
    border-radius: 10px;
    padding: 8px;
    transition: transform 0.2s;
}

.sidebar-item:hover {
    transform: scale(1.05);
    background-color: #2d2d2d;
}

/* Image styling */
.sidebar-item img {
    width: 100%;
    max-width: 130px;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}

/* Text inside the div */
.sidebar-item span {
    display: block;
    color: #fff;
    margin-top: 5px;
}

.sidebar-item:hover span {
    color: #00ffc3;
}

.footer {
    background-color: #111;
    color: #888;
    text-align: center;
    font-size: 14px;
    padding: 10px;
}
.film-card {
    text-align: center;
    background-color: #222;
    border-radius: 8px;
    padding: 10px;
    margin: 10px;
    transition: transform 0.2s, background 0.3s;
}
.film-card:hover {
    transform: scale(1.05);
    background-color: #2c2c2c;
}
.film-card img {
    width: 160px;
    height: 230px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #00ffc3;
}
.film-card b {
    display: block;
    color: #00ffc3;
    margin-top: 8px;
}
.film-card a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.film-card a:hover {
    color: #00ffc3;
}
.card {
    text-align: center;
}
.card a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 8px;
}
.card img {
    width: 160px;
    height: 230px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #00ffc3;
    display: block;
    margin: 0 auto;
}
.card span {
    display: block;
    color: #00ffc3;
    margin-top: 8px;
    font-weight: bold;
}
.film-card { cursor: default; }
.film-card .card a:hover { color: #00ffc3; }