:root {
    --vermilion: #C62828;
    --vermilion-light: #EF5350;
    --vermilion-dark: #B71C1C;
    --ink: #333333;
    --stone: #666666;
    --cloud: #F5F5F5;
    --paper: #FFFFFF;
    --border: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.08);
    --positive: #2E7D32;
    --positive-light: #E8F5E9;
    --negative: #757575;
    --negative-light: #F5F5F5;
    --warning-bg: #FFF3E0;
    --warning-border: #FFCC80;
    --gold: #FFD700;
    --gold-light: #FFF9C4;
    --blue-light: #E3F2FD;
    --purple-light: #F3E5F5;
}

/* === 基礎樣式 === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
}

/* === 英雄區美化 === */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.page-header {
    flex: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

/* 簡化羅盤設計 */
.hero-visual {
    flex-shrink: 0;
}

.compass-simple {
    width: 200px;
    height: 200px;
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.compass-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.hero-section [class^="compass-"] {
    position: absolute;
    font-weight: 700;
    color: #4a5568;
}

.compass-n { top: 15px; left: 50%; transform: translateX(-50%); }
.compass-s { bottom: 15px; left: 50%; transform: translateX(-50%); }
.compass-e { right: 15px; top: 50%; transform: translateY(-50%); }
.compass-w { left: 15px; top: 50%; transform: translateY(-50%); }

/* === 核心理念美化 === */
.core-belief-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.belief-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink);
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 2px;
}

/* 對比網格美化 */
.contrast-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--paper);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px #00000014,
        0 2px 0 #00000005;
    border: 1px solid var(--border);
    position: relative;
 }
/* 對比欄美化 */
.contrast-column {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contrast-column:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.positive-column {
    background: linear-gradient(135deg, var(--positive-light) 0%, #FFFFFF 100%);
}

.positive-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.15);
}

.negative-column {
    background: linear-gradient(135deg, var(--negative-light) 0%, #FFFFFF 100%);
}

.negative-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(244, 67, 54, 0.15);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}

.column-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.positive-column .column-header {
    border-color: #4caf50;
}

.negative-column .column-header {
    border-color: #f44336;
}

.column-icon {
    font-size: 2rem;
 }

.column-header h3 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--ink);
    font-weight: 700;
}

/* 對比列表美化 */
.contrast-list {
    list-style: none;
}

.contrast-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contrast-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 12px;
}

.positive-column .contrast-list li:hover::before {
    opacity: 0.8;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.1);
}

.negative-column .contrast-list li:hover::before {
    opacity: 0.8;
    box-shadow: 0 4px 16px rgba(117, 117, 117, 0.1);
}

.positive-column .contrast-list li:hover {
    background: rgba(76, 175, 80, 0.05);
    transform: translateX(5px);
}

.negative-column .contrast-list li:hover {
    background: rgba(244, 67, 54, 0.05);
    transform: translateX(5px);
}

.list-bullet {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contrast-list li:hover .list-bullet {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.15),
        inset 0 1px 3px rgba(255,255,255,0.9);
}

.positive-column .list-bullet {
    color: #4caf50;
}

.negative-column .list-bullet {
    color: #f44336;
}

.list-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.list-content h4 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.list-content p {
    color: var(--stone);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* 對比分隔線美化 */
.contrast-divider {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #edf2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    min-width: 120px;
    min-height: 500px;
}

.divider-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0.1) 30%, 
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.1) 70%,
        transparent 100%);
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.divider-label {
    position: relative;
    z-index: 11;
    margin: 20px 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--paper), #fafafa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--vermilion);
    border: 3px solid var(--vermilion);
    box-shadow: 
        0 6px 20px rgba(198, 40, 40, 0.25),
        inset 0 2px 4px rgba(255,255,255,0.8);
    animation: gentlePulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.divider-label:hover {
    transform: scale(1.15) rotate(180deg);
    box-shadow: 
        0 10px 30px rgba(198, 40, 40, 0.4),
        inset 0 3px 6px rgba(255,255,255,0.9);
}

@keyframes gentlePulse {
    0%, 100% { 
        box-shadow: 
            0 6px 20px #c6282840,
            inset 0 2px 4px #ffffffcc;
    }
    50% { 
        box-shadow: 
            0 8px 25px #c6282859,
            inset 0 2px 6px #ffffffe6;
    }
}

/* 垂直排列貼圖樣式 */
.sticker-vertical-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.sticker-top,
.sticker-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    position: relative;
}

