/* 1. 배경 마키 설정 (z-index: -1) */
.marquee-container {
    position: fixed;
    top: 35%;
    left: 0;
    width: 100vw;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    display: flex;
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    font-family: 'Dancing Script', cursive;
    font-size: 220px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 10px;
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}