.slide-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-container.active {
    opacity: 1;
}

.slide-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    z-index: 1;
}

.slide-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.slide-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    color: #f5e8c7;
    cursor: pointer;
    transition: transform 0.3s;
}

.slide-close:hover {
    transform: scale(1.2);
}