.fullscreen-video-button-wrapper {
    display: inline-block;
}

.fullscreen-video-button {
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.fullscreen-video-button:hover {
    transform: scale(1.1);
}

.fullscreen-video-button:active {
    transform: scale(0.95);
}

.play-icon {
    width: 100%;
    height: 100%;
}

.play-circle {
    fill: #000;
    stroke: #000;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.play-triangle {
    fill: #fff;
    transition: all 0.3s ease;
}

.fullscreen-video-button:hover .play-circle {
    fill: #fff;
    stroke: #000;
}

.fullscreen-video-button:hover .play-triangle {
    fill: #000;
}

/* Modal de vídeo fullscreen */
.fullscreen-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
}

.fullscreen-video-modal.active {
    display: block;
}

.fullscreen-video-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .fullscreen-video-button {
        width: 60px;
        height: 60px;
    }
}