.pm-youtube-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pm-youtube-slider-wrapper {
    position: relative;
    background: #000;
    border-radius: 0;
    overflow: visible;
    width: 1200px;
    max-width: 1200px;
    order: 2;
}

.pm-youtube-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.pm-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.pm-slide.active {
    opacity: 1;
}

.pm-video-container {
    width: 100%;
    height: 600px;
    position: relative;
}

.pm-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    position: relative;
}

.pm-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 105;
    transition: all 0.3s ease;
}

.pm-play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.pm-play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.pm-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    pointer-events: none;
    z-index: 5;
}

.pm-video-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.pm-slider-nav-container {
    display: contents;
}

.pm-slider-prev {
    order: 1;
}

.pm-slider-next {
    order: 3;
}

.pm-slider-nav {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    flex-shrink: 0;
}

.pm-slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.pm-slider-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 110;
    pointer-events: none;
}

.pm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    pointer-events: auto;
}

.pm-dot:hover {
    background: #888;
    transform: scale(1.2);
}

.pm-dot.active {
    background: #590101;
    transform: scale(1.3);
}

@media (max-width: 1400px) {
    .pm-youtube-slider-container {
        max-width: 100%;
        padding: 20px 100px;
    }
    
    .pm-youtube-slider-wrapper {
        width: 100%;
        max-width: none;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .pm-youtube-slider-container {
        padding: 10px 60px;
        gap: 20px;
        max-width: 100%;
    }
    
    .pm-youtube-slider-wrapper {
        width: 100%;
    }
    
    .pm-youtube-slider {
        height: 400px;
    }
    
    .pm-video-container {
        height: 400px;
    }
    
    .pm-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .pm-play-button {
        width: 60px;
        height: 60px;
    }
    
    .pm-play-icon {
        border-left: 15px solid white;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        margin-left: 3px;
    }
    
    .pm-video-info h3 {
        font-size: 14px;
    }
    
    .pm-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 600px) {
    .pm-youtube-slider-container {
        padding: 10px 15px;
        gap: 15px;
        flex-direction: column;
        max-width: 100%;
    }
    
    .pm-youtube-slider-wrapper {
        order: 1;
        width: 100%;
    }
    
    .pm-youtube-slider {
        height: 300px;
    }
    
    .pm-video-container {
        height: 300px;
    }

    .pm-slider-nav-container {
        order: 2;
        display: flex;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }
    
    .pm-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
        order: 0;
        position: static;
    }
    
    .pm-play-button {
        width: 50px;
        height: 50px;
    }
    
    .pm-play-icon {
        border-left: 12px solid white;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        margin-left: 2px;
    }
    .pm-slider-dots {
        bottom: 50px;
    }
}