body, html {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* 메인 타이틀 */
.main-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    background: url('../assets/images/scroll-icon.png') no-repeat center center;
    background-size: contain;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
