/* 인트로 페이지 스타일 */
#intro_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/intro_background.png') center center/cover no-repeat;
    overflow: hidden;
    display: flex; /* 추가: 콘텐츠 중앙 정렬을 위해 */
    justify-content: center; /* 추가: 콘텐츠 중앙 정렬을 위해 */
    align-items: center; /* 추가: 콘텐츠 중앙 정렬을 위해 */
}

.intro_content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.intro_image {
    margin-bottom: 30px;
}

.intro_image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.intro_text h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.intro_text p {
    font-size: 1.2em;
    opacity: 0.8;
    margin-bottom: 30px; /* 추가: 버튼과의 간격 */
}

.intro_button {
    background: #5C5D62; /* 현재 배경색 유지 */
    border: none;
    color: white; 
    padding: 8px 17px; 
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px; 
    font-weight: 500;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px; 
    transition: opacity 0.3s ease; 
    font-family: 'Oxanium', sans-serif; 
    text-transform: lowercase; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0.9; /* 여기에 투명도 추가 (90% 불투명) */
}

.intro_button:hover {
    opacity: 0.75; /* 마우스 오버 시 더 투명하게 (기본값 0.9보다 작게) */
}

/* 모바일 대응 */
@media (max-width: 768px) {
    #intro_wrapper {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/intro_background.jpg') center center/cover no-repeat;
    }
    
    .intro_text h1 {
        font-size: 1.8em;
    }
    
    .intro_text p {
        font-size: 1em;
    }
    
    .intro_image img {
        max-width: 90%;
    }

    .intro_button {
        padding: 8px 25px; 
        font-size: 20px; 
        border-radius: 50px; /* 모바일에서도 완전히 둥근 모서리 유지 */
    }
}

#typing_text {
    font-size: 1.3em; /* 폰트 크기는 새 폰트에 맞게 조절 필요 */
    color: #E0E0E0;   
    font-family: 'WDXL Lubrifont TC', 'Noto Sans JP', sans-serif; /* 새 폰트 적용 */
    font-weight: 400; /* 폰트가 지원하는 두께 확인 필요 (보통 400) */
    text-align: center; 
    line-height: 1.7; /* 줄 간격도 폰트에 따라 조절 */
    /* ... */
}