/* YouTube Modal Styles */

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 43px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42.45 49.58"><path fill="%23f66463" d="M1.5,42.57V7.01c0-2.03,1.06-3.83,2.83-4.81,1.77-.98,3.86-.93,5.58.15l28.45,17.78c1.62,1.01,2.58,2.76,2.58,4.66s-.97,3.65-2.58,4.66l-28.45,17.78c-1.72,1.08-3.81,1.13-5.58.15-1.77-.98-2.83-2.78-2.83-4.81Z"/><path fill="%23fff" d="M39.45,24.79c0-1.3-.63-2.61-1.88-3.39L9.12,3.61c-2.66-1.67-6.12.25-6.12,3.39v35.57c0,3.14,3.46,5.06,6.12,3.39l28.45-17.78c1.25-.78,1.88-2.09,1.88-3.39M42.45,24.79c0,2.43-1.23,4.65-3.29,5.94l-28.45,17.78c-1.1.69-2.37,1.06-3.65,1.07-1.2,0-2.4-.3-3.46-.88-1.06-.59-1.95-1.44-2.58-2.46-.67-1.09-1.03-2.36-1.03-3.66V7.01c0-1.3.35-2.57,1.03-3.66.63-1.02,1.52-1.88,2.58-2.46C4.67.3,5.86,0,7.06,0c1.28.01,2.54.38,3.65,1.07l28.45,17.78c2.06,1.29,3.29,3.51,3.29,5.94Z"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* .youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 12px;
    transition: background 0.3s;
}

.youtube-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;
}
 */

/* Modal Styles */
.youtube-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.youtube-modal.active {
    display: flex;
}

.youtube-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.youtube-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.youtube-modal-close:hover {
    opacity: 0.7;
}

.youtube-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .youtube-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .youtube-modal-content {
        width: 95%;
    }
    
    .youtube-modal-close {
        top: -35px;
        font-size: 28px;
    }
}