.card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s;
    width: 100%;
}

.card-inner {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.card-inner:hover .card-img {
    filter: brightness(1.1);
}

.card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.play-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
    margin-left: 2px;
}
