/* packages/shared/style.css 맨 윗줄 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

:root {
    --rose-quartz: #F7C9CB;
    --serenity: #91A8D2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body, html { width: 100%; height: 100%; font-family: 'Pretendard', sans-serif; overflow: hidden; }

.main-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--rose-quartz) 0%, var(--serenity) 100%);
    z-index: -1;
}

/* 카운트다운 페이지 스타일 */
#timer-page {
    width: 100%;
    height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 뒤로가기 버튼 스타일 */
.back-button {
    position: fixed;
    top: 30px;
    left: 50px;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    opacity: 0.4; /* 평소에는 아주 흐릿하게 (티 안 나게) */
    transition: all 0.3s ease;
    z-index: 100;
}

.back-button:hover {
    opacity: 1; /* 마우스를 올리면 선명하게 */
    transform: translateX(-5px); /* 왼쪽으로 살짝 움직이는 애니메이션 */
}

.back-icon {
    font-weight: 300; /* 선을 얇게 해서 더 고급스럽게 */
}

.timer-label { font-size: 2.5rem; font-weight: bold; color: #ffffff; margin-bottom: 20px; opacity: 0.8; }
.countdown-display { font-size: 6rem; font-weight: 900; color: #ffffff; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }