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: 25%;
    background-color: #181818;
    border-left: 2px solid #00ffc3;
    padding: 15px;
}
.sidebar h3 {
    color: #00ffc3;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: center;
}
.comment-box {
    background-color: #222;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    transition: 0.2s;
}
.comment-box:hover {
    background-color: #2a2a2a;
}
.comment-author {
    color: #00ffc3;
    font-weight: bold;
}
.comment-text {
    color: #ccc;
    font-size: 14px;
}
.comment-form {
    margin-top: 20px;
}
.comment-form input, .comment-form textarea {
    width: 100%;
    background-color: #222;
    border: none;
    color: #fff;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 6px;
}
.comment-form button {
    background-color: #00ffc3;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}
.comment-form button:hover {
    background-color: #00e6af;
}
.footer {
    background-color: #111;
    color: #888;
    text-align: center;
    font-size: 14px;
    padding: 10px;
}
.video-box {
    background-color: #000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00ffc3;
    border-radius: 10px;
    color: #555;
    font-size: 24px;
    margin-bottom: 20px;
}

.film-info {
    background-color: #222;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
}
.film-title {
    font-size: 24px;
    color: #00ffc3;
    font-weight: bold;
}
.film-category {
    color: #ffb400;
    font-style: italic;
}
.suggestions {
    width: 100%;
    text-align: center;
}
.suggestions h3 {
    color: #00ffc3;
    margin-bottom: 10px;
}
.suggestion-card {
    display: inline-block;
    background-color: #222;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    transition: transform 0.2s;
}
.suggestion-card:hover {
    transform: scale(1.05);
    background-color: #2d2d2d;
}
.suggestion-card img {
    width: 150px;
    height: 220px;
    object-fit: cover;
    border: 1px solid #00ffc3;
    border-radius: 6px;
}
.suggestion-card b {
    display: block;
    color: #00ffc3;
    margin-top: 5px;
}
.suggestion-card a {
    text-decoration: none;
    color: #fff;
}
.suggestion-card a:hover {
    color: #00ffc3;
}

.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
}
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px;
    justify-content: center
}
.card {
    width: 280px;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    text-align: center
}
.card img{
    width: 100%;
    height:40vh;
    object-fit: cover;
    display: block
}
.card a{
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none
}
.card a:hover{
    color:#00ffc3
}

.card span {
    display: block;
    color: #00ffc3;
    margin-top: 8px;
    font-weight: bold;
}
video {
    position: relative;
    display: block;
}

#video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.4);
    cursor: pointer;
    z-index: 10;
}

#video-play-overlay button {
    font-size: 36px;
    padding: 20px 40px;
    border-radius: 12px;
    border: none;
    background: white;
    color: black;
    font-weight: bold;
}