@keyframes cey-bounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-7px); }
    60% { transform: translateY(-4px); }
}

.cey-btn-video {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9c164;
    color: #566d56;
    border: none;
    border-radius: 100px;
    padding: 12px 22px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 4px 18px rgba(0,0,0,.2);
    animation: cey-bounce 2.2s ease-in-out infinite;
    flex-shrink: 0;
    position: absolute;
    right: 3%;
    bottom: 15%;

    &:hover {
        animation: none;
        transform: scale(1.06);
    }

    .cey-play-circle {
        width: 32px;
        height: 32px;
        background: #566d56;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cey-label-video {
        @media (max-width: 768px) {
            display: none;
        }
    }

    @media (max-width: 768px) {
        padding: 10px 12px;
        gap: 6px;
        margin-right: 10px;
    }
}

.cey-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,.85);
    align-items: center;
    justify-content: center;

    &.is-open {
        display: flex;
    }
}

.cey-modal-inner {
    position: relative;
    width: 90vw;
    max-width: 960px;
    background: #000;
    border-radius: 14px;
    overflow: hidden;

    video {
        width: 100%;
        display: block;
        max-height: 80vh;
    }

    @media (max-width: 768px) {
        width: 97vw;
    }
}

.cey-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;

    &:hover {
        background: rgba(255,255,255,.4);
    }
}