
.reels-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.tech-in-a-min-container div{
    margin-bottom: 30px;
}
.video-reel {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #212121;
    padding: 5vh 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: opacity 0.3s ease;
}

.video-reel.transitioning {
    opacity: 0.8;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    max-width: 390px;
    max-height: 90vh;
    margin: 0 auto;
}

.vimeo-player {
    width: 100%;
    height: 100%;
    background: #212121;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.video-info {
    position: absolute;
    bottom: 25px;
    left: 420px;
    width: 260px;
}

.vimeo-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px;
    color: white;
    z-index: 10;
}

.video-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
}

.video-info p {
    color: #FFB800;
    font-size: 12px;
    font-weight: 500;
}

.video-info h3 a {
    color: #fff;
}

.video-info img {
    max-width: 70%;
    display: block;
    margin-bottom: 20px;
    height: 100px;
    object-fit: cover;
}

.video-info a {
    color: #2a65ff;
    display: block;
}

.video-info a:hover {
    color: #fff;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Video controls overlay */
.control-btn {
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / 60%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: block;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 12px;
    text-align: center;
    display: none;
}

.mute {
    position: absolute;
    top: 20px;
    left: 20px;
}

.play-pause {
    display: none;
}

.control-btn img {
    vertical-align: middle;
    display: block;
    pointer-events: none;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-opt {
    position: absolute;
    bottom: 18px;
    left: -72px;
}

.video-reel .wp_ulike_general_class {
    background: transparent;
    border: none;
    box-shadow: none;
}

.wpulike-heart button.wp_ulike_btn, .wpulike-heart button.wp_ulike_btn:focus, .wpulike-heart button.wp_ulike_btn:hover {
    background: #414141;
    border-radius: 50%;
    padding: 10px;
    box-shadow: none;
    width: 45px;
    height: 45px;
}

span.count-box.wp_ulike_counter_up {
    display: block;
}

.wp_ulike_btn.wp_ulike_put_image:after {
    filter: invert(1);
}

.wpulike-heart .wp_ulike_put_image:after {
    width: 26px;
    height: 26px;
}

.back {
    position: fixed;
    top: 80px;
    left: 100px;
    color: #fff;
    z-index: 99;
    font-size: 16px;
}

.back:hover {
    color: #FFB800;
}

.wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active:after {
    background-image: url(../../../../sites/default/files/static/post-like-active.png) !important;
    filter: none!important;
}

/* Responsive design */
@media (min-height: 600px) {
    .video-wrapper {
        max-width: 335px;
    }
    .video-info {
        left: 340px;
    }
}

@media (min-height: 700px) {
    .video-wrapper {
        max-width: 365px;
    }
    .video-info {
        left: 400px;
    }
    .video-opt {
        bottom: 30px;
    }
}

@media (min-height: 800px) {
    .video-wrapper {
        max-width: 395px;
    }
    .video-info {
        left: 420px;
    }
    .video-opt {
        bottom: 25px;
    }
}

@media (min-height: 900px) {
    .video-wrapper {
        max-width: 510px;
    }
    .video-info {
        left: 550px;
    }
}

@media only screen and (max-width: 1500px) {
    .video-info img {
        max-width: 60%;
        height: 90px;
    }
}

@media only screen and (max-width: 1025px) {
    .video-info img {
        display: none;
    }
    .video-wrapper {
        max-width: 60%;
        padding: 0 15px;
    }
    .video-info {
        position: static;
    }
    .vimeo-player iframe {
        height: 90%;
    }
}

@media (max-width: 768px) {
    .video-info h3 {
        font-size: 16px;
    }

    .video-info p {
        font-size: 13px;
    }

    .scroll-indicator {
        top: 10px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .video-controls {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .video-info {
        position: static;
        width: 100%;
        text-align: center;
    }

    .back {
        left: inherit;
        right: 40px;
        top: 60px;
    }
}

@media only screen and (max-width: 650px) {
    body {
        overflow-x: hidden;
    }

    .video-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .video-opt {
        left: 20px;
        bottom: 90px;
    }

    .video-reel {
        padding: 0;
        align-items: start;
    }

    .vimeo-player iframe {
        height: 100%;
    }

    .video-info p {
        font-size: 12px;
    }

    .control-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 30px;
    }

    .video-overlay {
        bottom: -30px;
    }

    .video-controls {
        top: 10px;
        right: 10px;
        gap: 6px;
    }

    .scroll-indicator {
        top: 5px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .vimeo-player > div {
        margin-top: 20px;
    }

    .back {
        right: 40px;
        top: 35px;
        text-shadow: 2px 2px 5px #000;
    }

    .video-info {
        display: none;
    }
}

@media (max-width: 360px) {
    .video-wrapper {
        max-width: 100%;
        padding: 0 8px;
    }

    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .video-reel {
        padding: 2vh 0;
    }

    .video-wrapper {
        height: 96vh;
        max-height: 96vh;
    }

    .video-info p {
        font-size: 12px;
    }

    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .video-controls {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
}

/* Custom scrollbar */
.reels-container::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.reels-container::-webkit-scrollbar-track {
    background: transparent;
}

.reels-container::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Video progress indicator */
.video-progress {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}
