/* ==============================
   todayFortune.css
   오늘운세 / 아이사주 페이지 스타일
   ============================== */

/* 전체 래퍼 */
.tf-wrap {
    max-width: 720px;
    width: 100%;
    padding: 0 16px 100px;
    box-sizing: border-box;
}
.tf-wrap * { box-sizing: border-box; }
.tf-date {
    text-align: center;
    padding: 20px 0 10px;
    font-size: 15px;
    color: #666;
}
.tf-date-text {
    font-weight: 700;
    color: #333;
    font-size: 17px;
}

/* 탭 네비게이션 */
.tf-tabs {
    display: flex !important;
    margin: 0 0 20px;
    border-bottom: 2px solid #eee;
}
.tf-tabs-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    letter-spacing: -0.5px;
}
.tf-tabs-item.on {
    color: #6B4EFF;
    border-bottom-color: #6B4EFF;
}

/* 탭 패널 */
.tf-panel { display: none !important; }
.tf-panel.on { display: block !important; }

/* 띠별 운세 인트로 */
.tf-intro {
    text-align: center;
    padding: 0 0 20px;
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

/* 띠 그리드 */
.tf-zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 4px 20px;
}
.tf-zodiac-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    border-radius: 14px;
    background: #f8f9fa;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}
.tf-zodiac-item:hover { text-decoration: none; }
.tf-zodiac-item.on {
    background: #EDE9FF;
    border-color: #6B4EFF;
}
.tf-zodiac-item .tf-emoji { font-size: 32px; line-height: 1; margin-bottom: 6px; }
.tf-zodiac-item .tf-name { font-size: 13px; font-weight: 700; color: #333; }
.tf-zodiac-item .tf-years { font-size: 10px; color: #999; margin-top: 2px; }
.tf-zodiac-item.on .tf-name { color: #6B4EFF; }

/* 사주 입력 폼 */
.tf-form {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 20px;
}
.tf-form-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}
.tf-form-row { margin-bottom: 14px; }
.tf-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}
.tf-form-input {
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    background: #fff;
    outline: none;
}
.tf-form-input:focus { border-color: #6B4EFF; }
.tf-select-group {
    display: flex;
    gap: 8px;
}
.tf-select-group select {
    flex: 1;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.tf-select-group select:focus { border-color: #6B4EFF; }
.tf-gender-group { display: flex; gap: 10px; }
.tf-gender-btn {
    flex: 1;
    height: 44px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
}
.tf-gender-btn.on {
    border-color: #6B4EFF;
    color: #6B4EFF;
    background: #F3F0FF;
}
.tf-cal-group { display: flex; gap: 10px; }
.tf-cal-btn {
    flex: 1; height: 44px; border: 2px solid #ddd; border-radius: 10px;
    background: #fff; font-size: 15px; font-weight: 600; color: #888; cursor: pointer;
}
.tf-cal-btn.on { border-color: #6B4EFF; color: #6B4EFF; background: #F3F0FF; }
.tf-leap-row {
    display: flex; align-items: center; margin-top: 8px;
}
.tf-leap-row input[type="checkbox"] { margin-right: 6px; accent-color: #6B4EFF; }
.tf-leap-row label { font-size: 13px; color: #555; }
.tf-leap-row.disabled label { color: #bbb; }
.tf-unknown-time-row {
    display: flex; align-items: center; margin-top: 8px;
}
.tf-unknown-time-row input[type="checkbox"] {
    width: 16px; height: 16px; margin-right: 6px; accent-color: #6B4EFF; cursor: pointer;
}
.tf-unknown-time-row label {
    font-size: 13px; color: #6B4EFF; cursor: pointer; font-weight: 500; user-select: none;
}
.tf-unknown-time-notice {
    margin-top: 6px; padding: 10px 12px; font-size: 12px; color: #E65100;
    background: #FFF3E0; border: 1px solid #FFE0B2; border-radius: 8px; line-height: 1.5;
}
.tf-submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

/* 정보 저장 체크박스 */
.tf-save-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: -2px;
}
.tf-save-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    accent-color: #6B4EFF;
    cursor: pointer;
}
.tf-save-row label {
    font-size: 13px;
    color: #666;
    cursor: pointer;
    user-select: none;
}

/* 팝업 */
.tf-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.tf-popup-overlay.on {
    display: flex !important;
}
.tf-popup {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 20px;
    max-width: 300px;
    width: 85%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.tf-popup-icon {
    font-size: 40px;
    margin-bottom: 12px;
    line-height: 1;
}
.tf-popup-msg {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 8px;
}
.tf-popup-sub {
    font-size: 12px;
    color: #999;
    margin-bottom: 18px;
    line-height: 1.5;
}
.tf-popup-btn {
    display: inline-block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

/* 결과 영역 */
.tf-result { display: none !important; padding: 0 0 100px; }
.tf-result.on { display: block !important; }

/* 선택 정보 배너 */
.tf-info-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    border-radius: 14px;
    color: #fff;
}
.tf-info-banner .tf-emoji { font-size: 36px; margin-right: 12px; }
.tf-info-banner .tf-title { font-size: 18px; font-weight: 700; }
.tf-info-banner .tf-sub { font-size: 12px; opacity: 0.8; margin-top: 2px; }

/* 운세 카드 */
.tf-card {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}
.tf-card-head {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}
.tf-card-icon { font-size: 20px; margin-right: 8px; }
.tf-card-title { font-size: 15px; font-weight: 700; color: #333; flex: 1; }
.tf-card-stars { display: flex; align-items: center; gap: 1px; }
.tf-card-stars svg { display: block; width: 16px; height: 16px; }
.tf-card-body {
    padding: 14px 16px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* 행운 아이템 */
.tf-lucky { display: flex; gap: 10px; margin-bottom: 12px; }
.tf-lucky-item {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid #eee;
}
.tf-lucky-item .tf-label { font-size: 12px; color: #888; margin-bottom: 6px; }
.tf-lucky-item .tf-value { font-size: 16px; font-weight: 700; color: #333; }
.tf-color-dot {
    display: inline-block;
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid #eee;
    vertical-align: middle;
}

/* 오늘의 한마디 */
.tf-overall {
    text-align: center;
    padding: 20px 16px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    border-radius: 14px;
    border: 1px solid #FFE0B2;
}
.tf-overall-label { font-size: 13px; color: #E65100; font-weight: 600; margin-bottom: 6px; }
.tf-overall-text { font-size: 16px; font-weight: 700; color: #333; line-height: 1.6; }

/* 띠별 운세 텍스트 */
.tf-fortune-text {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 20px 18px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    word-break: keep-all;
}

/* CTA */
.tf-cta { text-align: center; padding: 20px 0 0; }
.tf-cta-text { font-size: 14px; color: #666; margin-bottom: 12px; line-height: 1.5; }
.tf-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none !important;
}
.tf-cta-btn:hover { text-decoration: none !important; opacity: 0.9; }

/* 사주팔자 표 */
.tf-pillars {
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
}
.tf-pillars-header {
    display: flex;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff;
    padding: 12px 0;
    text-align: center;
}
.tf-pillars-header > div { flex: 1; font-size: 13px; font-weight: 600; }
.tf-pillars-lrow {
    display: flex;
    text-align: center;
    background: #fafafa;
}
.tf-pillars-lrow > div { flex: 1; padding: 6px 0; font-size: 11px; color: #888; }
.tf-pillars-row { display: flex; text-align: center; border-bottom: 1px solid #f0f0f0; }
.tf-pillars-row:last-child { border-bottom: none; }
.tf-pillars-cell {
    flex: 1;
    padding: 14px 8px;
    font-size: 22px;
    font-weight: 700;
}
.tf-pillars-cell .tf-hanja {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-top: 2px;
}
.tf-el-wood { color: #2E7D32; }
.tf-el-fire { color: #C62828; }
.tf-el-earth { color: #F9A825; }
.tf-el-metal { color: #757575; }
.tf-el-water { color: #1565C0; }

/* 오행 분석 */
.tf-elements {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 16px;
    margin-bottom: 16px;
}
.tf-elements-title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 12px; text-align: center; }
.tf-ebar { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tf-ebar:last-child { margin-bottom: 0; }
.tf-ebar-label { width: 50px; font-size: 13px; font-weight: 600; text-align: right; flex-shrink: 0; }
.tf-ebar-track { flex: 1; height: 20px; background: #f0f0f0; border-radius: 10px; overflow: hidden; }
.tf-ebar-fill { height: 100%; border-radius: 10px; }
.tf-ebar-count { width: 24px; font-size: 12px; color: #888; flex-shrink: 0; }

/* 사주 요약 */
.tf-summary {
    text-align: center;
    padding: 20px 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #EDE9FF 0%, #F3F0FF 100%);
    border-radius: 14px;
    border: 1px solid #CE93D8;
}
.tf-summary-name { font-size: 18px; font-weight: 700; color: #6B4EFF; margin-bottom: 4px; }
.tf-summary-text { font-size: 14px; color: #555; line-height: 1.6; }

/* ==============================
   아이 사주 - 구매 내역
   ============================== */
.cs-history {
    margin-bottom: 24px; padding: 16px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F3F0FF 100%);
    border-radius: 16px; border: 1px solid #E1BEE7;
}
.cs-history-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid #E1BEE7;
}
.cs-history-title {
    font-size: 15px; font-weight: 700; color: #4527A0;
}
.cs-history-count {
    display: inline-block; margin-left: 6px;
    padding: 1px 8px; border-radius: 10px;
    background: #6B4EFF; color: #fff; font-size: 11px; font-weight: 700;
    vertical-align: middle;
}
.cs-history-toggle {
    font-size: 12px; color: #6B4EFF; cursor: pointer;
    background: none; border: 1px solid #CE93D8; border-radius: 8px;
    padding: 4px 12px; font-weight: 600;
}
.cs-history-list {
    display: flex; flex-direction: column; gap: 8px;
}
.cs-history-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; background: #fff; border-radius: 14px;
    cursor: pointer; border: 2px solid #E8E0F0;
    transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.cs-history-item.compat {
    border-color: #C5CAE9;
}
.cs-history-item:hover, .cs-history-item:active {
    border-color: #6B4EFF; background: #F3F0FF;
    box-shadow: 0 2px 8px rgba(123,31,162,0.12);
}
.cs-history-item.compat:hover, .cs-history-item.compat:active {
    border-color: #3F51B5; background: #E8EAF6;
    box-shadow: 0 2px 8px rgba(63,81,181,0.12);
}
.cs-history-badge {
    display: inline-block; padding: 2px 8px; border-radius: 6px;
    font-size: 10px; font-weight: 700; margin-left: 6px; vertical-align: middle;
    letter-spacing: -0.3px;
}
.cs-history-badge.saju { background: linear-gradient(135deg, #A78BFA, #6B4EFF); color: #fff; }
.cs-history-badge.compat { background: linear-gradient(135deg, #5C6BC0, #3949AB); color: #fff; }
.cs-history-left {
    display: flex; align-items: center; gap: 12px; min-width: 0;
}
.cs-history-emoji {
    font-size: 28px; flex-shrink: 0;
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: #F3F0FF; border-radius: 12px;
}
.cs-history-item.compat .cs-history-emoji {
    background: #E8EAF6;
}
.cs-history-name {
    font-size: 15px; font-weight: 700; color: #333; line-height: 1.3;
}
.cs-history-info {
    font-size: 12px; color: #888; margin-top: 3px;
}
.cs-history-right {
    text-align: right; flex-shrink: 0; margin-left: 10px;
}
.cs-history-date {
    font-size: 11px; color: #aaa;
}
.cs-history-price {
    font-size: 12px; font-weight: 700; color: #6B4EFF; margin-top: 2px;
}
.cs-history-item.compat .cs-history-price {
    color: #3F51B5;
}
.cs-history-arrow {
    font-size: 14px; color: #ccc; margin-left: 4px;
}

/* ==============================
   아이 사주 탭 스타일
   ============================== */
.cs-title {
    text-align: center;
    padding: 24px 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: #333;
}
.cs-subtitle {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}
.cs-form { margin-bottom: 20px; }
.cs-form-group { margin-bottom: 14px; }
.cs-form-label { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 6px; }
.cs-form input[type="text"] {
    width: 100%; height: 44px; border: 2px solid #ddd; border-radius: 10px;
    padding: 0 14px; font-size: 15px; outline: none;
}
.cs-form input[type="text"]:focus { border-color: #6B4EFF; }
.cs-select-group { display: flex; gap: 8px; }
.cs-select-group select {
    flex: 1; height: 44px; border: 2px solid #ddd; border-radius: 10px;
    padding: 0 10px; font-size: 14px; background: #fff; outline: none;
    -webkit-appearance: none; appearance: none;
}
.cs-select-group select:focus { border-color: #6B4EFF; }
.cs-gender-group { display: flex; gap: 10px; }
.cs-gender-btn {
    flex: 1; height: 44px; border: 2px solid #ddd; border-radius: 10px;
    background: #fff; font-size: 15px; font-weight: 600; color: #888; cursor: pointer;
}
.cs-gender-btn.on { border-color: #6B4EFF; color: #6B4EFF; background: #F3F0FF; }
.cs-cal-group { display: flex; gap: 10px; }
.cs-cal-btn {
    flex: 1; height: 44px; border: 2px solid #ddd; border-radius: 10px;
    background: #fff; font-size: 15px; font-weight: 600; color: #888; cursor: pointer;
}
.cs-cal-btn.on { border-color: #6B4EFF; color: #6B4EFF; background: #F3F0FF; }
.cs-time-colon { font-size: 18px; font-weight: 700; color: #333; }
.cs-tst-info {
    display: none; margin: 8px 0 0; padding: 10px 14px;
    background: #FFF3E0; border-radius: 10px; border: 1px solid #FFE0B2;
    font-size: 13px; color: #E65100; line-height: 1.6;
}
.cs-tst-info.on { display: block; }
.cs-tst-info strong { font-weight: 700; }
.cs-leap-row { display: flex; align-items: center; margin-top: 8px; }
.cs-leap-row input[type="checkbox"] { margin-right: 6px; accent-color: #6B4EFF; }
.cs-leap-row label { font-size: 13px; color: #555; }
.cs-leap-row.disabled label { color: #bbb; }
.cs-save-row {
    display: flex; align-items: center; margin-bottom: 10px; margin-top: -2px;
}
.cs-save-row input[type="checkbox"] {
    width: 18px; height: 18px; margin: 0 8px 0 0; accent-color: #6B4EFF; cursor: pointer;
}
.cs-save-row label { font-size: 13px; color: #666; cursor: pointer; user-select: none; }
.cs-submit-btn {
    width: 100%; height: 50px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 6px;
}
.cs-popup-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45); z-index: 9999; justify-content: center; align-items: center;
}
.cs-popup-overlay.on { display: flex !important; }
.cs-popup {
    background: #fff; border-radius: 16px; padding: 28px 24px 20px;
    max-width: 300px; width: 85%; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cs-popup-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
.cs-popup-msg { font-size: 15px; color: #333; font-weight: 600; line-height: 1.6; margin-bottom: 18px; }
.cs-popup-btn {
    display: inline-block; width: 100%; height: 44px; line-height: 44px; border: none;
    border-radius: 10px; background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
}
.cs-result { display: none !important; padding: 0 0 100px; }
.cs-result.on { display: block !important; }

/* === 예상 외모 === */
.cs-appearance-section {
    margin: 20px 0; padding: 20px; background: #FFF8E1; border-radius: 14px;
    border: 1px solid #FFE082;
}
.cs-appearance-title { font-size: 17px; font-weight: 700; color: #F57F17; margin-bottom: 14px; }
.cs-appearance-item {
    display: flex; align-items: flex-start; padding: 10px 0;
    border-bottom: 1px solid rgba(255,224,130,0.5);
}
.cs-appearance-item:last-child { border-bottom: none; }
.cs-appearance-label {
    min-width: 80px; font-size: 13px; font-weight: 700; color: #E65100; margin-right: 10px; padding-top: 1px;
}
.cs-appearance-value { font-size: 14px; color: #555; line-height: 1.5; flex: 1; }

/* === 닮은꼴 연예인 === */
.cs-celeb-section {
    margin: 20px 0; padding: 20px; background: #FCE4EC; border-radius: 14px;
    border: 1px solid #F48FB1;
}
.cs-celeb-title { font-size: 17px; font-weight: 700; color: #C2185B; margin-bottom: 14px; }
.cs-celeb-card {
    background: #fff; border-radius: 12px; padding: 14px; margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cs-celeb-card:last-child { margin-bottom: 0; }
.cs-celeb-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cs-celeb-name { font-size: 16px; font-weight: 700; color: #333; }
.cs-celeb-percent {
    font-size: 14px; font-weight: 700; color: #C2185B;
    background: #FCE4EC; padding: 3px 10px; border-radius: 20px;
}
.cs-celeb-reason { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 4px; }
.cs-celeb-trait { font-size: 12px; color: #888; }

/* === 부모-아이 궁합 결과 === */
.cs-compat-section {
    margin: 20px 0; padding: 20px; background: linear-gradient(135deg, #E8EAF6 0%, #EDE9FF 100%);
    border-radius: 14px; border: 1px solid #B39DDB;
}
.cs-compat-title { font-size: 17px; font-weight: 700; color: #4527A0; margin-bottom: 14px; }
.cs-compat-score-wrap {
    text-align: center; padding: 16px 0; margin-bottom: 14px;
}
.cs-compat-score {
    display: inline-block; font-size: 48px; font-weight: 800; color: #4527A0;
}
.cs-compat-score-unit { font-size: 20px; color: #7E57C2; font-weight: 600; }
.cs-compat-grade {
    font-size: 18px; font-weight: 700; color: #6B4EFF; margin-top: 4px;
}
.cs-compat-elements {
    display: flex; justify-content: center; align-items: center; gap: 12px;
    margin-bottom: 14px; font-size: 14px; color: #555;
}
.cs-compat-el-badge {
    padding: 4px 14px; border-radius: 20px; font-weight: 600; font-size: 13px;
}
.cs-compat-el-parent { background: #C5CAE9; color: #1A237E; }
.cs-compat-el-child { background: #E1BEE7; color: #4A32CC; }
.cs-compat-arrow { font-size: 18px; color: #999; }
.cs-compat-desc {
    font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 14px;
    padding: 12px; background: rgba(255,255,255,0.6); border-radius: 10px;
}
.cs-compat-list-title { font-size: 14px; font-weight: 700; color: #4527A0; margin-bottom: 8px; }
.cs-compat-list {
    margin-bottom: 14px; padding-left: 18px;
}
.cs-compat-list li {
    font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 2px;
}
.cs-compat-detail-desc {
    font-size: 13px; color: #444; line-height: 1.8; margin-bottom: 16px;
    padding: 14px 16px; background: linear-gradient(135deg, rgba(237,231,246,0.5), rgba(232,234,246,0.5));
    border-radius: 12px; border-left: 3px solid #7E57C2;
}
.cs-compat-lock {
    text-align: center; padding: 20px 0 10px;
}
.cs-compat-lock-icon { font-size: 36px; margin-bottom: 8px; }
.cs-compat-lock-text { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 8px; }
.cs-compat-lock-price { font-size: 22px; font-weight: 800; color: #4527A0; margin-bottom: 4px; }
.cs-compat-lock-note { font-size: 12px; color: #999; margin-bottom: 14px; }
.cs-compat-lock-btn {
    display: inline-block; padding: 12px 32px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #4527A0 0%, #6B4EFF 100%);
    color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
}
.cs-compat-intro {
    font-size: 13px; color: #5C6BC0; margin-bottom: 16px; line-height: 1.5;
}
.cs-compat-parent-form .cs-form-group { margin-bottom: 12px; }
.cs-compat-parent-form .cs-form-label { font-size: 13px; font-weight: 600; color: #333; margin-bottom: 4px; }
.cs-compat-parent-form input[type="text"] {
    width: 100%; height: 42px; border: 2px solid #C5CAE9; border-radius: 10px;
    padding: 0 14px; font-size: 14px; outline: none;
}
.cs-compat-parent-form input[type="text"]:focus { border-color: #3F51B5; }
.cs-compat-parent-form select {
    flex: 1; height: 42px; border: 2px solid #C5CAE9; border-radius: 10px;
    padding: 0 10px; font-size: 13px; background: #fff; outline: none;
    -webkit-appearance: none; appearance: none;
}
.cs-compat-parent-form select:focus { border-color: #3F51B5; }
.cs-compat-purchase-btn {
    width: 100%; height: 50px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #4527A0 0%, #6B4EFF 100%);
    color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 10px;
}

/* === 아이 사주 결과 - 배너 & 사주표 === */
.cs-info-banner {
    display: flex; align-items: center; justify-content: center;
    padding: 16px; margin-bottom: 16px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    border-radius: 14px; color: #fff;
}
.cs-info-banner .cs-emoji { font-size: 36px; margin-right: 12px; }
.cs-info-banner .cs-info-title { font-size: 18px; font-weight: 700; }
.cs-info-banner .cs-info-sub { font-size: 12px; opacity: 0.8; margin-top: 2px; }
.cs-pillars {
    margin-bottom: 16px; border-radius: 14px; overflow: hidden; border: 1px solid #eee;
}
.cs-pillars-header {
    display: flex; background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff; padding: 12px 0; text-align: center;
}
.cs-pillars-header > div { flex: 1; font-size: 13px; font-weight: 600; }
.cs-pillars-lrow { display: flex; text-align: center; background: #fafafa; }
.cs-pillars-lrow > div { flex: 1; padding: 6px 0; font-size: 11px; color: #888; }
.cs-pillars-row { display: flex; text-align: center; border-bottom: 1px solid #f0f0f0; }
.cs-pillars-row:last-child { border-bottom: none; }
.cs-pillars-cell { flex: 1; padding: 14px 8px; font-size: 22px; font-weight: 700; }
.cs-pillars-cell .cs-hanja { display: block; font-size: 11px; color: #999; font-weight: 400; margin-top: 2px; }
.cs-elements {
    background: #fff; border-radius: 14px; border: 1px solid #eee;
    padding: 16px; margin-bottom: 16px;
}
.cs-elements-title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 12px; text-align: center; }
.cs-ebar { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.cs-ebar:last-child { margin-bottom: 0; }
.cs-ebar-label { width: 50px; font-size: 13px; font-weight: 600; text-align: right; flex-shrink: 0; }
.cs-ebar-track { flex: 1; height: 20px; background: #f0f0f0; border-radius: 10px; overflow: hidden; }
.cs-ebar-fill { height: 100%; border-radius: 10px; }
.cs-ebar-count { width: 24px; font-size: 12px; color: #888; flex-shrink: 0; }
.cs-summary {
    text-align: center; padding: 20px 16px; margin-bottom: 16px;
    background: linear-gradient(135deg, #EDE9FF 0%, #F3F0FF 100%);
    border-radius: 14px; border: 1px solid #CE93D8;
}
.cs-summary-name { font-size: 18px; font-weight: 700; color: #6B4EFF; margin-bottom: 4px; }
.cs-summary-text { font-size: 14px; color: #555; line-height: 1.6; }
.cs-lucky { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.cs-lucky-item {
    flex: 1; min-width: calc(50% - 10px); text-align: center;
    padding: 16px 12px; background: #f8f9fa; border-radius: 14px; border: 1px solid #eee;
}
.cs-lucky-item .cs-label { font-size: 12px; color: #888; margin-bottom: 6px; }
.cs-lucky-item .cs-value { font-size: 16px; font-weight: 700; color: #333; }
.cs-color-dot {
    display: inline-block; width: 24px; height: 24px;
    border-radius: 50%; border: 2px solid #eee; vertical-align: middle;
}

/* === 역량 분석 === */
.cs-cap-section { margin-bottom: 16px; }
.cs-cap-title {
    font-size: 16px; font-weight: 700; color: #333;
    margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.cs-cap-chart {
    background: #fff; border-radius: 14px; border: 1px solid #eee;
    padding: 16px; margin-bottom: 12px; text-align: center;
}
.cs-cap-chart svg { max-width: 320px; margin: 0 auto; display: block; }
.cs-cap-list { margin-top: 12px; }
.cs-cap-item {
    background: #fff; border-radius: 12px; border: 1px solid #eee;
    padding: 14px 16px; margin-bottom: 8px;
}
.cs-cap-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.cs-cap-icon { font-size: 18px; line-height: 1; }
.cs-cap-name { font-size: 14px; font-weight: 700; color: #333; flex: 1; }
.cs-cap-score { font-size: 13px; font-weight: 700; color: #6B4EFF; }
.cs-cap-bar { height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.cs-cap-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #CE93D8 0%, #6B4EFF 100%); }
.cs-cap-desc { font-size: 12px; color: #888; line-height: 1.5; }

/* === 적성 분석 === */
.cs-apt-section { margin-bottom: 16px; }
.cs-apt-title {
    font-size: 16px; font-weight: 700; color: #333;
    margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.cs-apt-chart {
    background: #fff; border-radius: 14px; border: 1px solid #eee;
    padding: 16px; margin-bottom: 12px; text-align: center;
}
.cs-apt-chart svg { max-width: 340px; margin: 0 auto; display: block; }
.cs-apt-list { margin-top: 12px; }
.cs-apt-item {
    background: #fff; border-radius: 12px; border: 1px solid #eee;
    padding: 14px 16px; margin-bottom: 8px;
}
.cs-apt-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.cs-apt-icon { font-size: 18px; line-height: 1; }
.cs-apt-name { font-size: 14px; font-weight: 700; color: #333; flex: 1; }
.cs-apt-badge {
    font-size: 11px; font-weight: 700; padding: 2px 8px;
    border-radius: 10px; white-space: nowrap;
}
.cs-apt-badge.top10 { background: #F3F0FF; color: #6B4EFF; }
.cs-apt-badge.top25 { background: #E8F5E9; color: #2E7D32; }
.cs-apt-badge.top50 { background: #FFF3E0; color: #E65100; }
.cs-apt-badge.top75 { background: #F5F5F5; color: #757575; }
.cs-apt-score { font-size: 13px; font-weight: 700; color: #6B4EFF; min-width: 38px; text-align: right; }
.cs-apt-bar { height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.cs-apt-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #81D4FA 0%, #1565C0 100%); }
.cs-apt-desc { font-size: 12px; color: #888; line-height: 1.5; }

/* === Holland RIASEC === */
.cs-holland-section { margin-bottom: 16px; }
.cs-holland-title {
    font-size: 16px; font-weight: 700; color: #333;
    margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.cs-holland-banner {
    background: linear-gradient(135deg, #1A237E 0%, #283593 100%);
    border-radius: 14px; padding: 20px 16px; text-align: center; margin-bottom: 12px; color: #fff;
}
.cs-holland-code { font-size: 28px; font-weight: 800; letter-spacing: 2px; margin-bottom: 4px; }
.cs-holland-code-name { font-size: 15px; font-weight: 600; opacity: 0.9; }
.cs-holland-chart {
    background: #fff; border-radius: 14px; border: 1px solid #eee;
    padding: 16px; margin-bottom: 12px; text-align: center;
}
.cs-holland-chart svg { max-width: 320px; margin: 0 auto; display: block; }
.cs-holland-card {
    background: #fff; border-radius: 14px; border: 1px solid #eee;
    padding: 18px 16px; margin-bottom: 12px; position: relative; overflow: hidden;
}
.cs-holland-card-rank {
    position: absolute; top: 0; right: 0; padding: 4px 12px;
    font-size: 11px; font-weight: 700; color: #fff; border-radius: 0 0 0 10px;
}
.cs-holland-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cs-holland-card-icon { font-size: 32px; line-height: 1; }
.cs-holland-card-title { font-size: 17px; font-weight: 700; color: #333; }
.cs-holland-card-score { font-size: 13px; font-weight: 600; color: #666; margin-top: 2px; }
.cs-holland-keywords { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.cs-holland-keyword {
    display: inline-block; padding: 3px 10px; border-radius: 12px;
    font-size: 12px; font-weight: 600; background: #E8EAF6; color: #1A237E;
}
.cs-holland-summary {
    font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 10px;
    padding: 10px 12px; background: #F5F5F5; border-radius: 10px;
}
.cs-holland-desc { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 10px; }
.cs-holland-learning {
    font-size: 13px; color: #1A237E; line-height: 1.6; margin-bottom: 10px;
    padding: 10px 12px; background: #E8EAF6; border-radius: 10px;
}
.cs-holland-learning-label { font-weight: 700; margin-bottom: 4px; }
.cs-holland-careers-label { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 6px; }
.cs-holland-careers { display: flex; flex-wrap: wrap; gap: 6px; }
.cs-holland-career {
    display: inline-block; padding: 4px 10px; border-radius: 8px;
    font-size: 12px; font-weight: 500; background: #FFF3E0; color: #E65100;
}
.cs-holland-combo {
    background: linear-gradient(135deg, #EDE9FF 0%, #E8EAF6 100%);
    border-radius: 14px; border: 1px solid #C5CAE9; padding: 16px;
    margin-bottom: 12px; text-align: center;
}
.cs-holland-combo-title { font-size: 15px; font-weight: 700; color: #1A237E; margin-bottom: 8px; }
.cs-holland-combo-desc { font-size: 14px; color: #555; line-height: 1.6; }
.cs-holland-all { margin-top: 12px; }
.cs-holland-bar-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.cs-holland-bar-rank { width: 20px; font-size: 12px; font-weight: 700; color: #888; text-align: center; flex-shrink: 0; }
.cs-holland-bar-icon { font-size: 16px; flex-shrink: 0; }
.cs-holland-bar-label { width: 44px; font-size: 13px; font-weight: 600; color: #333; flex-shrink: 0; }
.cs-holland-bar-track { flex: 1; height: 18px; background: #f0f0f0; border-radius: 9px; overflow: hidden; }
.cs-holland-bar-fill { height: 100%; border-radius: 9px; transition: width 0.5s; }
.cs-holland-bar-score { width: 40px; font-size: 12px; font-weight: 700; color: #555; text-align: right; flex-shrink: 0; }

/* === 진로 예측 === */
.cs-career-section { margin-bottom: 16px; }
.cs-career-title {
    font-size: 16px; font-weight: 700; color: #333;
    margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.cs-career-intro {
    text-align: center; padding: 24px 16px;
    background: linear-gradient(135deg, #1A237E 0%, #4A32CC 50%, #1A237E 100%);
    border-radius: 16px; margin-bottom: 16px; color: #fff;
    position: relative; overflow: hidden;
}
.cs-career-intro::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: csGlow 4s ease-in-out infinite;
}
@keyframes csGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}
.cs-career-intro-emoji { font-size: 48px; margin-bottom: 8px; position: relative; }
.cs-career-intro-text { font-size: 15px; opacity: 0.9; line-height: 1.6; position: relative; }
.cs-career-intro-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; position: relative; }
.cs-career-card {
    background: #fff; border-radius: 16px; border: 2px solid #eee;
    padding: 0; margin-bottom: 14px; overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.cs-career-card.rank1 { border-color: #FFD700; }
.cs-career-card.rank2 { border-color: #C0C0C0; }
.cs-career-card.rank3 { border-color: #CD7F32; }
.cs-career-card-top { display: flex; align-items: center; padding: 16px 16px 12px; gap: 12px; }
.cs-career-rank {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.cs-career-rank.r1 { background: linear-gradient(135deg, #FFD700, #FFA000); }
.cs-career-rank.r2 { background: linear-gradient(135deg, #90A4AE, #607D8B); }
.cs-career-rank.r3 { background: linear-gradient(135deg, #CD7F32, #A0522D); }
.cs-career-icon { font-size: 36px; line-height: 1; flex-shrink: 0; }
.cs-career-name { font-size: 18px; font-weight: 800; color: #333; }
.cs-career-name-en { font-size: 11px; color: #999; font-weight: 500; }
.cs-career-match { text-align: right; flex-shrink: 0; }
.cs-career-percent { font-size: 26px; font-weight: 800; color: #6B4EFF; }
.cs-career-grade { font-size: 11px; font-weight: 700; color: #6B4EFF; }
.cs-career-bar-wrap { padding: 0 16px 12px; }
.cs-career-bar { height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.cs-career-bar-fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, #CE93D8 0%, #6B4EFF 60%, #4A32CC 100%);
}
.cs-career-traits { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; }
.cs-career-trait {
    display: inline-block; padding: 4px 10px; border-radius: 12px;
    font-size: 11px; font-weight: 600; background: #F3F0FF; color: #6B4EFF;
}
.cs-career-why {
    padding: 12px 16px; margin: 0 16px 12px; font-size: 13px;
    color: #555; line-height: 1.7; background: #FAFAFA; border-radius: 10px;
}
.cs-career-future {
    padding: 12px 16px; margin: 0 16px 14px;
    background: linear-gradient(135deg, #EDE9FF 0%, #E8EAF6 100%);
    border-radius: 10px; font-size: 13px; color: #1A237E; line-height: 1.6;
}
.cs-career-future-label { font-weight: 700; margin-bottom: 4px; }

/* === 카드 (아이사주 카테고리) === */
.cs-card {
    background: #fff; border-radius: 14px; margin-bottom: 12px;
    border: 1px solid #eee; overflow: hidden;
}
.cs-card-head {
    display: flex; align-items: center; padding: 14px 16px;
    background: #fafafa; border-bottom: 1px solid #f0f0f0;
}
.cs-card-icon { font-size: 20px; margin-right: 8px; }
.cs-card-title { font-size: 15px; font-weight: 700; color: #333; flex: 1; }
.cs-card-stars { display: flex; align-items: center; gap: 1px; }
.cs-card-stars svg { display: block; width: 16px; height: 16px; }
.cs-card-body { padding: 14px 16px; font-size: 14px; color: #555; line-height: 1.7; }

/* === CTA (아이사주) === */
.cs-cta {
    text-align: center; padding: 24px 16px; margin-top: 12px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    border-radius: 14px; border: 1px solid #FFE0B2;
}
.cs-cta-text { font-size: 14px; color: #E65100; font-weight: 600; margin-bottom: 12px; line-height: 1.5; }
.cs-cta-btn {
    display: inline-block; padding: 12px 28px; border: none; border-radius: 10px;
    background: linear-gradient(135deg, #E65100 0%, #FF6D00 100%);
    color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
}

/* === 로딩 스피너 === */
.cs-loading { display: none; text-align: center; padding: 40px 0; }
.cs-loading.on { display: block !important; }
.cs-spinner {
    width: 40px; height: 40px; border: 4px solid #eee; border-top-color: #6B4EFF;
    border-radius: 50%; animation: csSpin 0.8s linear infinite; margin: 0 auto 12px;
}
@keyframes csSpin { to { transform: rotate(360deg); } }

/* === 구매 잠금 & 블러 === */
.cs-paid-blur { position: relative; filter: blur(5px); -webkit-filter: blur(5px); user-select: none; pointer-events: none; }
.cs-paid-blur-wrap { position: relative; cursor: pointer; }
.cs-paid-blur-wrap .cs-paid-unlock {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center; z-index: 5;
}
.cs-paid-unlock-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(123,31,162,0.9); color: #fff;
    font-size: 12px; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cs-section-locked { position: relative; }
.cs-section-locked > *:not(.cs-section-lock-overlay) {
    filter: blur(6px); -webkit-filter: blur(6px); pointer-events: none; user-select: none;
}
.cs-section-lock-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.35); cursor: pointer;
}
.cs-section-lock-icon { font-size: 40px; margin-bottom: 10px; }
.cs-section-lock-text {
    font-size: 15px; font-weight: 700; color: #333;
    text-align: center; line-height: 1.6; margin-bottom: 12px;
}
.cs-section-lock-btn {
    display: inline-block; padding: 10px 24px; border-radius: 10px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff; font-size: 14px; font-weight: 700;
}

/* === 구매 배너 === */
.cs-purchase-banner {
    display: none; text-align: center; padding: 20px 16px; margin-bottom: 16px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    border-radius: 14px; border: 2px solid #FFB300;
}
.cs-purchase-banner.on { display: block; }
.cs-purchase-emoji { font-size: 32px; margin-bottom: 8px; }
.cs-purchase-text { font-size: 14px; color: #333; font-weight: 600; line-height: 1.6; margin-bottom: 12px; }
.cs-purchase-price { font-size: 20px; font-weight: 800; color: #E65100; margin-bottom: 12px; }
.cs-purchase-note { font-size: 12px; color: #888; margin-bottom: 12px; }
.cs-purchase-btn {
    display: inline-block; width: 100%; max-width: 300px; height: 48px; line-height: 48px;
    border: none; border-radius: 12px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff; font-size: 16px; font-weight: 700; cursor: pointer;
}

/* === 구매 확인 팝업 === */
.cs-confirm-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 10000; justify-content: center; align-items: center;
}
.cs-confirm-overlay.on { display: flex !important; }
.cs-confirm {
    background: #fff; border-radius: 16px; padding: 28px 24px 20px;
    max-width: 320px; width: 90%; text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cs-confirm-icon { font-size: 44px; margin-bottom: 12px; }
.cs-confirm-title { font-size: 17px; font-weight: 700; color: #333; margin-bottom: 8px; }
.cs-confirm-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }
.cs-confirm-price { font-size: 22px; font-weight: 800; color: #6B4EFF; margin-bottom: 16px; }
.cs-confirm-btns { display: flex; gap: 10px; }
.cs-confirm-cancel {
    flex: 1; height: 44px; border: 2px solid #ddd; border-radius: 10px;
    background: #fff; font-size: 15px; font-weight: 600; color: #888; cursor: pointer;
}
.cs-confirm-ok {
    flex: 1; height: 44px; border: none; border-radius: 10px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.cs-confirm-ok:disabled { opacity: 0.7; cursor: not-allowed; }
.cs-btn-spinner {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: csSpin 0.7s linear infinite;
}

/* ==============================
   연인 궁합
   ============================== */
.lc-title {
    text-align: center; padding: 24px 0 8px;
    font-size: 22px; font-weight: 800; color: #C2185B;
}
.lc-subtitle {
    text-align: center; font-size: 14px; color: #888; margin-bottom: 20px;
}
.lc-form {
    background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 100%);
    border-radius: 16px; padding: 24px 20px; margin-bottom: 20px;
    border: 1px solid #F48FB1;
}
.lc-person-section {
    background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 100%);
    border-radius: 16px; padding: 20px 16px; margin-bottom: 16px;
    border: 1px solid #F48FB1;
}
.lc-person-label {
    font-size: 16px; font-weight: 700; color: #AD1457;
    margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid #F48FB1;
}
.lc-submit-btn {
    width: 100%; height: 50px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 10px;
}

/* ==============================
   연인 궁합 결과 섹션
   ============================== */
.lc-section {
    background: #fff; border-radius: 16px; padding: 20px 16px; margin-top: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.lc-section-head {
    font-size: 18px; font-weight: 800; color: #333;
    padding-bottom: 12px; margin-bottom: 16px;
    border-bottom: 2px solid #FCE4EC;
}
.lc-section-score {
    float: right; font-size: 14px; color: #fff; font-weight: 700;
    background: #E91E63; padding: 2px 10px; border-radius: 12px;
    margin-top: -2px;
}

/* 종합 점수 원형 */
.lc-total-score-wrap { text-align: center; margin: 20px 0; }
.lc-total-score-circle {
    display: inline-flex; align-items: center; justify-content: center;
    flex-direction: column;
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
    border: 3px solid #E91E63;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(233,30,99,0.15);
}
.lc-total-num { font-size: 36px; font-weight: 900; color: #C2185B; line-height: 1; }
.lc-total-unit { font-size: 13px; color: #E91E63; margin-top: 2px; }
.lc-total-grade {
    font-size: 16px; font-weight: 700; color: #E91E63;
    background: #FCE4EC; display: inline-block; padding: 4px 16px; border-radius: 20px;
    margin-top: 4px;
}

/* 게이지 바 */
.lc-gauge {
    background: #FAFAFA; border-radius: 10px; padding: 10px 14px;
    margin: 6px 0; border: 1px solid #f0f0f0;
}
.lc-gauge + .lc-gauge-desc {
    margin-top: -2px; margin-bottom: 8px; padding: 0 14px;
}
.lc-gauge-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
}
.lc-gauge-label {
    font-size: 13px; font-weight: 700; color: #444;
}
.lc-gauge-right {
    display: flex; align-items: center; gap: 6px;
}
.lc-gauge-val {
    font-size: 15px; font-weight: 800;
}
.lc-gauge-level {
    font-size: 11px; font-weight: 700; color: #fff;
    padding: 2px 10px; border-radius: 10px;
    line-height: 1.5; letter-spacing: -0.3px;
}
.lc-gauge-track {
    width: 100%; height: 8px; background: #e8e8e8; border-radius: 4px; overflow: hidden;
}
.lc-gauge-fill {
    height: 100%; border-radius: 4px; transition: width 0.8s ease;
}
.lc-gauge-desc {
    font-size: 12px; color: #888; margin: 8px 0 4px 0; line-height: 1.6;
    padding: 0;
}

/* 성격 유형 카드 */
.lc-type-cards {
    display: flex; align-items: stretch; gap: 8px; margin: 12px 0;
}
.lc-type-card {
    flex: 1; background: #FAFAFA; border-radius: 12px; padding: 14px 10px;
    text-align: center; border: 1px solid #eee;
}
.lc-type-name { font-size: 14px; font-weight: 700; color: #C2185B; margin-bottom: 6px; }
.lc-type-label {
    font-size: 13px; font-weight: 700; color: #333; margin-bottom: 6px;
    background: #FCE4EC; display: inline-block; padding: 3px 10px; border-radius: 12px;
}
.lc-type-desc { font-size: 11px; color: #777; line-height: 1.5; }
.lc-type-vs {
    flex: 0 0 36px; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900; color: #E91E63;
}

/* 서브 타이틀 */
.lc-sub-title {
    font-size: 15px; font-weight: 700; color: #444; margin: 18px 0 10px;
    padding-left: 8px; border-left: 3px solid #E91E63;
}

/* 오행 비교 차트 */
.lc-el-compare-legend {
    text-align: center; font-size: 12px; color: #666; margin-bottom: 10px;
}
.lc-legend-dot {
    display: inline-block; width: 10px; height: 10px; border-radius: 50%;
    margin-right: 4px; vertical-align: middle;
}
.lc-el-compare-row {
    display: flex; align-items: center; gap: 6px; margin: 6px 0;
}
.lc-el-compare-label {
    flex: 0 0 55px; font-size: 13px; font-weight: 700; text-align: right;
}
.lc-el-compare-bars {
    flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.lc-el-bar1, .lc-el-bar2 {
    height: 10px; border-radius: 5px; min-width: 4px; transition: width 0.8s ease;
}
.lc-el-compare-vals {
    flex: 0 0 40px; font-size: 11px; color: #999; text-align: center;
}

/* 요약 박스 */
.lc-summary-box {
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border: 1px solid #FFE082; border-radius: 12px;
    padding: 14px 16px; margin-top: 14px;
    font-size: 13px; color: #5D4037; line-height: 1.7;
}

/* 애정 카드 */
.lc-aff-card { background: linear-gradient(135deg, #FFF0F5, #FCE4EC) !important; border-color: #F48FB1 !important; }
.lc-aff-style { font-size: 12px; font-weight: 600; color: #AD1457; line-height: 1.5; margin-top: 4px; }

/* 도넛 차트 그리드 */
.lc-donut-wrap {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
    margin: 16px 0; padding: 16px 8px;
    background: #FAFAFA; border-radius: 12px; border: 1px solid #f0f0f0;
}
.lc-mini-donut { text-align: center; }
.lc-mini-label { font-size: 11px; font-weight: 700; color: #555; margin-top: 4px; }

/* 결혼 점수 */
.lc-marriage-score-wrap { text-align: center; margin: 16px 0 20px; }
.lc-marriage-big { font-size: 15px; font-weight: 700; color: #555; margin-bottom: 12px; }
.lc-marriage-circle {
    background: linear-gradient(135deg, #E8EAF6, #C5CAE9) !important;
    border-color: #5C6BC0 !important;
    box-shadow: 0 4px 16px rgba(92,107,192,0.15) !important;
}
.lc-marriage-circle .lc-total-num { color: #303F9F !important; }
.lc-marriage-circle .lc-total-unit { color: #5C6BC0 !important; }
.lc-marriage-circle .lc-total-grade { background: #E8EAF6; color: #5C6BC0; }

/* 타임라인 정보 카드 그리드 */
.lc-timeline-info {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 12px 0;
}
.lc-tl-card {
    background: #FAFAFA; border-radius: 12px; padding: 14px 10px;
    text-align: center; border: 1px solid #eee;
}
.lc-tl-card-icon { font-size: 24px; margin-bottom: 4px; }
.lc-tl-card-label { font-size: 11px; color: #888; margin-bottom: 4px; }
.lc-tl-card-value { font-size: 16px; font-weight: 800; color: #333; }

/* 연도별 바 차트 */
.lc-year-chart {
    display: flex; align-items: flex-end; gap: 4px; justify-content: center;
    padding: 12px 6px 0; min-height: 180px;
    background: #FAFAFA; border-radius: 12px; border: 1px solid #f0f0f0;
}
.lc-year-bar-col {
    display: flex; flex-direction: column; align-items: center; flex: 1;
}
.lc-year-score {
    font-size: 9px; font-weight: 700; color: #666;
    margin-bottom: 3px;
}
.lc-year-bar {
    width: 100%; max-width: 20px; border-radius: 4px 4px 0 0;
    position: relative; cursor: pointer; transition: all 0.4s ease;
    min-height: 8px;
}
.lc-year-bar:hover { filter: brightness(1.1); transform: scaleY(1.05); }
.lc-year-tooltip {
    display: none; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
    background: #333; color: #fff; font-size: 10px; padding: 4px 10px; border-radius: 6px;
    white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,0.2); z-index: 10;
}
.lc-year-tooltip::after {
    content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 4px solid transparent; border-top-color: #333;
}
.lc-year-bar:hover .lc-year-tooltip { display: block; }
.lc-year-label {
    font-size: 9px; color: #999; margin-top: 5px; font-weight: 600;
    padding-bottom: 8px;
}
.lc-year-best .lc-year-label { color: #E91E63; font-weight: 800; }
.lc-year-best .lc-year-score { color: #E91E63; font-weight: 800; }
.lc-year-best .lc-year-bar { box-shadow: 0 0 8px rgba(233,30,99,0.4); }

/* 연도별 범례 */
.lc-year-legend {
    display: flex; justify-content: center; gap: 12px; margin-top: 8px;
    font-size: 11px; color: #777;
}
.lc-legend-item { display: flex; align-items: center; gap: 4px; }

/* 이정표 타임라인 */
.lc-milestones { padding-left: 16px; margin: 10px 0; }
.lc-ms-item {
    display: flex; gap: 12px; position: relative;
    padding-bottom: 18px; padding-left: 8px;
    border-left: 2px solid #F48FB1;
}
.lc-ms-item.last { border-left-color: transparent; padding-bottom: 0; }
.lc-ms-dot {
    flex: 0 0 32px; height: 32px; background: #fff; border: 2px solid #E91E63;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 16px; position: absolute; left: -18px; top: 0;
}
.lc-ms-content { margin-left: 24px; }
.lc-ms-title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 2px; }
.lc-ms-desc { font-size: 12px; color: #777; line-height: 1.5; }

/* ===== 연인궁합 구매 배너 ===== */
.lc-purchase-banner {
    margin: 20px 0;
    padding: 24px 16px;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 100%);
    border: 2px dashed #F48FB1;
    border-radius: 16px;
    text-align: center;
}
.lc-purchase-banner .cs-purchase-emoji { font-size: 36px; margin-bottom: 8px; }
.lc-purchase-banner .cs-purchase-text { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 8px; }
.lc-purchase-banner .cs-purchase-price { font-size: 22px; font-weight: 800; color: #E91E63; margin-bottom: 4px; }
.lc-purchase-banner .cs-purchase-note { font-size: 11px; color: #999; margin-bottom: 12px; line-height: 1.5; }
.lc-purchase-banner .cs-purchase-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 40px;
    height: auto; line-height: 1;
    background: linear-gradient(135deg, #E91E63, #F06292);
    color: #fff; border: none; border-radius: 24px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    max-width: none; width: auto;
    letter-spacing: 0.5px;
}
.lc-purchase-banner .cs-purchase-btn:active { transform: scale(0.97); }

/* ===== 쿠폰 입력 영역 ===== */
.lc-coupon-area {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}
.lc-coupon-divider {
    font-size: 12px; color: #aaa; margin-bottom: 10px;
}
.lc-coupon-input-row {
    display: flex; gap: 8px; align-items: center;
    justify-content: center;
}
.lc-coupon-input-row input {
    flex: 1; max-width: 180px;
    padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px;
    font-size: 13px; text-align: center;
}
.lc-coupon-apply-btn {
    padding: 8px 16px;
    background: #7C4DFF; color: #fff; border: none;
    border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer;
}
.lc-coupon-apply-btn:active { opacity: 0.8; }
.lc-coupon-msg {
    margin-top: 8px; font-size: 12px; min-height: 16px;
}
