/* Voiss AI Coach - 自定义样式 */

/* 產品簡介頁面樣式 */
.full-page {
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

/* 瀏覽器模擬樣式 */
.browser-mockup {
    border-radius: 6px;
    background: #2a2a3a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.browser-header {
    background: #383850;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-controls {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control.red {
    background: #ff5f57;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #28ca41;
}

.browser-address-bar {
    flex: 1;
    background: #262638;
    border-radius: 4px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.browser-menu {
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.browser-content {
    background: #1e1e2a;
    padding: 20px;
    overflow: auto;
    max-height: 700px;
}

/* 界面解釋樣式 */
.interface-explanation {
    margin-top: 20px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 4px solid #06D6A0;
}

.interface-explanation p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* 回到首頁按鈕 */
.back-to-home {
    display: inline-flex;
    align-items: center;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 500;
    margin-top: 80px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.back-to-home:hover {
    color: var(--gradient-end);
}

.back-to-home i {
    margin-right: 8px;
}

/* 主要內容 */
.main-content {
    margin-top: 20px;
}

/* 標籤頁樣式 */
.scenario-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.scenario-tab {
    padding: 12px 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.scenario-tab.active {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: #121212;
    font-weight: 600;
}

/* 功能卡片 */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(51, 51, 51, 0.6), rgba(30, 30, 30, 0.6));
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.4rem;
    background: linear-gradient(145deg, rgba(255, 209, 102, 0.1), rgba(239, 131, 84, 0.1));
    border-radius: 50%;
    line-height: 1;
    border: 2px solid rgba(255, 209, 102, 0.3);
    color: var(--yellow);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--light-gray);
}

.feature-description {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 小按鈕 */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* 聊天模擬器 */
.chat-simulator {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chat-sidebar {
    background: rgba(28, 28, 38, 0.8);
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.scenario-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--yellow);
}

.scenario-list {
    list-style: none;
}

.scenario-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(51, 51, 51, 0.4);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scenario-item.active {
    background: rgba(255, 209, 102, 0.1);
    border-left: 3px solid var(--yellow);
}

.chat-main {
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-title {
    font-weight: 600;
    color: var(--light-gray);
}

.chat-controls {
    display: flex;
    gap: 10px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    padding: 15px;
    border-radius: 8px;
    max-width: 80%;
}

.message.client {
    align-self: flex-start;
    background: rgba(51, 51, 51, 0.6);
    border-left: 3px solid var(--blue);
}

.message.user {
    align-self: flex-end;
    background: rgba(255, 209, 102, 0.1);
    border-right: 3px solid var(--yellow);
}

.chat-input {
    display: flex;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input input {
    flex: 1;
    background: rgba(28, 28, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 6px;
    color: var(--light-gray);
    outline: none;
}

.send-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border: none;
    border-radius: 50%;
    margin-left: 10px;
    color: #121212;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 131, 84, 0.3);
}

/* 分析卡片 */
.analytics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.analytics-card {
    background: linear-gradient(145deg, rgba(51, 51, 51, 0.6), rgba(30, 30, 30, 0.6));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(28, 28, 38, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: var(--yellow);
}

.card-actions {
    display: flex;
    gap: 10px;
}

/* 標籤頁 */
.content-tab {
    display: none;
}

.content-tab.active {
    display: block;
}

/* 維度分析 */
.score-dashboard {
    padding: 20px;
}

.dimension-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dimension-name {
    width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-icon {
    font-size: 1.1rem;
}

.status-high {
    color: var(--accent);
}

.status-medium {
    color: var(--yellow);
}

.status-low {
    color: #EF476F;
}

.dimension-score {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: rgba(51, 51, 51, 0.4);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
}

.score-fill.high {
    background: var(--accent);
}

.score-fill.medium {
    background: var(--yellow);
}

.score-fill.low {
    background: #EF476F;
}

.dimension-tag {
    width: 220px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 黃金句 */
.golden-phrases {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phrase-item {
    background: rgba(51, 51, 51, 0.4);
    border-radius: 8px;
    padding: 15px;
}

.phrase-text {
    margin-bottom: 10px;
    font-style: italic;
    color: var(--light-gray);
    line-height: 1.5;
}

.phrase-tags {
    display: flex;
    gap: 8px;
}

.phrase-tag {
    background: rgba(255, 209, 102, 0.1);
    color: var(--yellow);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 30px;
}

/* 覆蓋率圖表 */
.coverage-chart {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.chart-container {
    width: 180px;
    height: 180px;
    position: relative;
}

.chart-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0% 60%, rgba(51, 51, 51, 0.3) 60% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-inner {
    width: 75%;
    height: 75%;
    background: #1e1e2a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-percentage {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
}

.chart-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.coverage-details {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coverage-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coverage-topic {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topic-icon {
    color: var(--accent);
}

.topic-icon i.fa-times-circle {
    color: #EF476F;
}

.topic-ratio {
    font-weight: 600;
    color: var(--light-gray);
}

.radar-chart {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 預測顯示 */
.prediction-display {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.probability-circle-container {
    width: 180px;
    height: 180px;
    position: relative;
    flex-shrink: 0;
}

.probability-circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0% 75%, rgba(51, 51, 51, 0.3) 75% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.probability-circle-inner {
    width: 75%;
    height: 75%;
    background: #1e1e2a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.probability-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
}

.probability-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.prediction-text {
    flex: 1;
}

.prediction-text h3 {
    margin-bottom: 15px;
    color: var(--light-gray);
}

.prediction-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.prediction-text .highlight-percentage {
    color: var(--orange);
    font-weight: 600;
}

.prediction-metrics {
    display: flex;
    gap: 30px;
}

.metric-item {
    background: rgba(51, 51, 51, 0.4);
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.metric-item.amount {
    border-left: 3px solid var(--yellow);
}

.metric-item.period {
    border-left: 3px solid var(--accent);
}

.metric-label {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 600;
}

.metric-value.amount {
    color: var(--yellow);
}

.metric-value.period {
    color: var(--accent);
}

/* 黄金句展示墙 */
.highlight-preview {
    background: #20202e;
    border-radius: 6px;
    overflow: hidden;
}

.highlight-header {
    background: #2d2d40;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.highlight-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.highlight-item {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.quote-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--light-gray);
    font-style: italic;
}

.quote-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.quote-tag {
    background: rgba(255, 209, 102, 0.1);
    color: var(--yellow);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 30px;
}

.expand-btn {
    background: rgba(51, 51, 51, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.expand-btn:hover {
    background: rgba(255, 209, 102, 0.1);
}

.highlight-metadata {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: rgba(28, 28, 38, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.metadata-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--yellow);
}

.conversation-snippet {
    background: rgba(51, 51, 51, 0.4);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
}

.message.customer {
    background: rgba(28, 28, 38, 0.8);
    border-left: 3px solid var(--blue);
}

.message.agent {
    background: rgba(255, 209, 102, 0.05);
    border-left: 3px solid var(--yellow);
}

/* 对话预览 */
.conversation-preview {
    background: #20202e;
    border-radius: 6px;
    overflow: hidden;
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #2d2d40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-badge {
    background: rgba(255, 209, 102, 0.1);
    color: var(--yellow);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 30px;
}

.overall-score {
    font-weight: 600;
}

.conversation-body {
    padding: 20px;
}

.message-pair {
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.message-pair:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.message .speaker {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--yellow);
}

.message .text {
    line-height: 1.6;
}

.message-feedback {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.message-feedback.positive {
    background: rgba(6, 214, 160, 0.05);
    border-left: 3px solid var(--accent);
}

.message-feedback.negative {
    background: rgba(239, 71, 111, 0.05);
    border-left: 3px solid #EF476F;
}

.feedback-icon {
    font-weight: 700;
}

.message-feedback.positive .feedback-icon {
    color: var(--accent);
}

.message-feedback.negative .feedback-icon {
    color: #EF476F;
}

/* 对话统计 */
.conversation-stats {
    padding: 20px;
    background: rgba(28, 28, 38, 0.5);
    border-radius: 8px;
}

.conversation-stats h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--yellow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stat-box {
    background: rgba(51, 51, 51, 0.4);
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.stat-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-bar {
    height: 6px;
    background: rgba(28, 28, 38, 0.8);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

/* 响应式调整 */
@media (max-width: 900px) {
    .chat-simulator {
        grid-template-columns: 1fr;
    }
    
    .prediction-display {
        flex-direction: column;
        align-items: center;
    }
    
    .analytics-container {
        grid-template-columns: 1fr;
    }
    
    .factor-analysis {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-metadata {
        grid-template-columns: 1fr;
    }
    
    .score-dashboard .dimension-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dimension-name, .dimension-score, .dimension-tag {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .scenario-tabs {
        flex-direction: column;
    }
    
    .scenario-tab {
        width: 100%;
        text-align: center;
    }
    
    .dimension-row {
        padding: 15px 0;
    }
    
    .chat-messages {
        height: 300px;
    }
}

/* GROW模型分析卡片樣式 */
:root {
  --black: #121212;
  --dark-gray: #1e1e1e;
  --mid-gray: #333333;
  --light-gray: #f5f5f5;
  --primary: #FFD166;
  --secondary: #06D6A0;
  --hot: #FF5A5A;
  --warm: #FF9F43;
  --mild: #FFCD56;
  --blue: #4361EE;
  --card-bg: rgba(35, 35, 35, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --section-bg: rgba(30, 30, 30, 0.4);
}

/* GROW模型分析卡片容器 */
.grow-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.grow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 209, 102, 0.15);
}

.grow-header {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--border);
  background-color: rgba(25, 25, 25, 0.5);
}

.grow-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1rem;
  background-color: var(--primary);
  color: var(--black);
  flex-shrink: 0;
}

.grow-title {
  font-weight: 600;
  font-size: 1.1rem;
  flex: 1;
}

.grow-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.coach-quote {
  background-color: rgba(67, 97, 238, 0.1);
  border: 1px solid rgba(67, 97, 238, 0.15);
  border-radius: 10px;
  padding: 15px;
  position: relative;
}

.coach-quote::before {
  content: '\201C';
  position: absolute;
  top: -5px;
  left: 10px;
  font-size: 30px;
  color: var(--blue);
}

.analysis-box {
  background-color: var(--section-bg);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid var(--border);
}

.analysis-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.analysis-title i {
  color: var(--primary);
}

.analysis-list {
  list-style: none;
  padding-left: 5px;
}

.analysis-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.analysis-list i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.temp-meter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.temp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.temp-icon.hot {
  background-color: rgba(255, 90, 90, 0.15);
  color: var(--hot);
  border: 1px solid rgba(255, 90, 90, 0.2);
}

.temp-icon.warm {
  background-color: rgba(255, 159, 67, 0.15);
  color: var(--warm);
  border: 1px solid rgba(255, 159, 67, 0.2);
}

.temp-icon.mild {
  background-color: rgba(255, 205, 86, 0.15);
  color: var(--mild);
  border: 1px solid rgba(255, 205, 86, 0.2);
}

.temp-info {
  flex: 1;
}

.temp-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.temp-bar {
  height: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.temp-fill.hot {
  height: 100%;
  width: 90%;
  background-color: var(--hot);
  border-radius: 3px;
}

.temp-fill.warm {
  height: 100%;
  width: 70%;
  background-color: var(--warm);
  border-radius: 3px;
}

.temp-fill.mild {
  height: 100%;
  width: 50%;
  background-color: var(--mild);
  border-radius: 3px;
}

.temp-desc {
  font-size: 0.85rem;
  opacity: 0.85;
}

.keyword-box {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.keyword-label {
  color: var(--primary);
  font-weight: 600;
  min-width: 70px;
  flex-shrink: 0;
}

/* 綜合分析區塊 */
.analysis-summary {
  margin-top: 30px; 
  background: var(--card-bg); 
  border-radius: 12px; 
  padding: 25px; 
  border: 1px solid var(--border);
}

.summary-header {
  margin-bottom: 20px; 
  color: var(--primary); 
  display: flex; 
  align-items: center;
}

.summary-icon {
  margin-right: 10px; 
  background-color: rgba(255, 209, 102, 0.15); 
  width: 36px; 
  height: 36px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  border-radius: 50%;
}

.summary-content {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px;
}

@media (max-width: 768px) {
  .summary-content {
    grid-template-columns: 1fr;
  }
}

.summary-card {
  padding: 20px;
  border-radius: 10px;
}

.summary-card.performance {
  background: linear-gradient(145deg, rgba(6, 214, 160, 0.1), rgba(6, 214, 160, 0.05));
  border: 1px solid rgba(6, 214, 160, 0.15);
}

.summary-card.improvement {
  background: linear-gradient(145deg, rgba(255, 159, 67, 0.1), rgba(255, 159, 67, 0.05));
  border: 1px solid rgba(255, 159, 67, 0.15);
}

.summary-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.summary-card-icon {
  background-color: var(--secondary);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.summary-card-icon.improvement {
  background-color: var(--warm);
}

.summary-card-icon i {
  color: var(--black);
}

.summary-card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.summary-card.performance .summary-card-title {
  color: var(--secondary);
}

.summary-card.improvement .summary-card-title {
  color: var(--warm);
}

.summary-list {
  list-style: none;
  padding-left: 5px;
}

.summary-item {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.summary-item-score {
  min-width: 30px;
  text-align: center;
}

.summary-item-score.performance {
  font-weight: 700;
  color: var(--secondary);
}

.summary-item-score.improvement {
  font-weight: 700;
  color: var(--warm);
}

.summary-item-text {
  flex: 1;
}

.summary-item-text strong {
  font-weight: 600;
} 