
.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    cursor: pointer;
    overflow: hidden;
    background-color: #000;
    line-height: 0;
    margin: auto;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-container:hover img {
    opacity: 1;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.9);
    border-radius: 12px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-container:hover .play-button {
    background-color: #ff0000;
}

.play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.info-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 1.4;
    padding: 10px;
    text-align: center;
}