/* 清明上河豚 Blox Fruits 果實攻略共用樣式（Mammoth／T-Rex） */
/* === 頁面專屬樣式 (局部隔離) === */
    /* 所有樣式皆限制在 .site-main 內部 */
    
    .site-main {
      --primary-color: #2c3e50; /* 暗夜黑藍 */
      --accent-color: #f1c40f;  /* 踢擊金 */
      --text-dark: #2d3436;
      --bg-card: #ffffff;
    }

    /* 上方快速導覽列 */
    .site-main .guide-subnav {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      padding: 15px 10px;
      background: #fff;
      border-bottom: 1px solid #eee;
      margin-bottom: 20px;
      align-items: center;
      gap: 10px;
    }
    .site-main .guide-subnav-label {
      font-weight: bold;
      color: #555;
    }
    .site-main .guide-subnav a {
      display: inline-block;
      padding: 6px 14px;
      background: #f1f3f5;
      color: #333;
      border-radius: 20px;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.2s ease;
    }
    .site-main .guide-subnav a:hover, 
    .site-main .guide-subnav a.active {
      background: var(--primary-color);
      color: #fff;
      box-shadow: 0 2px 4px rgba(44, 62, 80, 0.4);
    }

    /* 內容卡片樣式 */
    .site-main .guide-detail-card {
      background: var(--bg-card);
      border-radius: 12px;
      padding: 30px 25px;
      margin-bottom: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
      border: 1px solid #e9ecef;
    }

    /* 標題帶有 Emoji */
    .site-main .guide-detail-card h2 {
      display: flex;
      align-items: center;
      margin-top: 0;
      color: var(--text-dark);
      border-bottom: 3px solid #f0f0f0; 
      padding-bottom: 15px;
      margin-bottom: 20px;
      font-size: 1.5rem;
    }
    .site-main .h2-emoji {
      margin-right: 12px;
      font-size: 1.8rem;
    }

    /* 列表優化 */
    .site-main ul, .site-main ol {
      padding-left: 20px;
      line-height: 1.8;
      color: #444;
    }
    .site-main ul li, .site-main ol li {
      margin-bottom: 8px;
    }

    /* 強調文字框 */
    .site-main .highlight-box {
      background: #fdfcf5; /* 淺金背景 */
      border-left: 4px solid var(--accent-color);
      padding: 15px;
      border-radius: 6px;
      margin: 15px 0;
      color: #333;
      font-weight: 500;
      line-height: 1.6;
    }
    .site-main .highlight-green {
      background: #e8f5e9;
      border-left: 4px solid #2e7d32;
      color: #1b5e20;
    }

    /* 果實 Hero 區塊 (圖+文) */
    .site-main .fs-hero {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
    }
    .site-main .fs-hero-icon {
      width: 80px;
      height: 80px;
      border-radius: 15px;
      object-fit: cover;
      border: 2px solid #eee;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      background: #fdfdfd;
    }
    .site-main .fs-hero-text h1 {
      margin: 0 0 5px 0;
      font-size: 1.8rem;
      color: var(--text-dark);
    }
    .site-main .fs-hero-sub {
      color: #666;
      font-size: 0.95rem;
    }
    .site-main .tag {
      display: inline-block;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
      margin-right: 5px;
      font-weight: normal;
    }
    .site-main .tag-beast { background: #fff3e0; color: #e65100; border: 1px solid #ffe0b2; }
    .site-main .tag-mythical { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }

    /* 表格樣式優化 */
    .site-main .table-responsive {
      overflow-x: auto;
      border-radius: 8px;
    }
    .site-main .skill-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
      font-size: 0.95rem;
      min-width: 500px;
    }
    .site-main .skill-table th {
      background: #f4f6f7;
      color: #2c3e50;
      padding: 12px;
      text-align: left;
      font-weight: bold;
      border: 1px solid #dcdde1;
    }
    .site-main .skill-table td {
      border: 1px solid #eee;
      padding: 12px;
      vertical-align: middle;
      color: #444;
    }
    .site-main .skill-key {
      display: inline-block;
      width: 28px;
      height: 28px;
      line-height: 28px;
      text-align: center;
      border-radius: 4px;
      background: var(--primary-color);
      color: #fff;
      font-weight: bold;
      font-size: 0.9rem;
    }

    /* 底部推薦按鈕網格 */
    .site-main .guide-buttons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 15px;
      margin-top: 15px;
    }
    .site-main .guide-button {
      display: flex;
      flex-direction: column;
      text-align: left;
      padding: 15px;
      border-radius: 12px;
      border: 1px solid #ccc;
      text-decoration: none;
      color: #333;
      transition: transform 0.2s, box-shadow 0.2s;
      background: #fff;
    }
    .site-main .guide-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-color);
    }
    .site-main .button-emoji { font-size: 1.6rem; margin-bottom: 5px; }
    .site-main .button-title { font-weight: bold; font-size: 1.1rem; margin-bottom: 4px; color: #2c3e50; }
    .site-main .button-desc { font-size: 0.85rem; color: #6c757d; line-height: 1.4; }

    /* 手機版適配 */
    @media (max-width: 600px) {
      .site-main .fs-hero {
        flex-direction: column;
        text-align: center;
      }
    }
