/* 기본 스타일 */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff; /* 연한 하늘색 배경 */
    overflow: hidden;
}

/* 시작 화면 스타일 */
#start-screen {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 나중에 이 아래 주석처리된 부분의 '여기에_이미지_주소_넣기'를 실제 아일릿 사진 주소로 바꾸세요 */
    /* background-image: url('여기에_이미지_주소_넣기'); */
    background-color: #a3c4f3; /* 임시 배경색 */
    background-size: cover;
    background-position: center;
}

#start-button {
    padding: 15px 30px;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

#start-button:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.8);
}

/* 메인 화면 스타일 */
#main-screen {
    padding: 20px;
    text-align: center;
}

#main-screen h1 {
    color: #333;
}

#button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
}

.main-button {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* 동그란 버튼 */
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 3px black;
}

.main-button:hover {
    transform: scale(1.15); /* 마우스를 올리면 커지는 효과 */
}

/* 사진 모달 스타일 */
#photo-modal {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