/* 貼圖圖片樣式 */
.sticker-image {
    width: 160px;
    height: 160px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.sticker-vertical-line .divider-sticker {
    width: 150px !important;
    height: 150px !important;
    opacity: 0.95 !important;
    animation: floatVertical 4s ease-in-out infinite;
}


/* 貼圖互動效果 */
.sticker-image:hover,
.sticker-vertical-line .divider-sticker:hover {
    transform: scale(1.2) rotate(15deg) !important;
    opacity: 1 !important;
    filter: 
        drop-shadow(0 8px 16px rgba(0,0,0,0.4))
    z-index: 12;
}

@keyframes floatVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 燈泡圖片樣式 */
.lightbulb-image {
    width: 180px;
    height: 150px;
    filter: 
        drop-shadow(0 0 25px rgba(255, 215, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}
/* 洞察盒子美化 */
.insight-box {
    background: linear-gradient(135deg, #FFFDE7 0%, #FFF9C4 100%);
    border: 2px solid #FFEB3B;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.insight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffeb3b1a 0%, transparent 70%);
}

.insight-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255, 235, 59, 0.1) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 235, 59, 0.1) 50%, transparent 51%);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.insight-visual {
    flex-shrink: 0;
}

.insight-content {
    flex: 1;
}

.insight-text {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: #5D4037;
    font-family: iansui;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.insight-text .highlight {
    background: linear-gradient(120deg, #FFF176 0%, #FFF176 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    background-position: 0 88%;
    padding: 0 0.2rem;
}

.insight-note {
    color: #8D6E63;
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: iansui;
    line-height: 1.6;
    padding-left: 1.5rem;
}

/* === 系統區美化 === */
.system-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--cloud) 0%, #f0f4f8 100%);
    position: relative;
}

.system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0,0,0,0.05) 25%, 
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.05) 75%,
        transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: var(--stone);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0.8rem auto 0;
    line-height: 1.6;
}

.system-preview {
    max-width: 1200px;
    margin: 0 auto 5rem;
}

/* 手繪時間軸美化 */
.hand-drawn-timeline {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--paper) 0%, #fafafa 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.08),
        0 4px 0 rgba(0,0,0,0.02);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hand-drawn-timeline:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 16px 50px rgba(0,0,0,0.12),
        0 5px 0 rgba(0,0,0,0.03);
}

.hand-drawn-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(198, 40, 40, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(46, 125, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-title {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-container {
    position: relative;
    margin-bottom: 3rem;
}

.hand-drawn-line {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 25px;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.drawn-line {
    width: 100%;
    height: 100%;
    color: var(--vermilion);
    opacity: 0.7;
    stroke-width: 3;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 1rem;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1.2rem;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-8px);
}

.step-marker {
    position: relative;
    margin-bottom: 2rem;
}

.marker-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vermilion), var(--vermilion-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 6px 20px rgba(198, 40, 40, 0.3),
        0 0 0 4px rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.timeline-step:hover .marker-number {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 
        0 8px 25px rgba(198, 40, 40, 0.4),
        0 0 0 4px rgba(255,255,255,0.9);
}

.hand-drawn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px dashed var(--vermilion);
    border-radius: 50%;
    opacity: 0.3;
    animation: gentleRotate 20s linear infinite;
}

@keyframes gentleRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.step-content p {
    color: var(--stone);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.timeline-note {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--positive-light), #F1F8E9);
    border-radius: 16px;
    border: 1px solid rgba(46, 125, 50, 0.2);
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.timeline-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(46, 125, 50, 0.05) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(46, 125, 50, 0.05) 50%, transparent 51%);
    background-size: 15px 15px;
    opacity: 0.3;
    pointer-events: none;
}

.timeline-note p {
    color: var(--positive);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* === 重要提醒美化 === */
.reminder-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #FFF9C4 0%, #FFECB3 50%, #FFE0B2 100%); 
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.reminder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, #ff98001a 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, #ff57221a 0%, transparent 50%);
    pointer-events: none;
}

.reminder-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hand-drawn-border {
    position: relative;
    padding: 1rem 2rem; /* 減少內距 */
    min-height: auto;
    display: flex;
    margin-bottom: 2rem;
    flex-direction: column;
    background: #ffffffd9; /* 白色半透明背景 */
    backdrop-filter: blur(4px); /* 毛玻璃效果 */
    align-items: center;
}
.reminder-icon-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}
.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 1;
 }

.reminder-content {
    position: relative;
    z-index: 2;
}

.reminder-header {
    display: flex;
    align-items: center;
    gap: 1.2rem; /* 減少間距 */
    margin-bottom: 2rem; /* 減少間距 */
    padding-bottom: 1rem;
    border-bottom: 2px dashed #e651004d;
    position: relative;
}

.reminder-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg,#FF9800,#FF5722);
    border-radius: 1px;
}

.reminder-image-icon {
    width: 120px;
    height: 100px;
}

.reminder-header h3 {
    font-size: 1.8rem;
    color: #E65100;
    margin: 0;
    font-weight: 800;
    text-shadow: 0 1px 4px #0000001a;
}

.reminder-text {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.reminder-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-radius: 3px 0 0 3px;
}

.reminder-text p {
    font-size: 1.3rem;
    font-family: iansui;
    color: #5D4037;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
}

.reminder-text p:last-child {
    margin-bottom: 0;
}

