/* Video Overlay Images */
.video-overlay-img {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    max-width: 35% !important;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: all 0.5s ease;
}

.video-overlay-img.top-left {
    top: -25px;
    left: -35px;
    transform: rotate(-5deg);
}

.video-overlay-img.bottom-right {
    bottom: -30px;
    right: -20px;
    transform: rotate(-3deg);
}

/* Ensure Location Cycler Positioning inside the relative video container */
.location-cycler {
    position: absolute;
    top: 30px;
    right: 40px;
    width: auto;
    z-index: 25;
    pointer-events: none;
}

.loc-main {
    justify-content: flex-start;
    font-size: 1.5rem;
    /* Make it bigger like the image */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.loc-main i {
    margin-right: 5px;
}

#activeLocation {
    font-weight: 300;
}

/* Adjust for smaller screens */


@media (max-width: 1024px) {
    .video-overlay-img {
        max-width: 40% !important;
    }

    .video-overlay-img.top-left {
        top: -15px;
        left: -15px;
    }

    .video-overlay-img.bottom-right {
        bottom: -15px;
        right: -10px;
    }

    .location-cycler {
        position: absolute !important;
        top: 25px !important;
        right: 20px !important;
        left: auto !important;
        width: auto !important;
        min-width: 130px !important;
        z-index: 100 !important;
        margin: 0 !important;
        padding: 4px 10px !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }

    .loc-main {
        justify-content: flex-start !important;
        font-size: 1.1rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .active-loc-wrapper {
        min-width: auto !important;
        text-align: left !important;
    }

    #activeLocation {
        text-align: left !important;
        display: inline-block !important;
        font-weight: 300 !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }

    .close-reel-btn {
        right: 50px !important;
        top: 20px !important;
    }

    .sound-toggle-btn {
        left: 50px !important;
        bottom: 20px !important;
    }
}

/* Sound Toggle Button */
/* Sound Toggle Button - Minimal Bottom Placement */
.sound-toggle-btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 100;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.sound-toggle-btn:focus,
.sound-toggle-btn:active {
    outline: none !important;
    box-shadow: none !important;
}

.sound-toggle-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.sound-toggle-btn.sound-on {
    background: transparent;
    border: none;
    color: #00D1B2;
}

@media (max-width: 576px) {
    .location-cycler {
        top: 20px !important;
        right: 15px !important;
        width: auto !important;
    }
    .loc-main {
        font-size: 0.9rem !important;
        gap: 6px !important;
    }
}

@media (max-width: 375px) {
    .location-cycler {
        top: 15px !important;
        right: 15px !important;
        width: auto !important;
    }
    .loc-main {
        font-size: 0.8rem !important;
    }
}