.clip-card {
    position: relative;
}

.clip-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 64px;
    height: 64px;

    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    pointer-events: none;
}

.modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.8);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;
}

.hidden {
    display: none;
}

.modal-content {
    position: relative;

    width: 90%;
    max-width: 1000px;
}

.modal video {
    width: 100%;
    border-radius: 16px;
    background: black;
}

#close-modal {
    position: absolute;
    top: -50px;
    right: 0;

    background: none;
    border: none;

    color: white;
    font-size: 32px;

    cursor: pointer;
}