
  :root {
    --bg-color: #fafaf9; /* 石頭色背景 stone-50 */
    --card-bg: #ffffff;
    --text-main: #292524; /* 深鐵灰色 stone-800 */
    --text-muted: #57534e; /* 淺灰色 stone-600 */
    --accent-color: rgba(180, 83, 9, 0.8); /* 琥珀色 amber-700 */
    --accent-light: rgba(180, 83, 9, 0.2);
    --border-color: #e7e5e4;
  }

  section {
    display: block;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }

  /* --- 2. 頁面主標題 --- */
  .page-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .page-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.05em;
  }

  /* --- 3. 節目分組區塊 (Sections) --- */
  .show-section {
    margin-bottom: 4rem !important;
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 0.08em;
    margin: 0;
  }

  .section-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, var(--accent-light), transparent);
  }

  /* --- 4. 影片網格 (更密集，容納更多影片) --- */
  .video-grid {
    display: grid;
    /* 使用 auto-fill 讓影片卡片自動適應，最小寬度 250px */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  /* --- 5. 影片卡片設計 --- */
  .video-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  }

  /* 16:9 比例的影片容器 (純 CSS 寫法) */
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #e5e5e5;
    border-bottom: 1px solid var(--border-color);
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* 卡片文字資訊 */
  .video-info {
    padding: 1rem;
  }

  .video-date {
    font-family: sans-serif; /* 日期使用無襯線體更清晰 */
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
  }

  .video-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-main);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.03em;
    /* 限制標題最多顯示兩行，多出的變省略號 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }