  /* 算命項目分類區塊  */
  .fortune-pro-card {
    background: #fffdf9;
    border: 1px solid #ebdccb;
    border-radius: 12px;
    padding: 16px 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(82, 4, 114, 0.03);
  }
  
  .fortune-pro-card img {
    transition: transform 0.3s ease;
    margin-bottom: 10px;
  }

  .fortune-pro-title {
    color: #520472 !important;
    font-size: 1.02rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    transition: color 0.25s ease !important;
    letter-spacing: 0.5px;
  }

  /* 滑鼠懸停動態效果 */
  .fortune-pro-card:hover {
    background: #ffffff;
    border-color: #520472;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(82, 4, 114, 0.12);
  }
  .fortune-pro-card:hover img {
    transform: scale(1.15);
  }
  .fortune-pro-card:hover .fortune-pro-title {
    color: #a00000 !important;
  }

  /* 導覽按鈕矩陣 */
  .btn-matrix-luxury {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .btn-luxury {
    background: linear-gradient(135deg, #ffffff 0%, #f8f0fc 100%) !important;
    border: 1.5px solid #520472 !important;
    color: #520472 !important;
    font-weight: 800 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 10px rgba(82, 4, 114, 0.08) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
  }
  .btn-luxury:hover {
    background: linear-gradient(135deg, #520472 0%, #3a0351 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(82, 4, 114, 0.25) !important;
  }
  
  /* 行動鈕高亮版 */
  .btn-luxury-primary {
    background: linear-gradient(135deg, #a00000 0%, #7b0000 100%) !important;
    border: 1.5px solid #ffd700 !important;
    color: #ffd700 !important;
  }
  .btn-luxury-primary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%) !important;
    color: #7b0000 !important;
    border-color: #7b0000 !important;
  }

  @media (max-width: 575px) {
    .btn-luxury { width: 100% !important; justify-content: center !important; }
  }
    /*  算命問題與文章分類列表區塊  */
  .eq-height-row {
    display: flex;
    flex-wrap: wrap;
  }

  /* 左側分類卡片：設定 h-100 自動填滿高度 */
  .fortune-category-side-card {
    background: #ffffff;
    border: 1px solid #ebdccb;
    border-left: 5px solid #520472;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 4px 12px rgba(82, 4, 114, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .fortune-category-title {
    color: #520472 !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    margin-top: 10px;
    margin-bottom: 0;
  }

  /* 右側文章容器：強制高度 100% 且垂直居中居勻 */
  .fortune-article-list-container {
    background: #fffdf9;
    border: 1px solid #ebdccb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(139, 116, 102, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 文章少時自動垂直置中 */
    overflow: hidden;
  }

  /* 每行文章連結 */
  .fortune-article-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px dashed #ebdccb;
    transition: all 0.2s ease;
    text-decoration: none !important;
    flex-grow: 1; /* 若需均分空間可發揮作用 */
  }
  
  .fortune-article-row:last-child {
    border-bottom: none;
  }
  
  .fortune-article-row:hover {
    background: #ffffff;
  }

  /* 文章標題字體與圖示 */
  .fortune-article-subject {
    color: #2c2c2c !important;
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    transition: color 0.2s ease;
  }
  
  .fortune-article-row:hover .fortune-article-subject {
    color: #520472 !important;
  }

  /* 文章點閱數標籤 */
  .fortune-hits-badge {
    color: #888888;
    font-size: 0.88rem;
    background: #f5f0eb;
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
    margin-left: 10px;
  }