/* 전체 배경 및 폰트 스타일 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    text-align: center;
    background-color: #FFE4E1; /* 연한 핑크 */
    color: #5a2a6c; /* 보라빛 핑크 */
    margin: 0;
    padding: 0;
}

/* 헤더 스타일 */
header {
    background: linear-gradient(to right, #FFB6C1, #FF69B4); /* 핑크 그라데이션 */
    color: white;
    padding: 20px 0;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* 메인 컨텐츠 스타일 */
main {
    margin: 20px;
}

/* 버튼 스타일 (핑크 테마) */
button {
    background-color: #FF69B4; /* 핑크 */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #FF1493; /* 진한 핑크 */
    transform: scale(1.1);
}

/* 질문 버튼 스타일 */
#answers button {
    background-color: #FFC0CB; /* 연한 핑크 */
    color: #5a2a6c;
    border: 2px solid #FF69B4;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#answers button:hover {
    background-color: #FF69B4;
    color: white;
}

/* 결과 컨테이너 */
#result-container {
    margin-top: 20px;
    background: rgba(255, 182, 193, 0.5); /* 반투명 핑크 */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 결과 이미지 스타일 */
#result-image {
    width: 400px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 4px solid #FF69B4;
}

/* 결과 텍스트 */
#result-title {
    font-size: 28px;
    font-weight: bold;
    color: #d91e63; /* 진한 핑크 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#result-description {
    font-size: 18px;
    color: #5a2a6c;
}

/* 카카오 공유 버튼 */
#kakao-share-button {
    padding: 12px 24px;
    background-color: #FEE500;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

#kakao-share-button:hover {
    background-color: #FFD600;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    #result-image {
        width: 100%;
        max-width: 300px;
    }

    button {
        font-size: 16px;
        padding: 10px 20px;
    }
}
