.result-page {
    min-height: 100vh;
    background-image: url('/images/bg-result.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

/* 헤더가 bg-result.png 위에 투명하게 위치하도록 재정의 */
.result-page .site-header {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

/* 헤더 아래 콘텐츠 영역: 기존 .result-page의 centering 로직 이동 */
.result-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    gap: 60px;
}

/* 왼쪽: 이미지 */
.result-image-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    max-width: 520px;
}

.result-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50px;
    background: #ebebeb;
}


/* 오른쪽: 정보 */
.result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 481px;
}

.result-info-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.result-title-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-title {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

.result-sub {
    font-size: 20px;
    color: #6b6b6b;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 80px;
    background: var(--color-primary);
    color: #fffbef;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: opacity 0.15s;
}

.btn-download:hover {
    opacity: 0.85;
}

/* 하단: 공유 + 다시 생성 */
.result-info-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.share-label {
    font-size: 20px;
    font-weight: 500;
    color: #6d6967;
    margin-bottom: 8px;
}

.share-row {
    display: flex;
    height: 60px;
    border: 1.5px solid #b9afa6;
    border-radius: 10px;
    overflow: hidden;
}

.share-input {
    flex: 1;
    padding: 0 16px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #888;
    background: #f0f0ef;
    font-family: inherit;
}

.btn-copy {
    width: 80px;
    flex-shrink: 0;
    background: #f9f7f7;
    border: none;
    border-left: 1.5px solid #b9afa6;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.btn-copy:hover {
    background: #f0eeec;
}

.btn-retry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 60px;
    background: #faf8f7;
    border: 1.5px solid #99938d;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: background 0.15s;
}

.btn-retry:hover {
    background: #f0eeec;
}
