/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f9f7f4; /* 부드러운 미색 배경 */
    color: #4a4238; /* 따뜻한 느낌의 딥 그레이 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
}

/* 로고 스타일링 */
.logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    color: #a68b6d; /* 코코네하우스 시그니처 베이지 톤 */
    margin-bottom: 40px;
}

/* 카드 섹션 */
.card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeae5;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #f0ede9;
    color: #a68b6d;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 0.05rem;
}

.main-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.sub-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #7a736a;
    margin-bottom: 40px;
}

/* 프로그레스 바 애니메이션 */
.loader {
    width: 100%;
    height: 4px;
    background-color: #f0ede9;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress {
    width: 40%;
    height: 100%;
    background-color: #a68b6d;
    border-radius: 2px;
    animation: moveProgress 5s infinite ease-in-out;
}

@keyframes moveProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.domain {
    font-size: 0.8rem;
    color: #ccc5bd;
}

footer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #b5ada4;
}