/* Video Shorts Section Styles */
.video-shorts-premium {
    background-color: #22126B;
    padding: 60px 0;
    overflow: hidden;
    clear: both;
    width: 100%;
}

.video-shorts-premium .section-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.video-shorts-premium .badge-shorts {
    background: #e62117;
    /* YouTube Red */
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.video-shorts-premium .section-title-premium {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.video-shorts-container {
    position: relative;
}

.video-shorts-carousel {
    margin: 0 -10px;
}

.short-card-item {
    padding: 0 10px;
    outline: none;
}

.short-card-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.short-thumb-container {
    width: 100%;
    height: 100%;
}

.short-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.short-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.short-card-inner:hover .short-overlay {
    opacity: 1;
}

.short-title-premium {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.short-play-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.short-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Slick Customization for Shorts */
.shorts-prev-btn,
.shorts-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shorts-prev-btn:hover,
.shorts-next-btn:hover {
    background: #CF3364;
    /* Pink Brand Color */
    color: #fff;
    border-color: #CF3364;
}

.shorts-prev-btn {
    left: -20px;
}

.shorts-next-btn {
    right: -20px;
}

@media (max-width: 768px) {
    .video-shorts-premium {
        padding: 40px 0;
    }

    .video-shorts-container {
        padding: 0 10px;
    }

    .shorts-prev-btn,
    .shorts-next-btn {
        display: none !important;
    }

    .short-title-premium {
        font-size: 12px;
    }
}

/* Shorts Modal Styles */
.shorts-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shorts-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.shorts-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    /* Shorts portrait aspect ratio limitation */
    height: 85vh;
    max-height: 800px;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shorts-modal-overlay.active .shorts-modal-content {
    transform: scale(1);
}

.shorts-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.shorts-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.shorts-player-container {
    width: 100%;
    height: 100%;
}

.shorts-player-container video,
.shorts-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}