* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #000;
}

.fade-carousel {
    position: relative;
    width: 100%;
    height: 100vh;       /* FULL HEIGHT layar HP */
    overflow: hidden;
    background: #000;
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-slide.active {
    opacity: 1;
}

.fade-slide img,
.fade-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* full layar, bisa crop sedikit */
    object-position: center;
}
video {
    preload: auto;
}
