/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Noto Serif JP', serif;
    background-color: #2a1d15; /* 딥 브라운 */
    color: #f4f1ee;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 배경 오버레이 (고급스러운 텍스처 느낌) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(61,43,31,0.2) 0%, rgba(26,18,13,0.9) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

/* 로고 및 텍스트 스타일 */
.logo {
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    margin-bottom: 60px;
    color: #c5a059; /* 골드 브라운 */
    font-weight: 700;
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
    color: #c5a059;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.2rem;
}

/* 중앙 구분선 */
.divider {
    width: 40px;
    height: 1px;
    background-color: #c5a059;
    margin: 30px auto;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: #d1ccc0;
    font-weight: 300;
}

footer {
    margin-top: 80px;
    font-size: 0.75rem;
    color: #8a7d71;
    letter-spacing: 0.05rem;
}

/* 간단한 페이드인 애니메이션 */
.content {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}