.swiper {
    width: 100%;
    padding-bottom: 30px;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex !important;
}

.gallery-slide {
    width: 300px !important; 
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 20px;
}

.gallery-slide:hover {
    transform: scale(1.02);
    z-index: 10;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Marquee */
.video-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.video-marquee:hover .video-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.video-card {
    width: 260px !important; 
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    position: relative;
    display: block;
    flex-shrink: 0;
    margin-right: 25px;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.video-card:hover video {
    opacity: 1;
    transform: scale(1.05);
}

.mute-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    padding: 5px;
    border-radius: 50%;
    z-index: 20;
}

/* Modal */
#photo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.modal-swiper {
    width: 100vw;
    height: 100vh;
}

.modal-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.modal-swiper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    border-radius: 4px;
}

.nav-btn {
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(139, 92, 246, 0.5);
    transform: scale(1.1);
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
