﻿        /* Quiz Page Specific Styles */
        .quiz-page {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            min-height: 100vh;
        }
        
        .quiz-header {
            text-align: center;
            padding: var(--spacing-lg) 0;
            background: linear-gradient(145deg, rgba(255,127,80,0.1), rgba(255,107,53,0.05));
        }
        
        .quiz-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-top: var(--spacing-md);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Progress Styles */
        .progress-section {
            padding: var(--spacing-md) 0;
            background: var(--bg-secondary);
            border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        }
        
        .progress-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--spacing-md);
        }
        
        .progress-text {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin: 0;
        }
        
        .progress-timer {
            display: flex;
            align-items: center;
            gap: var(--spacing-xs);
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .progress-bar-container {
            background: linear-gradient(145deg, #ffffff, #f8f4e8);
            border: 2px dashed rgba(139, 69, 19, 0.2);
            border-radius: 20px;
            height: 12px;
            margin: var(--spacing-md) 0;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-color), #ff6b35);
            border-radius: 20px;
            transition: width 0.6s ease;
            position: relative;
            box-shadow: 0 2px 4px rgba(255, 127, 80, 0.3);
        }
        
        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 20px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
            border-radius: 20px;
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-20px); }
            100% { transform: translateX(20px); }
        }
        
        .progress-dots {
            display: flex;
            justify-content: center;
            gap: var(--spacing-md);
            margin-top: var(--spacing-md);
        }
        
        .progress-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 2px solid rgba(139, 69, 19, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .progress-dot.active {
            background: var(--accent-color);
            border-color: var(--accent-color);
            transform: scale(1.1);
        }
        
        .progress-dot.current::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .dot-number {
            font-weight: bold;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .progress-dot.active .dot-number {
            color: white;
        }
        
        /* Quiz Container Styles */
        .quiz-main {
            padding: var(--spacing-lg) 0;
        }
        
        .quiz-container {
            width: 100%;
            max-width: 550px; /* 閫備腑鐨勬渶澶у搴?*/
            margin: 0 auto;
            position: relative;
            padding: 12px; /* 鏇寸揣鍑戠殑padding */
            min-height: 260px;
            height: auto !important;
            max-height: 85vh;
            border-radius: 12px;
            box-sizing: border-box;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            scroll-margin-top: 100px;
        }

        .quiz-content {
            width: 100%;
            flex: 1 1 auto;
            min-height: 0;
            display: flex;
            flex-direction: column;
        }
        
        /* Loading State */
        .loading-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: var(--spacing-xl);
            text-align: center;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(139, 69, 19, 0.1);
            border-top: 4px solid var(--accent-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: var(--spacing-md);
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; }
        }
        
        /* Error State */
        .error-message {
            text-align: center;
            padding: var(--spacing-xl);
            color: var(--text-secondary);
        }
        
        .error-icon {
            font-size: 3rem;
            margin-bottom: var(--spacing-md);
        }
        
        /* Navigation Styles */
        .quiz-navigation {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 10px;
            gap: 10px;
        }

        /* Keep Next button always on the right */
        .quiz-back {
            margin-right: auto;
        }

        .quiz-next {
            margin-left: auto;
        }

        .quiz-back, .quiz-next {
            padding: 6px 12px;
            border: 2px solid var(--text-secondary);
            background: white;
            color: var(--text-secondary);
            border-radius: 25px;
            cursor: pointer;
            font-family: var(--font-body);
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .quiz-next {
            background: linear-gradient(145deg, var(--accent-color), #ff6b35);
            color: white;
            border-color: var(--accent-color);
        }
        
        .quiz-back:hover {
            background: var(--bg-secondary);
        }
        
        .quiz-next:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
        }
        
        .quiz-next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .quiz-next.final-button {
            background: linear-gradient(145deg, #27ae60, #2ecc71);
            border-color: #27ae60;
        }
        
        /* Question Styles */
        .question-section {
            text-align: center;
            margin: 10px 0; /* 鏇寸揣鍑戠殑棰樼洰鍖哄煙 */
            flex: 1 1 auto;
            min-height: 0;
            overflow-y: auto;
            padding-right: 4px;
        }

        .question-container {
            margin-bottom: 10px; /* 鍑忓皯棰樼洰涓庨€夐」闂磋窛 */
        }
        
        .question-header {
            text-align: center;
            margin-bottom: 12px; /* 鏇寸揣鍑戠殑闂磋窛 */
        }
        
        .question-icon {
            font-size: 1.6rem; /* 鏇村皬鐨勫浘鏍?*/
            margin-bottom: 4px;
            display: block;
        }

        .question-text {
            font-size: 1.4rem; /* 鏇村皬鐨勬爣棰?*/
            color: var(--text-secondary);
            margin-bottom: 4px;
            line-height: 1.2;
        }
        
        .question-description {
            color: var(--text-secondary);
            opacity: 0.8;
            font-size: 0.85rem; /* 鏇村皬鐨勬弿杩?*/
            margin: 0;
            line-height: 1.2;
        }
        
        /* Options Styles */
        .options-container {
            display: flex;
            flex-direction: column;
            gap: 6px; /* 鏇寸揣鍑戠殑閫夐」闂磋窛 */
            margin-bottom: 10px; /* 鍑忓皯搴曢儴闂磋窛 */
            width: 100%;
            max-width: none;
        }
        
        .quiz-option {
            background: linear-gradient(145deg, #ffffff, #f8f4e8);
            border: 2px dashed rgba(139, 69, 19, 0.2);
            border-radius: 8px;
            padding: 6px 10px; /* 鏇寸揣鍑戠殑鍐呰竟璺?*/
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 
                0 1px 3px rgba(0,0,0,0.06),
                inset 0 1px 0 rgba(255,255,255,0.8);
            font-family: 'Caveat', cursive;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            min-height: 44px; /* 鏇村皬鐨勬渶灏忛珮搴?*/
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .quiz-option:hover {
            border-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }
        
        .quiz-option.selected {
            border-color: var(--accent-color);
            background: linear-gradient(145deg, rgba(255, 127, 80, 0.05), rgba(255, 107, 53, 0.02));
        }
        
        .quiz-option.selected::before {
            content: '鉁?;
            position: absolute;
            top: 8px;
            right: 8px;
            background: var(--accent-color);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.7rem;
            z-index: 2;
        }
        
        .option-content {
            display: flex;
            align-items: center;
            gap: 6px; /* 鏇寸揣鍑戠殑鍏冪礌闂磋窛 */
            width: 100%;
            box-sizing: border-box;
            padding-right: 22px; /* 涓哄嬀閫夋爣璁扮暀鍑虹┖闂?*/
        }
        
        .option-selector {
            display: flex;
            align-items: center;
            gap: 4px; /* 鏇寸揣鍑戠殑闂磋窛 */
            flex-shrink: 0;
        }
        
        .option-radio {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(139, 69, 19, 0.3);
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .option-radio.checked {
            border-color: var(--accent-color);
        }
        
        .option-radio.checked .radio-inner {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
        }
        
        .option-number {
            font-weight: bold;
            color: var(--text-secondary);
            font-size: 1rem;
        }
        
        .option-details {
            display: flex;
            align-items: center;
            gap: 6px; /* 鏇寸揣鍑戠殑闂磋窛 */
            flex: 1;
            min-width: 0; /* 鍏佽鏂囧瓧鎹㈣ */
        }
        
        .option-icon {
            font-size: 1.1rem; /* 鏇村皬鐨勫浘鏍?*/
            flex-shrink: 0;
        }
        
        .option-text {
            flex: 1;
            min-width: 0; /* 鍏佽鏂囧瓧鎹㈣ */
        }
        
        .option-title {
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 0; /* 鏇寸揣鍑戠殑闂磋窛 */
            line-height: 1.1;
            font-size: 0.95rem; /* 鏇村皬鐨勬爣棰?*/
        }
        
        .option-description {
            font-size: 0.65rem; /* 鏇村皬鐨勬弿杩版枃瀛?*/
            color: var(--text-secondary);
            opacity: 0.8;
            line-height: 1.2;
        }
        
        .option-badge {
            position: absolute;
            top: 4px;
            right: 4px;
            background: linear-gradient(145deg, #27ae60, #2ecc71);
            color: white;
            padding: 1px 4px; /* 鏇寸揣鍑戠殑badge */
            border-radius: 6px;
            font-size: 0.5rem;
            font-weight: 600;
            box-shadow: 0 1px 2px rgba(39, 174, 96, 0.3);
            z-index: 1;
        }
        
        .option-badge.popular {
            background: linear-gradient(145deg, #3498db, #2980b9);
        }
        
        .option-badge.recommended {
            background: linear-gradient(145deg, #27ae60, #2ecc71);
        }
        
        /* Timer Styles */
        .quiz-timer {
            text-align: center;
            margin-top: 8px;
            color: var(--text-secondary);
            font-size: 0.8rem;
        }
        
        .timer-label {
            margin-right: var(--spacing-xs);
        }
        
        .timer-value {
            font-weight: 600;
            color: var(--accent-color);
        }
        
        /* Results Styles */
        .results-section {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(135deg, rgba(255, 127, 80, 0.05), rgba(255, 107, 53, 0.02));
            scroll-margin-top: 100px;
        }
        
        .results-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        
        .results-header h2 {
            font-size: 2.5rem;
            color: var(--text-secondary);
            margin-bottom: var(--spacing-md);
        }
        
        .results-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .results-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .recommendations-grid {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: var(--spacing-xl);
        }
        
        .recommendation-card {
            background: #ffffff;
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 
                0 2px 8px rgba(0,0,0,0.08),
                0 1px 3px rgba(0,0,0,0.02);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .recommendation-card:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 8px 25px rgba(0,0,0,0.12),
                0 2px 8px rgba(0,0,0,0.06);
            border-color: #D1D5DB;
        }
        
        .recommendation-card.best-match {
            border: 2px solid var(--accent-color);
            position: relative;
            box-shadow: 
                0 4px 12px rgba(37, 99, 235, 0.15),
                0 2px 6px rgba(0,0,0,0.06);
        }
        
        /* 鍘婚櫎澶嶆潅鐨勮楗拌竟妗?*/
        
        .best-match-badge {
            position: absolute;
            top: -10px;
            left: 20px;
            transform: none;
            background: var(--accent-color);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
            z-index: 10;
            font-family: var(--font-body); /* 浣跨敤鏍囧噯瀛椾綋 */
        }

        /* Horizontal recommendation layout */
        .recommendation-card-horizontal .rec-main {
            display: flex;
            gap: 16px;
            align-items: stretch;
        }

        .recommendation-card-horizontal .rec-left {
            flex: 1 1 auto;
            min-width: 0;
            text-align: left;
        }

        .recommendation-card-horizontal .rec-title-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
            margin-top: 6px;
        }

        .recommendation-card-horizontal .rec-title {
            margin: 0;
            font-size: 1.4rem;
            line-height: 1.2;
            color: #1F2937; /* 涓撲笟娣辩伆鑹?*/
            font-weight: 700;
            font-family: var(--font-body); /* 浣跨敤鏍囧噯鍟嗗姟瀛椾綋 */
            letter-spacing: -0.02em;
        }

        .recommendation-card-horizontal .match-pill {
            flex-shrink: 0;
            padding: 4px 8px;
            border-radius: 4px;
            background: #EFF6FF;
            border: 1px solid #DBEAFE;
            color: #1E40AF;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            font-family: var(--font-body);
        }

        .recommendation-card-horizontal .rec-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            margin: 8px 0 10px;
        }

        .recommendation-card-horizontal .rating-inline {
            font-size: 0.9rem;
            color: #6B7280;
            font-weight: 500;
            font-family: var(--font-body);
        }

        .recommendation-card-horizontal .planner-description {
            margin: 12px 0;
            color: #6B7280; /* 涓€х伆鑹?*/
            line-height: 1.5;
            font-weight: 400;
            font-size: 0.95rem;
            font-family: var(--font-body);
        }

        .recommendation-card-horizontal .price-tag {
            font-size: 0.95rem;
            color: #374151;
            font-weight: 600;
            font-family: var(--font-body);
        }

        .recommendation-card-horizontal .price-model {
            font-size: 0.85rem;
            opacity: 0.85;
            margin-left: 6px;
        }

        .recommendation-card-horizontal .rec-right {
            width: 240px;
            flex: 0 0 240px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
        }

        .recommendation-card-horizontal .rec-cta {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .recommendation-download {
            padding: 12px 14px;
            font-size: 1.05rem;
        }

        .recommendation-learnmore {
            padding: 10px 14px;
            font-size: 0.95rem;
        }

        .cta-button.disabled {
            pointer-events: none;
            opacity: 0.5;
        }

        .rec-breakdown {
            margin-top: 10px;
        }

        .rec-breakdown summary {
            cursor: pointer;
            color: var(--text-secondary);
            opacity: 0.9;
            margin-bottom: 8px;
        }

        /* Mobile: stack horizontal cards */
        @media (max-width: 768px) {
            .recommendation-card-horizontal .rec-main {
                flex-direction: column;
            }
            .recommendation-card-horizontal .rec-right {
                width: 100%;
                flex: 0 0 auto;
                align-items: stretch;
            }
            .recommendation-card-horizontal .rec-title-row {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        .planner-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: var(--spacing-md);
        }
        
        .planner-info h3 {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: var(--spacing-xs);
        }
        
        .planner-meta {
            display: flex;
            gap: var(--spacing-sm);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .match-score {
            text-align: center;
        }
        
        .score-circle {
            width: 56px;
            height: 56px;
            border-radius: 8px;
            background: var(--accent-color);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
            position: relative;
            font-family: var(--font-body);
        }
        
        .score-number {
            font-size: 1.1rem;
            font-weight: 700;
            font-family: var(--font-body);
        }
        
        .score-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            opacity: 0.9;
        }
        
        .results-actions {
            display: flex;
            justify-content: center;
            gap: var(--spacing-md);
            flex-wrap: wrap;
        }
        
        .cta-button.secondary {
            background: #FFFFFF;
            color: #374151;
            border: 1px solid #D1D5DB;
            font-weight: 500;
            font-family: var(--font-body);
        }
        
        .cta-button.secondary:hover {
            background: #F9FAFB;
            color: #1F2937;
            border-color: #9CA3AF;
        }
        
        .recommendation-cta {
            display: flex;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-md);
        }
        
        .recommendation-cta .cta-button {
            flex: 1;
            justify-content: center;
        }

        /* Enhanced Recommendation Card Styles */
        .planner-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: var(--spacing-md);
        }

        .planner-info h3 {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin-bottom: var(--spacing-xs);
        }

        .planner-meta {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
        }

        .category-tag, .platform-tag {
            background: #F3F4F6;
            color: #374151;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid #E5E7EB;
            font-family: var(--font-body);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .planner-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: var(--spacing-md);
            font-style: italic;
        }

        .recommendation-reasons {
            margin: var(--spacing-md) 0;
        }

        .recommendation-reasons h4 {
            color: var(--accent-color);
            margin-bottom: var(--spacing-sm);
        }

        .reasons-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .reasons-list li {
            background: #F8FAFC;
            border-left: 3px solid var(--accent-color);
            padding: 8px 12px;
            margin-bottom: 6px;
            border-radius: 0 4px 4px 0;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: #374151;
            font-weight: 500;
            line-height: 1.4;
        }

        .planner-features {
            margin: var(--spacing-md) 0;
        }

        .planner-features h4 {
            color: var(--accent-color);
            margin-bottom: var(--spacing-sm);
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-xs);
        }

        .feature-tag {
            background: #EFF6FF;
            color: #1E40AF;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid #DBEAFE;
            font-family: var(--font-body);
            text-transform: capitalize;
        }

        .planner-pricing {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: var(--spacing-md) 0;
            padding: var(--spacing-sm);
            background: linear-gradient(145deg, rgba(46, 204, 113, 0.05), rgba(46, 204, 113, 0.02));
            border-radius: 10px;
            border: 1px solid rgba(46, 204, 113, 0.1);
        }

        .price-tag {
            font-size: 1.2rem;
            color: #27ae60;
            font-weight: bold;
        }

        .price-model {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-left: var(--spacing-xs);
        }

        .rating-info {
            display: flex;
            gap: var(--spacing-sm);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .stars, .user-count {
            background: rgba(255, 193, 7, 0.1);
            padding: 4px 8px;
            border-radius: 10px;
            border: 1px solid rgba(255, 193, 7, 0.2);
        }

        /* Scoring Breakdown Styles */
        .scoring-breakdown {
            margin: var(--spacing-md) 0;
            padding: var(--spacing-md);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 244, 232, 0.8));
            border-radius: 10px;
            border: 1px dashed rgba(139, 69, 19, 0.1);
        }

        .scoring-item {
            margin-bottom: var(--spacing-sm);
        }

        .scoring-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--spacing-xs);
        }

        .scoring-label {
            color: var(--text-secondary);
            font-weight: 600;
        }

        .scoring-score {
            color: var(--accent-color);
            font-weight: bold;
        }

        .scoring-bar-container {
            background: rgba(139, 69, 19, 0.1);
            border-radius: 10px;
            height: 6px;
            overflow: hidden;
            margin-bottom: var(--spacing-xs);
        }

        .scoring-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-color), #ff6b35);
            border-radius: 10px;
            transition: width 1s ease-out;
        }

        .scoring-details {
            font-size: 0.8rem;
            color: var(--text-secondary);
            opacity: 0.8;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .quiz-header {
                padding: var(--spacing-md) 0;
            }
            
            .quiz-subtitle {
                font-size: 1rem;
            }
            
            .progress-header {
                flex-direction: column;
                gap: var(--spacing-sm);
            }
            
            .progress-dots {
                gap: var(--spacing-sm);
            }
            
            .progress-dot {
                width: 35px;
                height: 35px;
            }
            
            .quiz-container {
                padding: var(--spacing-md);
                min-height: 300px;
            }
            
            .option-content {
                gap: var(--spacing-sm);
            }
            
            .option-details {
                gap: var(--spacing-sm);
            }
            
            .recommendations-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
            
            .planner-header {
                flex-direction: column;
                gap: var(--spacing-sm);
            }
            
            .match-score {
                align-self: flex-end;
            }
        }
