 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #f8f5f0;
}

.scene-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.scene {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.content-overlay > * {
    pointer-events: auto;
}

.nav {
    position: absolute;
    top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    color: rgb(85, 84, 84);
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgb(255, 86, 86);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgb(190, 0, 0);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: rgb(138, 138, 138);
    z-index: 10;
    max-width: 500px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background: white;
    color: black;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 10;
    text-align: center;
    opacity: 0.7;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    margin: 0 auto;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 40px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-text {
        left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
}