.angie-scroll-sequence-wrapper {
    position: relative;
    width: 0;
    height: 0;
    overflow: visible;
}

.angie-scroll-sequence-container {
    overflow: hidden;
    opacity: 0; 
    pointer-events: none;
    z-index: 0; 
    transition: opacity 0.3s ease;
}

.angie-mode-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.angie-mode-relative {
    position: relative;
    width: 100%;
    height: 100vh; 
}

.angie-scroll-sequence-container.active {
    opacity: 1 !important; 
    /* Keep pointer-events: none to avoid blocking page interaction */
    pointer-events: none; 
}

.angie-sequence-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.angie-sequence-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; 
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Global debug overlay (appended to body) styles are handled inline in JS, 
   but we can add a class for cleaner code if needed. */
.angie-scroll-debug-global {
    pointer-events: none;
    z-index: 10000;
}
