.scroll-sequence-animator {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.ssa-canvas {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.ssa-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .scroll-sequence-animator {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .scroll-sequence-animator {
        height: 50vh;
    }
}