.reminder-emphasis {
    font-weight: 800;
    color: #D84315;
    font-size: 1.4rem;
    padding-left: 1.5rem;
    background: linear-gradient(to right, transparent, #ff98001a);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.reminder-emphasis::after {
    content: '⚠️';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.reminder-action {
    text-align: center;
    padding: 1.8rem;
    background: rgba(255, 248, 225, 0.7); /* 半透明白色 */
    border-radius: 16px;
    border: 2px dashed #FF9800; /* 保持原來的虛線邊框 */
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.reminder-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 152, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 87, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.reminder-action p {
    color: #5D4037; /* 深棕色文字 */
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: iansui;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.hand-drawn-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: #D32F2F; /* 單一紅色，移除漸層 */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 
        0 4px 12px rgba(211, 47, 47, 0.25), /* 較淺的陰影 */
        0 2px 0 #B71C1C; /* 深紅色底邊 */
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2); /* 白色邊框增加質感 */
}

.hand-drawn-button:hover {
    transform: translateY(-2px);
    background: #E53935; /* 稍亮的紅色 */
    box-shadow: 
        0 6px 16px rgba(211, 47, 47, 0.35),
        0 3px 0 #B71C1C;
    gap: 1rem;
}

.hand-drawn-button:active {
    transform: translateY(1px);
    background: #C62828; /* 稍深的紅色 */
    box-shadow: 
        0 2px 6px rgba(211, 47, 47, 0.2),
        0 1px 0 #B71C1C;
} 

.button-icon {
    font-size: 1.3rem;
}

.button-arrow {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hand-drawn-button:hover .button-arrow {
    transform: translateX(5px) scale(1.1);
}

/* === 動畫增強 === */
@keyframes gentleShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* 滾動動畫優化 */
.contrast-column, .insight-box, .hand-drawn-timeline, .hand-drawn-border {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 指南針旋轉動畫增強 */
@keyframes gentleRotateCompass {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
}

.compass-simple:hover {
    animation: gentleRotateCompass 3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* === 響應式設計 === */
@media (max-width: 768px) {
    /* 通用響應式 */
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* 英雄區 */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .compass-simple {
        width: 150px;
        height: 150px;
    }
    
    /* 對比網格 */
    .contrast-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .contrast-divider {
        padding: 1.5rem;
        order: -1;
        min-width: auto;
        min-height: auto;
    }
    
    .divider-line {
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(0,0,0,0.1) 30%, 
            rgba(0,0,0,0.2) 50%,
            rgba(0,0,0,0.1) 70%,
            transparent 100%);
    }
    
    .sticker-vertical-line {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        margin-top: 2rem;
        height: auto;
    }
    
    .sticker-vertical-line .divider-sticker {
        width: 80px !important;
        height: 80px !important;
    }
    
    .divider-label {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin: 0 10px;
    }
    
    /* 對比欄 */
    .contrast-column {
        padding: 2rem;
    }
    
    .column-header {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    /* 洞察盒子 */
    .insight-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .insight-text {
        font-size: 1.6rem;
    }
    
    /* 時間軸 */
    .timeline-steps {
        flex-direction: column;
        gap: 4rem;
    }
    
    .hand-drawn-line {
        width: 3px;
        height: 80%;
        left: 50px;
        top: 0;
        bottom: 0;
        transform: none;
    }
    
    .drawn-line {
        transform: none;
    }
    
    .timeline-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
    }
    
    .step-marker {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    /* 重要提醒 */
    .hand-drawn-border {
        padding: 2rem 1.5rem;
    }
    
    .reminder-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .reminder-header::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .reminder-header h3 {
        font-size: 1.6rem;
    }

    .reminder-emphasis {
        font-size: 1.2rem;
        padding: 0.5rem 0.8rem;
    }
    
    .reminder-action {
        padding: 1.5rem;
    }
    
    .hand-drawn-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
        width: auto;
        display: inline-flex;
    }
}

    .reminder-text {
        padding: 1.2rem;
    }
    
    .reminder-text p {
        font-size: 1.1rem;
    }

    /* 按鈕 */
    .hand-drawn-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    /* 圖片大小調整 */
    .sticker-image {
        width: 100px;
        height: 100px;
    }
    
    .lightbulb-image {
        width: 120px;
        height: 100px;
    }
    
@media (max-width: 480px) {
    /* 通用響應式 */
    .page-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* 貼圖排列 */
    .sticker-vertical-line {
        gap: 15px;
    }
    
    .sticker-vertical-line .divider-sticker {
        width: 60px !important;
        height: 60px !important;
    }
    
    .divider-label {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        margin: 0 5px;
    }
    
    /* 洞察盒子 */
    .insight-text {
        font-size: 1.4rem;
    }
    
    /* 重要提醒 */
    
    .hand-drawn-border {
        padding: 1.5rem 1rem;
    }
    
    .reminder-header h3 {
        font-size: 1.4rem;
    }
    
    .reminder-icon {
        font-size: 2rem;
    }
    
    .reminder-text p {
        font-size: 1rem;
    }
    
    .reminder-emphasis {
        font-size: 1.1rem;
    }
    
    .hand-drawn-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .reminder-action {
        padding: 1.2rem;
    }
    
    /* 圖片大小調整 */
    .sticker-image {
        width: 80px;
        height: 80px;
    }
    
    .lightbulb-image {
        width: 100px;
        height: 80px;
    }
}