 /**
 * עיצוב לשורטקוד סרטוני יוטיוב בפופאפ
 */
.youtube-popup-container {
    position: relative;
    max-width: 100%;
    margin: 20px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.youtube-popup-container:hover {
    transform: translateY(-5px);
}
/* תמונה מקדימה */
.youtube-popup-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* יחס 16:9 */
    overflow: hidden;
}
.youtube-popup-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}
.youtube-popup-container:hover .youtube-popup-thumbnail img {
    filter: brightness(0.8);
}
/* כפתור נגינה */
.youtube-popup-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.youtube-popup-play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #fff;
}
.youtube-popup-container:hover .youtube-popup-play-button {
    background-color: #ff0000;
}
/* פופאפ */
.youtube-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.youtube-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.youtube-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.youtube-popup-iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* יחס 16:9 */
}
.youtube-popup-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.youtube-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}
.youtube-popup-close::before,
.youtube-popup-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #fff;
}
.youtube-popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.youtube-popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
/* התאמה למובייל */
@media (max-width: 768px) {
    .youtube-popup-container {
        margin: 12px;
    }
    .youtube-popup-content {
        width: 95%;
    }
    .youtube-popup-play-button {
        width: 50px;
        height: 35px;
    }
} 