
        .analysis-result-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-top: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .result-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--theme-light);
        }
        
        .result-header h2 {
            font-size: 32px;
            color: var(--theme-dark);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .result-subtitle {
            font-size: 16px;
            color: #666;
            margin: 0;
        }
        
        .result-summary-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .summary-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid #e0e0e0;
        }
        
        .summary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .summary-card.highlight {
            background: linear-gradient(135deg, #fff3cd 0%, #ffe5a0 100%);
            border-color: #f39c12;
        }
        
        .card-icon {
            font-size: 42px;
            margin-bottom: 15px;
        }
        
        .card-content label {
            display: block;
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .card-value {
            font-size: 26px;
            font-weight: 800;
            color: var(--theme-dark);
            margin-bottom: 5px;
        }
        
        .summary-card.highlight .card-value {
            color: #f39c12;
        }
        
        .card-detail {
            font-size: 12px;
            color: #999;
        }
        
        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }
        
        .simulation-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
            background: white;
        }
        
        .simulation-table th {
            background: #667eea;
            color: white;
            padding: 12px 8px;
            text-align: center;
            font-size: 11px;
            white-space: nowrap;
            border: 1px solid #5568d3;
        }
        
        .simulation-table td {
            padding: 10px 8px;
            text-align: right;
            border: 1px solid #eee;
        }
        
        .simulation-table tbody tr:hover {
            background: #f8f9fa;
        }
        
        /* 수익률 45% 초과: 초록색 */
        .profit-high {
            background: #e8f5e9 !important;
        }
        
        /* 수익률 35~45%: 노란색 */
        .profit-yellow {
            background: #fff9c4 !important;
        }
        
        /* 수익률 0~35%: 기본 (흰색) */
        .profit-low {
            background: white !important;
        }
        
        /* 수익률 0% 미만: 빨간색 */
        .loss {
            background: #ffebee !important;
            color: #c62828;
        }
        
        .highlight {
            font-weight: bold;
            font-size: 13px;
            color: #667eea;
        }

        /* 라디오 버튼 스타일 개선 */
        .radio-group {
            display: flex;
            gap: 15px;
            margin-top: 8px;
        }

        .radio-item {
            flex: 1;
        }

        .radio-item input {
            display: none;
        }

        .radio-box {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            height: 100%;
        }

        .custom-radio {
            width: 22px;
            height: 22px;
            border: 2px solid #adb5bd;
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .custom-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 12px;
            height: 12px;
            background: #339af0;
            border-radius: 50%;
            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .radio-item input:checked + .radio-box {
            background: #e7f5ff;
            border-color: #339af0;
            box-shadow: 0 4px 12px rgba(51, 154, 240, 0.15);
        }

        .radio-item input:checked + .radio-box .custom-radio {
            border-color: #339af0;
            background: white;
        }

        .radio-item input:checked + .radio-box .custom-radio::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .radio-box .text {
            font-size: 15px;
            font-weight: 600;
            color: #495057;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .radio-box .sub {
            font-size: 13px;
            color: #868e96;
            font-weight: normal;
        }

        .radio-item input:checked + .radio-box .text {
            color: #1864ab;
        }

        .radio-item input:checked + .radio-box .sub {
            color: #1c7ed6;
            font-weight: 600;
        }

        .radio-box:hover {
            background: #f8f9fa;
            border-color: #ced4da;
        }

        .radio-item input:checked + .radio-box:hover {
            background: #e7f5ff;
            border-color: #339af0;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: white;
            width: 90%;
            max-width: 600px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
            animation: slideUp 0.3s ease;
            display: flex;
            flex-direction: column;
            max-height: 85vh;
        }

        .modal-header {
            padding: 20px 25px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
            border-radius: 20px 20px 0 0;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 18px;
            color: #333;
            font-weight: 700;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            line-height: 1;
            padding: 0;
            transition: color 0.2s;
        }

        .close-btn:hover {
            color: #333;
        }

        .modal-body {
            padding: 25px;
            overflow-y: auto;
        }

        .formula-group {
            margin-bottom: 25px;
        }

        .formula-group:last-child {
            margin-bottom: 0;
        }

        .formula-group h4 {
            font-size: 15px;
            color: #495057;
            margin-bottom: 10px;
            border-left: 4px solid #667eea;
            padding-left: 12px;
            font-weight: 600;
        }

        .formula-box {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 12px;
            font-family: 'Pretendard', sans-serif;
            font-size: 14px;
            color: #333;
            border: 1px solid #e9ecef;
            line-height: 1.6;
            font-weight: 500;
        }

        .note {
            font-size: 12px;
            color: #868e96;
            margin-top: 8px;
            padding-left: 5px;
        }

        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .btn-info {
            background: #17a2b8;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            height: 45px;
            font-size: 14px;
            text-decoration: none;
        }

        .btn-info:hover {
            background: #138496;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
        }
