/* ============================================
   VIDEO SHORTS SECTION - HORIZONTAL SCROLL
   ============================================ */
.video-shorts-section {
    padding: 2rem 0;
    background: #FFFFFF;
    position: relative;
    display: flex;
    justify-content: center;
}

.video-shorts-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.video-shorts-scroll {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.video-shorts-scroll:active {
    cursor: grabbing;
}

.video-shorts-scroll::-webkit-scrollbar {
    display: none;
}

.video-short-card {
    flex: 0 0 auto;
    width: 240px;
    height: 427px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-short-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.25);
}

.short-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
}

.modal-video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 12px;
    cursor: pointer;
}

.modal-video:hover {
    opacity: 0.95;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #D4AF37;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(212, 175, 55, 0.8);
}

.modal-prev {
    left: -70px;
}

.modal-next {
    right: -70px;
}

/* Responsive */
@media (max-width: 768px) {
    .video-short-card {
        width: 200px;
        height: 356px;
    }

    .video-shorts-scroll {
        gap: 2rem;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .video-short-card {
        width: 170px;
        height: 302px;
    }

    .video-shorts-scroll {
        padding: 1rem;
        gap: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE BANNER SECTION
   ============================================ */
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    overflow: hidden;
    position: relative;
}

.banner-section picture {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}