﻿        /* 블록 조절 스타일 */
        .block-option {
            user-select: none;
            -webkit-user-select: none;
            position: relative;
            overflow: visible;
        }
        
        .block-option.selected {
            border-color: var(--accent);
            background: #FFFBF0;
        }
        
        /* 상단/하단 조절 영역 */
        .block-zone {
            position: absolute;
            left: 0;
            right: 0;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s;
            cursor: pointer;
            z-index: 10;
        }
        
        .block-zone i {
            font-size: 18px;
            font-weight: bold;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        
        .block-zone-top {
            top: 0;
            background: rgba(46, 204, 113, 0.85);
            color: white;
            border-radius: 12px 12px 0 0;
            font-weight: bold;
        }
        
        .block-zone-bottom {
            bottom: 0;
            background: rgba(231, 76, 60, 0.85);
            color: white;
            border-radius: 0 0 12px 12px;
            font-weight: bold;
        }
        
        /* 기본: 숨김 */
        .block-zone {
            opacity: 0;
            pointer-events: none;
        }
        
        /* 블록 활성화시 표시 */
        .block-option.active .block-zone {
            opacity: 1;
            pointer-events: auto;
        }
        
        /* PC: hover시 표시 */
        @media (hover: hover) and (pointer: fine) {
            .block-option:hover .block-zone {
                opacity: 1;
                pointer-events: auto;
            }
        }
        
        .block-zone:active {
            transform: scale(0.95);
        }
        
        /* 힌트 텍스트 */
        .block-hint {
            font-size: 8px;
            color: var(--text-sub);
            margin-top: 4px;
            opacity: 0;
            transition: opacity 0.2s;
            text-align: center;
            line-height: 1.3;
        }
        
        .block-option:hover .block-hint {
            opacity: 1;
        }
        
        .block-percent {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            margin: 4px 0;
        }
        
        .tray-slot.partial {
            position: relative;
            overflow: hidden;
        }
        
        .tray-slot.partial::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: inherit;
            opacity: 0.4;
        }
        
        .remaining-hint {
            text-align: center;
            padding: 16px;
            background: linear-gradient(135deg, #FFF3CD, #FFE8A1);
            border-radius: var(--radius-M);
            margin-bottom: 16px;
            font-size: 14px;
            color: #856404;
            border: 2px solid #FFD93D;
            position: relative;
            overflow: hidden;
        }
        
        .remaining-hint.warning {
            animation: pulseWarning 2s ease-in-out infinite;
        }
        
        @keyframes pulseWarning {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
            50% { box-shadow: 0 0 20px 5px rgba(255, 193, 7, 0.2); }
        }
        
        .remaining-hint .hint-main {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .remaining-hint .hint-sub {
            font-size: 16px;
            color: #997a00;
            margin-bottom: 12px;
        }
        
        .remaining-hint .hint-actions {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .remaining-hint .btn-auto-fill {
            background: #997a00;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: var(--radius-S);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .remaining-hint .btn-auto-fill:hover {
            background: #6b5500;
            transform: translateY(-2px);
        }
        
        .remaining-hint.complete {
            background: linear-gradient(135deg, #D4EDDA, #B8E0C0);
            color: #155724;
            border-color: #28A745;
        }
        
        /* 중앙 팝업 프로그레스 표시 - 터치 영향 없음 */
        .center-progress-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            z-index: 9999;
            pointer-events: none;  /* 터치 영향 없음 */
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .center-progress-popup.show {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .center-progress-popup.hiding {
            opacity: 0;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .center-progress-content {
            background: rgba(15, 31, 56, 0.75);
            border-radius: 20px;
            padding: 24px 40px;
            text-align: center;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.25);
        }
        
        .center-progress-percent {
            font-size: 56px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .center-progress-percent.complete {
            color: #28A745;
        }
        
        .center-progress-message {
            font-size: 16px;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }
        
        .center-progress-bar {
            width: 120px;
            height: 6px;
            background: rgba(255,255,255,0.2);
            border-radius: 3px;
            margin: 12px auto 0;
            overflow: hidden;
        }
        
        .center-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), #d4af37);
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        
        .center-progress-fill.complete {
            background: linear-gradient(90deg, #28A745, #20c997);
        }
        
        .remaining-hint.complete .hint-main {
            color: #155724;
        }
        
        .btn-run-backtest {
            width: 98%;
            margin-left: auto;
            margin-right: auto;
            padding: 28px 32px;
            border: none;
            background: linear-gradient(135deg, var(--accent), #9A8260);
            color: white;
            border-radius: var(--radius-L);
            font-size: 22px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 24px rgba(184, 158, 95, 0.4);
        }
        
        .btn-run-backtest:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 32px rgba(184, 158, 95, 0.5);
        }
        
        .btn-run-backtest:active {
            transform: translateY(-1px) scale(0.98);
        }
        
        .btn-run-backtest.pulse-active {
            animation: pulse-glow-gold 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse-glow-gold {
            0%, 100% { 
                box-shadow: 0 4px 20px rgba(183, 151, 98, 0.5);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 8px 30px rgba(183, 151, 98, 0.8), 0 0 15px rgba(183, 151, 98, 0.4);
                transform: scale(1.05);
            }
        }
        
        .backtest-hint {
            font-size: 11px;
            color: var(--text-sub);
            text-align: center;
            margin-top: 8px;
        }
        
        /* ========================================
           결과 카드 스타일 (용어 순화)
        ======================================== */
        .result-card {
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: var(--white);
            border-radius: var(--radius-M);
            padding: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        
        .result-stat {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--bg-base);
            border-radius: var(--radius-S);
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .result-stat:hover {
            background: #F0F4F8;
        }
        
        .result-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }
        
        .result-icon.growth { background: #E8F5E9; }
        .result-icon.defense { background: #E3F2FD; }
        .result-icon.volatility { background: #FFF8E1; }
        
        .result-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .result-label {
            font-size: 12px;
            color: var(--text-sub);
            font-weight: 500;
        }
        
        .result-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
        }
        
        .result-value.positive { color: #16A34A; }
        .result-value.negative { color: #DC2626; }
        
        .result-desc {
            font-size: 11px;
            color: var(--text-sub);
            margin-top: 2px;
        }
        
        .result-help {
            color: var(--text-sub);
            font-size: 16px;
            opacity: 0.5;
        }
        
        /* ========================================
           결과 모달 스타일
        ======================================== */
        .result-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }
        
        .modal-content {
            position: relative;
            width: 96%;
            max-width: 500px;
            max-height: 90vh;
            background: var(--white);
            border-radius: var(--radius-L);
            overflow-y: auto;
            animation: modalSlideUp 0.3s ease-out;
            margin: auto;
            z-index: 10001;  /* modal-overlay(10000)보다 앞에 표시 */
        }
        
        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 12px;
            border-bottom: 1px solid var(--line);
        }
        
        .modal-header h2 {
            font-size: 19px;
            font-weight: 700;
            margin: 0;
        }
        
        .modal-close {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-base);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-sub);
        }
        
        .modal-body {
            padding: 12px 10px;
        }
        
        /* 투자 요약 */
        .result-summary {
            text-align: center;
            padding: 16px 10px;
            background: linear-gradient(135deg, #FEFCE8, #FEF3C7);
            border-radius: var(--radius-M);
            margin-bottom: 16px;
        }
        
        .summary-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        
        .summary-start {
            font-size: 16px;
            color: var(--text-sub);
        }
        
        .summary-arrow {
            color: var(--accent);
            font-size: 12px;
            letter-spacing: -2px;
        }
        
        .summary-end {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
        }
        
        .summary-return {
            font-size: 18px;
            font-weight: 600;
            color: #16A34A;
            margin-bottom: 8px;
        }
        
        .summary-return.negative {
            color: #DC2626;
        }
        
        .summary-period {
            font-size: 14px;
            color: var(--text-sub);
        }
        
        /* 3대 지표 카드 */
        .result-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .metric-card {
            text-align: center;
            padding: 14px 6px;
            border-radius: var(--radius-M);
            background: var(--bg-base);
        }
        
        .metric-card.growth { background: #E8F5E9; }
        .metric-card.defense { background: #E3F2FD; }
        .metric-card.volatility { background: #FFF8E1; }
        
        .metric-icon {
            font-size: 28px;
            margin-bottom: 6px;
        }
        
        .metric-name {
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 4px;
        }
        
        .metric-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        
        .metric-compare {
            font-size: 10px;
            color: var(--accent);
            font-weight: 500;
        }
        
        /* 벤치마크 비교 카드 */
        .benchmark-compare {
            background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
            border-radius: var(--radius-M);
            padding: 16px;
            margin-bottom: 16px;
        }
        
        .compare-title {
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        
        .compare-cards {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .compare-card {
            flex: 1;
            background: white;
            border-radius: 12px;
            padding: 14px 10px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .compare-card.winner {
            border: 2px solid var(--accent);
            background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
        }
        
        .compare-label {
            font-size: 13px;
            color: #666;
            margin-bottom: 4px;
        }
        
        .compare-return {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 4px;
        }
        
        .compare-card.benchmark .compare-return {
            color: #64748B;
        }
        
        .compare-mdd {
            font-size: 13px;
            font-weight: 600;
        }
        
        .compare-mdd.negative {
            color: #DC2626;
        }
        
        .compare-mdd.positive {
            color: var(--accent);
        }
        
        .compare-vs {
            font-size: 12px;
            font-weight: 700;
            color: #9CA3AF;
            padding: 0 4px;
        }
        
        .compare-insight {
            text-align: center;
            font-size: 15px;
            color: var(--accent);
            font-weight: 600;
            margin-top: 12px;
            padding: 10px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 8px;
        }
        
        /* AI 총평 */
        .result-ai-comment {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: linear-gradient(135deg, #F0F4F8, #E8EEF4);
            border-radius: var(--radius-M);
            margin-bottom: 20px;
        }
        
        .ai-avatar-big {
            font-size: 32px;
            flex-shrink: 0;
        }
        
        .ai-comment {
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.5;
            font-style: italic;
        }
        
        /* 초보자용 쉬운 해설 */
        .result-easy-explain {
            margin-top: 12px;
            padding: 18px 20px;
            background: #FFFDF5;
            border-radius: 14px;
            border: 1px solid #F5E6C8;
        }
        .easy-explain-title {
            font-size: 14px;
            font-weight: 700;
            color: #8B6914;
            margin-bottom: 12px;
        }
        .easy-explain-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .easy-explain-list li {
            font-size: 13px;
            color: #4A5568;
            line-height: 1.7;
            padding: 6px 0;
            border-bottom: 1px dashed #F0E6D0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .easy-explain-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .easy-explain-list li .explain-icon {
            flex-shrink: 0;
            font-size: 15px;
            margin-top: 1px;
        }
        
        /* 모달 액션 버튼 */
        .modal-actions {
            display: flex;
            gap: 12px;
        }
        
        .modal-actions .btn-secondary {
            flex: 1;
            min-height: 56px;
            padding: 16px 10px;
            border: 1px solid var(--line);
            background: var(--white);
            border-radius: var(--radius-M);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-sub);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            white-space: nowrap;
            transition: all 0.2s ease;
        }
        
        .modal-actions .btn-secondary:hover {
            background: var(--bg-base);
            border-color: var(--text-sub);
        }
        
        .modal-actions .btn-primary {
            flex: 1;
            min-height: 56px;
            padding: 16px 10px;
            border: none;
            background: var(--accent);
            color: white;
            border-radius: var(--radius-M);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        
        .modal-actions .btn-primary.pulse {
            animation: pulse-glow 1.5s ease-in-out infinite;
        }
        
        .modal-actions .btn-primary:hover {
            background: #9A8260;
        }
        
        /* 용어 도움말 툴팁 */
        .help-tooltip {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--primary);
            color: white;
            padding: 20px;
            border-radius: var(--radius-M);
            max-width: 300px;
            z-index: 2000;
            animation: tooltipFadeIn 0.2s ease-out;
        }
        
        @keyframes tooltipFadeIn {
            from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
            to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        }
        
        .help-tooltip h4 {
            margin: 0 0 8px 0;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .help-tooltip p {
            margin: 0;
            font-size: 13px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .tooltip-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 1999;
        }
        
        /* ========================================
           온보딩 섹션 스타일 (씨앗 심기)
        ======================================== */
        .onboarding-section {
            padding: 20px 0;
            animation: fadeIn 0.5s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
                transform: scale(1.03);
            }
        }
        
        .onboarding-header {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .onboarding-icon {
            font-size: 48px;
            margin-bottom: 12px;
        }
        
        .onboarding-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        
        .onboarding-subtitle {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.5;
        }
        
        .onboarding-step {
            background: var(--white);
            border-radius: var(--radius-M);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        
        .step-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }
        
        .step-number {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }
        
        .step-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
        }
        
        /* 슬라이더 스타일 */
        .amount-slider-container {
            margin-bottom: 12px;
        }
        
        .amount-display {
            text-align: center;
            margin-bottom: 16px;
        }
        
        .amount-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
        }
        
        .amount-unit {
            font-size: 18px;
            color: var(--text-main);
            margin-left: 4px;
        }
        
        .amount-metaphor {
            font-size: 12px;
            color: var(--text-sub);
            margin-top: 8px;
        }
        
        .amount-slider {
            width: 100%;
            height: 8px;
            -webkit-appearance: none;
            appearance: none;
            background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--progress), #E5E8EB var(--progress), #E5E8EB 100%);
            border-radius: 4px;
            outline: none;
        }
        
        .amount-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(184, 158, 95, 0.4);
            transition: transform 0.2s;
        }
        
        .amount-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }
        
        .amount-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent);
            cursor: pointer;
            border: none;
        }
        
        .slider-labels {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--text-sub);
            margin-top: 8px;
        }
        
        /* 프리셋 버튼 그룹 */
        .preset-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .preset-btn {
            flex: 1;
            min-width: 70px;
            padding: 12px 8px;
            border: 1px solid var(--line);
            background: var(--white);
            border-radius: var(--radius-S);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-main);
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        
        .preset-btn:hover {
            border-color: var(--accent);
            background: #FFFBF0;
        }
        
        .preset-btn.selected {
            border-color: var(--accent);
            background: var(--accent);
            color: white;
        }
        
        .preset-hint {
            text-align: center;
            font-size: 12px;
            color: var(--text-sub);
            margin-top: 12px;
        }
        
        /* 월 적립금 슬라이더 스타일 */
        .monthly-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #e0e0e0;
            outline: none;
            transition: background 0.3s;
        }
        
        .monthly-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(183, 151, 98, 0.4);
            transition: all 0.2s;
        }
        
        .monthly-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 3px 8px rgba(183, 151, 98, 0.6);
        }
        
        .monthly-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent);
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 6px rgba(183, 151, 98, 0.4);
            transition: all 0.2s;
        }
        
        .monthly-slider::-moz-range-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 3px 8px rgba(183, 151, 98, 0.6);
        }
        
        .monthly-slider:active {
            background: #d0d0d0;
        }
        
        .monthly-amount-display {
            text-align: center;
            margin: 20px 0;
        }
        
        /* 설정 요약 */
        .settings-summary {
            background: linear-gradient(135deg, #FEFCE8, #FEF3C7);
            border-radius: var(--radius-M);
            padding: 16px;
            margin-top: 20px;
        }
        
        .summary-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-bottom: 8px;
        }
        
        .summary-row:last-child {
            margin-bottom: 0;
        }
        
        .summary-label {
            color: var(--text-sub);
        }
        
        .summary-value {
            font-weight: 600;
            color: var(--text-main);
        }
        
        /* 온보딩 버튼 */
        .onboarding-actions {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .btn-start-assembly {
            width: 100%;
            padding: 16px;
            border: none;
            background: var(--accent);
            color: white;
            border-radius: var(--radius-M);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s;
        }
        
        .btn-start-assembly:hover {
            background: #9A8260;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(184, 158, 95, 0.3);
        }
        
        .btn-skip-onboarding {
            width: 100%;
            padding: 12px;
            border: none;
            background: transparent;
            color: var(--text-sub);
            font-size: 13px;
            cursor: pointer;
            text-decoration: underline;
        }
        
        .btn-skip-onboarding:hover {
            color: var(--text-main);
        }
        
        /* 블록 조립 섹션 (숨김 상태로 시작) */
        .assembly-section {
            display: none;
        }
        
        .assembly-section.visible {
            display: block;
            animation: fadeIn 0.5s ease-out;
        }
        
        /* 설정 수정 버튼 */
        .edit-settings-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border: 1px solid var(--line);
            background: var(--white);
            border-radius: var(--radius-S);
            font-size: 12px;
            color: var(--text-sub);
            cursor: pointer;
        }
        
        .edit-settings-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        
        .current-settings-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #FFFBF0;
            border: 1px solid var(--accent);
            border-radius: var(--radius-S);
            padding: 10px 14px;
            margin-bottom: 16px;
            font-size: 12px;
        }
        
        .current-settings-info {
            display: flex;
            gap: 16px;
        }
        
        .setting-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .setting-item .label {
            color: var(--text-sub);
        }
        
        .setting-item .value {
            font-weight: 600;
            color: var(--text-main);
        }
        
        /* ========================================
           미래 시뮬레이션 모달 스타일
        ======================================== */
        .future-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1100;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .future-modal .modal-content {
            width: 96%;
            max-height: 92vh;
            overflow-y: auto;
        }
        
        .future-header {
            text-align: center;
            padding: 14px 12px;
            background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
            border-radius: var(--radius-L) var(--radius-L) 0 0;
        }
        
        .future-header-icon {
            font-size: 36px;
            margin-bottom: 6px;
        }
        
        .future-header h2 {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 4px 0;
        }
        
        .future-header p {
            font-size: 15px;
            color: var(--text-sub);
            margin: 0;
        }
        
        .future-cagr-badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 8px;
        }
        
        /* 기간 선택 */
        .period-selector {
            padding: 14px 10px;
            border-bottom: 1px solid var(--line);
        }
        
        .period-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .period-buttons {
            display: flex;
            gap: 8px;
        }
        
        .period-btn {
            flex: 1;
            padding: 12px 8px;
            border: 2px solid var(--line);
            background: var(--white);
            border-radius: var(--radius-S);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        
        .period-btn:hover {
            border-color: var(--accent);
        }
        
        .period-btn.selected {
            border-color: var(--accent);
            background: var(--accent);
            color: white;
        }
        
        .period-btn .years {
            display: block;
            font-size: 16px;
        }
        
        .period-btn .age-hint {
            display: block;
            font-size: 10px;
            font-weight: 400;
            opacity: 0.7;
            margin-top: 2px;
        }
        
        /* 투자 기간 슬라이더 */
        .period-slider-container {
            padding: 10px 0;
        }
        
        .period-value-display {
            text-align: center;
            margin-bottom: 16px;
        }
        
        .period-years-value {
            font-size: 48px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }
        
        .period-years-unit {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-main);
            margin-left: 4px;
        }
        
        .period-slider {
            width: 100%;
            height: 12px;
            -webkit-appearance: none;
            appearance: none;
            background: linear-gradient(to right, 
                #A5D6A7 0%, 
                #66BB6A 30%, 
                var(--accent) 60%, 
                #FF8A65 100%
            );
            border-radius: 6px;
            outline: none;
            cursor: pointer;
        }
        
        .period-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            border: 3px solid var(--accent);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .period-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(184, 158, 95, 0.4);
        }
        
        .period-slider::-moz-range-thumb {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            border: 3px solid var(--accent);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .period-slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 13px;
            color: var(--text-sub);
        }
        
        .period-hint {
            text-align: center;
            font-size: 15px;
            color: var(--text-sub);
            margin-top: 12px;
            padding: 10px 12px;
            background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
            border-radius: var(--radius-S);
            border: 1px dashed var(--accent);
        }
        
        /* 나무 성장 차트 */
        .growth-chart {
            padding: 16px 10px;
            background: linear-gradient(180deg, #FAFAFA 0%, #F0F4F8 100%);
        }
        
        .chart-container {
            position: relative;
            height: 220px;
            padding: 0 16px;
            overflow: hidden;
        }
        
        .growth-curve {
            position: absolute;
            left: 16px;
            right: 16px;
            top: 25px;
            bottom: 22px;
            width: calc(100% - 32px);
            height: calc(100% - 47px);
            z-index: 0;
            pointer-events: none;
        }
        
        .chart-bars-container {
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 0;
            top: 0;
            z-index: 2;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            pointer-events: none;
        }
        
        .chart-bar {
            pointer-events: auto;
        }
        
        .growth-hover-area {
            position: absolute;
            left: 16px;
            right: 16px;
            top: 40px;
            bottom: 20px;
            z-index: 3;
            cursor: crosshair;
        }
        
        .growth-tooltip {
            position: absolute;
            top: 10px;
            transform: translateX(-50%);
            background: rgba(30, 30, 30, 0.95);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            z-index: 10;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.15s;
            text-align: center;
            min-width: 120px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        
        .growth-tooltip-year {
            color: #aaa;
            font-size: 11px;
            margin-bottom: 4px;
        }
        
        .growth-tooltip-amount {
            font-size: 15px;
            font-weight: 700;
            color: #4CAF50;
            margin-bottom: 2px;
        }
        
        .growth-tooltip-contrib {
            font-size: 10px;
            color: #888;
        }
        
        .chart-bar {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            max-width: 60px;
        }
        
        .bar-value {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
            white-space: nowrap;
        }
        
        .bar-fill {
            width: 32px;
            background: linear-gradient(180deg, #4CAF50, #81C784);
            border-radius: 4px 4px 0 0;
            transition: height 0.5s ease-out;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 8px;
            min-height: 20px;
            animation: bar-pulse 2.5s ease-in-out infinite;
        }
        
        @keyframes bar-pulse {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
                transform: scaleY(1);
            }
            50% { 
                box-shadow: 0 0 15px 5px rgba(76, 175, 80, 0.35);
                transform: scaleY(1.03);
            }
        }
        
        /* 물결처럼 순차적 애니메이션 딜레이 */
        .chart-bar:nth-child(1) .bar-fill { animation-delay: 0s; }
        .chart-bar:nth-child(2) .bar-fill { animation-delay: 0.3s; }
        .chart-bar:nth-child(3) .bar-fill { animation-delay: 0.6s; }
        .chart-bar:nth-child(4) .bar-fill { animation-delay: 0.9s; }
        .chart-bar:nth-child(5) .bar-fill { animation-delay: 1.2s; }
        .chart-bar:nth-child(6) .bar-fill { animation-delay: 1.5s; }
        
        .bar-fill.seed { background: linear-gradient(180deg, #A5D6A7, #C8E6C9); }
        .bar-fill.sprout { background: linear-gradient(180deg, #81C784, #A5D6A7); }
        .bar-fill.tree { background: linear-gradient(180deg, #66BB6A, #81C784); }
        .bar-fill.big-tree { background: linear-gradient(180deg, #43A047, #66BB6A); }
        
        .bar-icon {
            font-size: 16px;
        }
        
        .bar-label {
            font-size: 13px;
            color: var(--text-sub);
            margin-top: 6px;
        }
        
        /* 결과 요약 */
        .future-result {
            padding: 14px 10px;
        }
        
        .result-main {
            text-align: center;
            padding: 16px 10px;
            background: linear-gradient(135deg, #FFFDE7, #FFF9C4);
            border-radius: var(--radius-M);
            margin-bottom: 16px;
        }
        
        .result-amount {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
        }
        
        .result-return {
            font-size: 16px;
            font-weight: 600;
            color: #16A34A;
            margin-top: 4px;
        }
        
        .result-breakdown {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .breakdown-item {
            flex: 1;
            text-align: center;
            padding: 12px;
            background: var(--bg-base);
            border-radius: var(--radius-S);
        }
        
        .breakdown-label {
            font-size: 11px;
            color: var(--text-sub);
            margin-bottom: 4px;
        }
        
        .breakdown-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
        }
        
        /* 교육 메시지 */
        .future-tip {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px;
            background: #E3F2FD;
            border-radius: var(--radius-S);
            margin-bottom: 16px;
        }
        
        .future-tip-icon {
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .future-tip-text {
            font-size: 13px;
            color: var(--text-main);
            line-height: 1.5;
        }
        
        /* 면책 조항 */
        .disclaimer {
            font-size: 11px;
            color: var(--text-sub);
            text-align: center;
            padding: 12px;
            background: #F5F5F5;
            border-radius: var(--radius-S);
            margin-bottom: 16px;
        }
        
        .disclaimer i {
            margin-right: 4px;
        }
        
        /* ========================================
           시간여행 애니메이션 모달 스타일
        ======================================== */
        .timetravel-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1200;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 40px;
            transition: background 0.5s ease;
        }
        
        .timetravel-modal.warm {
            background: rgba(255, 200, 150, 0.15);
        }
        
        .timetravel-modal.cold {
            background: rgba(100, 150, 255, 0.15);
        }
        
        .timetravel-modal.neutral {
            background: rgba(0, 0, 0, 0.6);
        }
        
        .timetravel-content {
            width: 95%;
            max-width: 420px;
            background: var(--white);
            border-radius: var(--radius-L);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .timetravel-header {
            padding: 12px 15px;
            text-align: center;
            background: linear-gradient(135deg, #1E3A5F, #0F1F38);
            color: white;
            position: relative;
        }
        
        .timetravel-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: white;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .timetravel-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg) scale(1.1);
        }
        
        .timetravel-close:active {
            transform: rotate(90deg) scale(0.95);
        }
        
        .timetravel-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .timetravel-date {
            font-size: 24px;
            font-weight: 300;
            opacity: 0.9;
        }
        
        /* 차트 영역 */
        .timetravel-chart {
            height: 280px;
            padding: 10px 16px 15px 16px;
            background: linear-gradient(180deg, #FAFAFA, #F0F4F8);
            position: relative;
            overflow: hidden;
        }
        
        .chart-wrapper {
            position: absolute;
            bottom: 30px;
            left: 16px;
            right: 16px;
            height: 140px;
        }
        
        .chart-line {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .chart-path {
            fill: none;
            stroke-width: 3;
        }
        
        /* 개별 자산 라인 (흐릿하고 얇게) */
        .chart-path-asset {
            fill: none;
            stroke-width: 1.5;
            opacity: 0.35;
            stroke-dasharray: 4, 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s ease;
        }
        
        .chart-path.positive {
            stroke: #16A34A;
        }
        
        .chart-path.negative {
            stroke: #DC2626;
        }
        
        .chart-area {
            opacity: 0.2;
        }
        
        .chart-area.positive {
            fill: #16A34A;
        }
        
        .chart-area.negative {
            fill: #DC2626;
        }
        
        /* 현재 값 표시 - 그래프 영역 위에 표시 */
        .current-value-display {
            position: absolute;
            right: 12px;
            top: 10px;
            text-align: right;
            z-index: 5;
            background: rgba(250, 250, 250, 0.9);
            padding: 6px 10px;
            border-radius: 6px;
        }
        
        .current-amount {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            transition: color 0.3s ease;
        }
        
        .current-amount.positive {
            color: #16A34A;
        }
        
        .current-amount.negative {
            color: #DC2626;
        }
        
        .current-return {
            font-size: 16px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .current-return.positive {
            color: #16A34A;
        }
        
        .current-return.negative {
            color: #DC2626;
        }
        
        /* AI 반응 영역 */
        .timetravel-ai {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            border-top: 1px solid var(--line);
            min-height: 70px;
        }
        
        .ai-avatar-animated {
            font-size: 40px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .ai-avatar-animated.shake {
            animation: shake 0.5s ease-in-out;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px) rotate(-5deg); }
            75% { transform: translateX(5px) rotate(5deg); }
        }
        
        .ai-avatar-animated.bounce {
            animation: bounce 0.5s ease-in-out;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .ai-speech {
            flex: 1;
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.4;
        }
        
        /* 이벤트 배지 */
        .event-badge {
            display: inline-block;
            background: #FEF3C7;
            color: #92400E;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .event-badge.danger {
            background: #FEE2E2;
            color: #991B1B;
        }
        
        .event-badge.success {
            background: #D1FAE5;
            color: #065F46;
        }
        
        /* 진행 바 */
        .timetravel-progress {
            height: 4px;
            background: var(--line);
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--accent);
            transition: width 0.1s linear;
        }
        
        /* 건너뛰기 버튼 (차트 외부) */
        .skip-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: calc(100% - 40px);
            min-height: 60px;
            margin: 16px 20px;
            padding: 20px 28px;
            border: none;
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-sub);
            border-radius: var(--radius-M);
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            transition: all 0.2s ease;
        }
        
        .skip-btn:hover {
            background: white;
            color: var(--text-main);
            box-shadow: 0 6px 16px rgba(0,0,0,0.18);
            transform: translateY(-2px);
        }
        
        .skip-btn:active {
            transform: translateY(0);
        }
        
        /* 호버 툴팁 - wrapper 안에서 100% */
        .chart-hover-area {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            cursor: crosshair;
            z-index: 10;
        }
        
        .chart-tooltip {
            position: fixed;  /* absolute → fixed로 변경하여 모달 밖에서도 표시 */
            background: rgba(15, 31, 56, 0.98);
            color: white;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 12px;
            width: 220px;
            max-height: 350px;  /* 최대 높이 제한 */
            overflow-y: auto;   /* 내용이 많으면 스크롤 */
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
            z-index: 10005;  /* 모달보다 높게 */
            backdrop-filter: blur(10px);
        }
        
        .chart-tooltip.visible {
            opacity: 1;
        }
        
        .tooltip-date {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 13px;
            color: #FFD93D;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .tooltip-assets {
            margin-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 10px;
        }
        
        .tooltip-asset-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }
        
        .tooltip-asset-name {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .tooltip-asset-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        .tooltip-asset-return {
            font-weight: 600;
        }
        
        .tooltip-asset-return.positive { color: #4CAF50; }
        .tooltip-asset-return.negative { color: #F44336; }
        
        .tooltip-portfolio {
            background: rgba(184, 158, 95, 0.2);
            border: 1px solid var(--accent);
            border-radius: 8px;
            padding: 8px;
            margin-bottom: 10px;
        }
        
        .tooltip-portfolio-label {
            font-size: 10px;
            opacity: 0.8;
            margin-bottom: 2px;
        }
        
        .tooltip-portfolio-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
        }
        
        .tooltip-insight {
            background: rgba(255, 193, 7, 0.15);
            border-radius: 8px;
            padding: 10px;
            font-size: 11px;
            line-height: 1.5;
        }
        
        .tooltip-insight-icon {
            margin-right: 4px;
        }
        
        .chart-vertical-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 2px;
            height: 100%;
            background: rgba(50, 50, 50, 0.7);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
        }
        
        .chart-vertical-line.visible {
            opacity: 1;
        }
        
        /* 차트 범례 - 차트 바깥 하단에 배치 */
        .chart-legend {
            position: relative;
            margin-top: 8px;
            padding: 8px 12px;
            background: rgba(30, 41, 59, 0.95);
            border-radius: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            justify-content: center;
            font-size: 11px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: rgba(255,255,255,0.9);
            white-space: nowrap;
        }
        
        .legend-item.portfolio-legend {
            font-weight: 600;
            color: #fff;
        }
        
        .legend-line {
            width: 20px;
            height: 2px;
            border-radius: 1px;
        }
        
        .legend-line.portfolio {
            height: 3px;
            background: var(--accent);
        }
        
        .legend-line.asset {
            height: 2px;
            opacity: 0.5;
        }
        
        /* 방어 하이라이트 */
        .defense-highlight {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 10px;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .defense-highlight.visible {
            opacity: 1;
        }
        
        /* 저장/로딩 버튼 섹션 */
        .save-buttons {
            display: flex;
            gap: 12px;
            margin-bottom: 8px;
        }
        
        .save-buttons .btn-full {
            flex: 1;
        }
        
        .btn-secondary {
            background: var(--bg-base);
            color: var(--text-main);
            border: 1px solid var(--border);
        }
        
        .btn-secondary:hover {
            background: #E8ECF0;
        }
        
        /* 전략 목록 모달 */
        .strategies-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1200;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .strategies-content {
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            background: var(--white);
            border-radius: var(--radius-L);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .strategies-header {
            padding: 20px;
            background: linear-gradient(135deg, #1E3A5F, #0F1F38);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .strategies-header h2 {
            font-size: 18px;
            font-weight: 700;
        }
        
        .strategies-list {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
        }
        
        .strategy-item {
            padding: 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius-M);
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .strategy-item:hover {
            border-color: var(--accent);
            background: #FFFBF0;
        }
        
        .strategy-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .strategy-item-name {
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            flex: 1;
        }
        
        .strategy-item-name:hover {
            color: var(--primary);
        }
        
        .strategy-item-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .strategy-action-btn {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            border: 1px solid var(--line);
            background: var(--bg-card);
            color: var(--text-sub);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .strategy-action-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .strategy-item-date {
            font-size: 12px;
            color: var(--text-sub);
        }
        
        .strategy-item-stats {
            display: flex;
            gap: 16px;
            font-size: 13px;
        }
        
        .strategy-stat {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .strategy-stat.positive { color: #28A745; }
        .strategy-stat.negative { color: #DC3545; }
        
        .strategy-item-blocks {
            margin-top: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .block-tag {
            padding: 2px 8px;
            background: var(--bg-base);
            border-radius: 4px;
            font-size: 11px;
        }
        
        .strategies-empty {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-sub);
        }
        
        .strategies-empty-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        /* ========================================
           전략 선택 섹션 스타일 (거장들의 레시피)
        ======================================== */
        .strategy-select-section {
            display: none;
            padding: 20px 0 200px;
            animation: fadeIn 0.5s ease-out;
        }
        
        .strategy-select-section.visible {
            display: block;
        }
        
        .strategy-select-header {
            text-align: center;
            margin-bottom: 28px;
        }
        
        .strategy-select-header h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .strategy-select-header p {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.6;
        }
        
        /* 전략 카드 컨테이너 */
        .strategy-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        /* 개별 전략 카드 */
        .strategy-card {
            background: var(--white);
            border: 2px solid var(--line);
            border-radius: var(--radius-L);
            padding: 14px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .strategy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .strategy-card:hover {
            border-color: var(--accent);
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 12px 32px rgba(184, 158, 95, 0.25);
        }
        
        .strategy-card:hover::before {
            transform: scaleX(1);
        }
        
        .strategy-card:active {
            transform: translateY(-2px) scale(0.98);
            box-shadow: 0 4px 12px rgba(184, 158, 95, 0.2);
            transition: all 0.1s ease;
        }
        
        .strategy-card.selected {
            border-color: var(--accent);
            background: linear-gradient(135deg, #FFFBF0, #FFF8E7);
            box-shadow: 0 8px 24px rgba(184, 158, 95, 0.2);
        }
        
        .strategy-card.selected::before {
            transform: scaleX(1);
        }
        
        /* 카드 헤더 */
        .strategy-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .strategy-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .strategy-card:hover .strategy-card-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .strategy-card-icon.all-weather {
            background: linear-gradient(135deg, #87CEEB, #FFD700, #FF6B6B, #98D8C8);
        }
        
        .strategy-card-icon.classic {
            background: linear-gradient(135deg, #1E3A5F, #0F1F38);
        }
        
        .strategy-card-icon.permanent {
            background: linear-gradient(135deg, #B89E5F, #D4AF37);
        }
        
        .strategy-card-icon.custom {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }
        
        .strategy-card-title {
            flex: 1;
        }
        
        .strategy-card-title h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        
        .strategy-card-title .creator {
            font-size: 14px;
            color: var(--text-sub);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        /* 난이도 배지 */
        .difficulty-badge {
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }
        
        .difficulty-badge.easy {
            background: #D4EDDA;
            color: #155724;
        }
        
        .difficulty-badge.medium {
            background: #FFF3CD;
            color: #856404;
        }
        
        /* 카드 설명 */
        .strategy-card-desc {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        /* 구성 미리보기 */
        .strategy-preview {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .preview-block {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: var(--bg-base);
            border-radius: 16px;
            font-size: 14px;
            color: var(--text-main);
        }
        
        .preview-block .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        /* 커스텀 카드 특별 스타일 */
        .strategy-card.custom-card {
            border-style: dashed;
            background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
        }
        
        .strategy-card.custom-card:hover {
            background: linear-gradient(135deg, #F0F4FF, #E8EEFF);
        }
        
        .custom-card-inner {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .custom-card-text h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        
        .custom-card-text p {
            font-size: 13px;
            color: var(--text-sub);
        }
        
        /* 선택 완료 후 버튼 영역 */
        .strategy-action-area {
            display: none;
            flex-direction: column;
            gap: 12px;
            padding: 20px;
            background: linear-gradient(135deg, #FEFCE8, #FEF3C7);
            border-radius: var(--radius-L);
            animation: fadeInUp 0.3s ease-out;
            margin-bottom: 40px;
        }
        
        .strategy-action-area.visible {
            display: flex;
        }
        
        .selected-strategy-summary {
            text-align: center;
            margin-bottom: 8px;
        }
        
        .selected-strategy-summary h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        
        .selected-strategy-summary p {
            font-size: 13px;
            color: var(--text-sub);
        }
        
        .btn-start-timetravel {
            width: 100%;
            padding: 20px 24px;
            border: none;
            background: linear-gradient(135deg, var(--accent), #9A8260);
            color: white;
            border-radius: var(--radius-L);
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 24px rgba(184, 158, 95, 0.4);
        }
        
        .btn-start-timetravel:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 32px rgba(184, 158, 95, 0.5);
        }
        
        .btn-start-timetravel:active {
            transform: translateY(-1px) scale(0.98);
        }
        
        .btn-start-timetravel.pulse {
            animation: pulse-glow-gold 1.5s ease-in-out infinite;
        }
        
        .btn-edit-strategy {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--accent);
            background: transparent;
            color: var(--accent);
            border-radius: var(--radius-M);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .btn-edit-strategy:hover {
            background: rgba(184, 158, 95, 0.1);
        }
        
        /* 뒤로가기 버튼 */
        .btn-back-to-onboarding {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 18px;
            background: linear-gradient(135deg, #667eea15, #764ba215);
            border: 2px solid var(--primary);
            border-radius: var(--radius-M);
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            animation: pulse-btn 2s infinite;
        }
        
        @keyframes pulse-btn {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
            50% { transform: scale(1.02); box-shadow: 0 0 12px 4px rgba(102, 126, 234, 0.2); }
        }
        
        .btn-back-to-onboarding:hover {
            background: var(--primary);
            color: white;
            animation: none;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* ========================================
   Utility classes
   ======================================== */

.monthly-amount-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.monthly-amount-unit {
    font-size: 20px;
    color: var(--text-sub);
    margin-left: 4px;
}

.monthly-slider-container {
    padding: 0 20px;
    margin: 20px 0;
}

.monthly-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-sub);
}

.summary-hint {
    font-size: 11px;
    color: var(--text-sub);
    margin-left: 6px;
}

.summary-row--clickable {
    cursor: pointer;
}

.summary-value--edit {
    display: flex;
    align-items: center;
    gap: 4px;
}

.summary-edit-icon {
    font-size: 14px;
    color: var(--primary);
    opacity: 0.7;
}

.amount-edit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.amount-edit-dialog {
    background: var(--surface, white);
    border-radius: 16px;
    padding: 24px;
    width: min(320px, 90vw);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.amount-edit-title {
    margin: 0 0 16px;
    font-size: 18px;
    text-align: center;
}

.amount-edit-input-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.amount-edit-input {
    width: 140px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 12px;
    outline: none;
    -moz-appearance: textfield;
}

.amount-edit-unit {
    font-size: 18px;
    color: var(--text-sub);
}

.amount-edit-hint {
    text-align: center;
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 20px;
}

.amount-edit-actions {
    display: flex;
    gap: 8px;
}

.amount-edit-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

.amount-edit-btn--cancel {
    border: 1px solid #ddd;
    background: var(--surface, white);
}

.amount-edit-btn--confirm {
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.dot--navy { background: #0F1F38; }
.dot--gray { background: #889099; }
.dot--gold { background: #B89E5F; }
.dot--orange { background: #D97706; }
.dot--green { background: #10B981; }

/* ========================================
   Utility & template classes
   ======================================== */

.assembly-back-wrap { padding: 16px 16px 12px; }

.btn-back-to-strategy {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-sub);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back-to-strategy i { font-size: 16px; }

.current-settings-bar--stacked {
    flex-direction: column;
    padding: 12px 14px;
    margin: 0 10px 12px;
    border-radius: 12px;
    gap: 10px;
}

.current-settings-info--center {
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.setting-item--clickable {
    white-space: nowrap;
    cursor: pointer;
}

.setting-item .label--sm { font-size: 13px; }

.setting-item .value--md {
    font-size: 15px;
    font-weight: 600;
}

.summary-edit-icon {
    font-size: 12px;
    color: var(--primary);
    opacity: 0.6;
}

.summary-edit-icon--md {
    font-size: 14px;
    color: var(--primary);
    opacity: 0.7;
}

.custom-card-arrow {
    font-size: 24px;
    color: var(--text-sub);
}

.block-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.block-grid-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.btn-add-block {
    display: none;
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
    gap: 6px;
}

.btn-add-block.is-visible { display: flex; }

.section-title--spaced { margin-top: 24px; }

.tray-slot.filled { background: var(--slot-color); }

.block-icon--dynamic {
    background: color-mix(in srgb, var(--block-color) 12%, transparent);
    color: var(--block-color);
}

.summary-dot { background: var(--dot-color); }

.legend-line.asset {
    background: var(--legend-color);
    opacity: 0.8;
}

.tooltip-asset-dot { background: var(--dot-color); }

.block-edit-btn,
.block-delete-btn {
    position: absolute;
    top: 4px;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.block-edit-btn {
    left: 4px;
    background: rgba(15, 31, 56, 0.1);
    color: var(--primary);
}

.block-delete-btn {
    right: 4px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.modal-content--block { max-width: 500px; }

.modal-field { margin-bottom: 20px; }

.modal-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.modal-input--flex { flex: 1; }

.asset-search-container { position: relative; }

.asset-search-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.btn-search-asset {
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface, white);
    border: 1px solid var(--line);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-hint--sub {
    font-size: 12px;
    color: var(--text-sub);
    margin-top: 4px;
}

.selected-asset-display {
    padding: 12px;
    background: var(--bg-base);
    border-radius: 8px;
    margin-bottom: 20px;
}

.selected-asset-label {
    font-size: 12px;
    color: var(--text-sub);
    margin-bottom: 4px;
}

.selected-asset-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.selected-asset-ticker {
    font-size: 12px;
    color: var(--text-sub);
}

.modal-footer--actions {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid var(--line);
}

.modal-btn--cancel-gray {
    flex: 1;
    padding: 12px;
    background: #f0f0f0;
    color: var(--text-main);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.modal-btn--save-accent {
    flex: 1;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.help-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.help-dialog {
    background: var(--surface, white);
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.help-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a4a6c 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.help-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.help-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.help-body {
    padding: 20px;
    background: var(--surface, white);
}

.help-section { margin-bottom: 20px; }
.help-section:last-child { margin-bottom: 0; }

.help-section-title {
    color: #1a3a5c;
    font-size: 15px;
    margin: 0 0 12px;
}

.help-section-title--gold { color: #D4AF37; }

.help-box {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 14px;
}

.help-box--tip {
    background: #E8F4FD;
    font-size: 13px;
    color: #1a3a5c;
    line-height: 1.6;
}

.help-box--xp {
    background: #FEF9E7;
    border: 1px solid #F9E79F;
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

.help-xp-desc {
    font-size: 13px;
    color: #8B7355;
    line-height: 1.6;
    margin: 0 0 12px;
}

.help-xp-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-xp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: white;
    border-radius: 6px;
}

.help-xp-item span {
    font-size: 12px;
    color: #333;
}

.help-xp-item .xp-val {
    font-weight: 600;
    color: #D4AF37;
}

.help-xp-item .xp-val--minus { color: #DC2626; }

.help-footer {
    padding: 16px 20px;
    border-top: 1px solid #E5E7EB;
    background: var(--surface, white);
}

.help-footer .btn-confirm {
    width: 100%;
    padding: 14px;
    background: #1a3a5c;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.strategies-modal--open { display: flex; }

.strategies-body { padding: 20px; }

.strategies-content--sm { max-width: 340px; }
.strategies-content--edit { max-width: 360px; }
.strategies-content--xs {
    max-width: 320px;
    text-align: center;
}

.strategies-header--center {
    justify-content: center;
    border-bottom: none;
}

.strategies-header--center h2 { color: #DC2626; }

.strategy-form-field { margin-bottom: 16px; }

.strategy-form-label {
    display: block;
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.strategy-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 16px;
    background: var(--bg-body);
    box-sizing: border-box;
}

.strategy-form-error {
    display: none;
    color: #DC2626;
    font-size: 13px;
    margin-bottom: 12px;
}

.strategy-form-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.strategy-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.strategy-btn--cancel {
    border: 1px solid var(--line);
    background: var(--bg-card);
    color: var(--text-main);
}

.strategy-btn--save {
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.strategy-btn--delete {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #DC2626;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.btn-save-strategy {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.delete-confirm-name {
    color: var(--text-main);
    margin-bottom: 8px;
}

.delete-confirm-desc {
    color: var(--text-sub);
    font-size: 14px;
    margin-bottom: 20px;
}

.text-sub-sm { color: #666; font-size: 12px; }

.text-muted-empty { color: #999; }

.future-tip-sub {
    color: #666;
    font-size: 12px;
}

.future-tip-sub strong { color: var(--accent); }

.strategies-empty-sub {
    font-size: 13px;
    margin-top: 8px;
}

.tt-speech-hint {
    color: #666;
    font-size: 12px;
}

.tooltip-return.positive { color: #4CAF50; }
.tooltip-return.negative { color: #F44336; }

.chart-path--thick { stroke-width: 4; }

.skip-btn--result {
    background: var(--accent) !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.search-result-state {
    padding: 20px;
    text-align: center;
    color: var(--text-sub);
}

.search-result-state--error {
    color: #dc3545;
}

.asset-result-item {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background 0.2s;
}

.asset-result-item:hover {
    background: var(--bg-base);
}

.asset-result-name {
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 4px;
}

.asset-result-meta {
    font-size: 12px;
    color: var(--text-sub);
}

#curveGradient stop:nth-of-type(1) { stop-color: #A5D6A7; stop-opacity: 0.08; }
#curveGradient stop:nth-of-type(2) { stop-color: #81C784; stop-opacity: 0.12; }
#curveGradient stop:nth-of-type(3) { stop-color: #66BB6A; stop-opacity: 0.18; }
