k/* 🚀 Gobby Law 統一視覺系統 - Woodstock x Monster 版 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700;900&display=swap');

:root {
    --bg-main: #f0f4f8;
    --woodstock-orange: #fb923c;
    --monster-blue: #22d3ee;
    --monster-blue-dark: #0891b2;
    --slate-dark: #1e293b;
}

body {
    background-color: var(--bg-main);
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--slate-dark);
}

/* 🍭 鵝卵石圓角風格卡片 */
.pebble-card {
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
}

.pebble-card:hover {
    transform: scale(1.02) rotate(0.5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* 🚀 型格彈出感按鈕 */
.btn-pop {
    transition: all 0.2s ease;
    box-shadow: 0 8px 0px var(--monster-blue-dark);
    border-radius: 20px;
}

.btn-pop:active {
    transform: translateY(4px);
    box-shadow: 0 4px 0px var(--monster-blue-dark);
}

/* 📖 文章內容排版優化 */
.content-area p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #334155;
}

.content-area h2, .content-area h3 {
    font-weight: 900;
    color: var(--slate-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
