/* 清明上河豚 Blox Fruits 高級武器／名刀攻略共用樣式
   這支 CSS 由多個 guide_sword_*.php 內嵌 style 抽出，
   僅供這組名刀／高級武器攻略共用。 */
/* === 樣式優化 (與其他攻略頁面統一) === */
    .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;
    }
    .guide-subnav-label { font-weight: bold; color: #555; }
    .guide-subnav a {
      display: inline-block;
      padding: 6px 14px;
      background: #f1f3f5;
      color: #333;
      border-radius: 20px;
      text-decoration: none;
      font-size: 0.9rem;
      transition: 0.2s;
    }
    .guide-subnav a:hover, .guide-subnav a.active {
      background: #007bff;
      color: #fff;
    }

    .guide-detail-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border: 1px solid #eee;
    }
    .guide-detail-card h2 {
      display: flex;
      align-items: center;
      color: #2c3e50;
      border-bottom: 2px solid #f0f0f0;
      padding-bottom: 10px;
      margin-bottom: 15px;
    }
    .h2-emoji { margin-right: 10px; font-size: 1.5rem; }

    /* === 拳法列表表格 === */
    .fight-table {
      width: 100%;
      border-collapse: collapse;
      margin: 15px 0;
      font-size: 0.9rem;
    }
    .fight-table th, .fight-table td {
      border: 1px solid #eee;
      padding: 12px;
      vertical-align: middle;
    }
    .fight-table th {
      background: #f8f9fa;
      color: #333;
      font-weight: bold;
      text-align: left;
      white-space: nowrap;
    }
    
    /* 排版 */
    .item-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: bold;
      color: #2c3e50;
    }
    .item-icon {
      width: 45px;
      height: 45px;
      background: #f9f9f9; 
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #eee;
      flex-shrink: 0;
    }

    /* 標籤 */
    .tag {
      display: inline-block;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 0.75rem;
      margin-top: 4px;
      font-weight: normal;
    }
    .tag-v1 { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; } /* V1 藍色 */
    .tag-v2 { background: #f3e5f5; color: #7b1fa2; border: 1px solid #e1bee7; } /* V2 紫色 */
    .tag-god { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; } /* 神話 金色 */

    .highlight-box {
      background: #eef7ff;
      border-left: 4px solid #007bff;
      padding: 15px;
      border-radius: 4px;
      margin: 15px 0;
      color: #444;
      line-height: 1.6;
    }
    
    /* 強調文字 */
    .text-red { color: #d9534f; font-weight: bold; }
    .text-blue { color: #007bff; font-weight: bold; }
    .text-green { color: #28a745; font-weight: bold; }

    /* 懶人包區塊 */
    .lazypack {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    .lazypack-item {
      flex: 1;
      min-width: 200px;
      background: #fff;
      border: 2px solid #eee;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
    }
    .lazypack-title { font-weight: bold; font-size: 1.1rem; margin-bottom: 5px; display: block;}
    
    /* 內文超連結樣式 */
    .guide-detail-card a, .highlight-box a {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
      border-bottom: 1px dotted #007bff;
    }
    .guide-detail-card a:hover, .highlight-box a:hover {
      color: #0056b3;
      border-bottom: 1px solid #0056b3;
    }

    /* === 相關頁面按鈕化 (針對新手玩家優化) === */
    .related-buttons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 自動響應式網格 */
      gap: 15px;
      margin-top: 20px;
    }
    .related-button {
      display: flex; /* 垂直排列並置中 */
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 15px;
      background: #fdfd96; /* 醒目的黃色/金色 */
      border: 2px solid #ffaa00; /* 橘色邊框 */
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      font-weight: bold;
      color: #333;
      transition: transform 0.1s, box-shadow 0.1s;
      text-align: center;
    }
    .related-button:hover {
      transform: translateY(-2px); /* 懸停時略微抬升 */
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
      background: #ffec80; /* 懸停時顏色微變 */
    }
    .button-title {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: #c0392b; /* 標題使用深紅色強調 */
    }
    .button-desc {
      font-size: 0.85rem;
      color: #555;
      font-weight: normal;
    }
  
    /* === 拳法單獨介紹頁 === */
    .fs-hero {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .fs-hero-icon {
      width: 80px;
      height: 80px;
      border-radius: 18px;
      border: 1px solid #e5e7eb;
      background: #f9fafb;
      object-fit: cover;
      flex-shrink: 0;
    }
    .fs-hero-text h1 {
      margin: 0 0 6px;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .fs-hero-sub {
      font-size: 0.95rem;
      color: #6b7280;
      margin-bottom: 8px;
    }
    .fs-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 0.85rem;
    }
    .fs-meta span {
      background: #f3f4f6;
      border-radius: 999px;
      padding: 4px 10px;
    }
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.9rem;
      color: #2563eb;
      text-decoration: none;
      margin-bottom: 10px;
    }
    .back-link:hover {
      text-decoration: underline;
    }
    .fs-grid {
      display: grid;
      grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.7fr);
      gap: 16px;
    }
    @media (max-width: 768px) {
      .fs-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
    .fs-section-title {
      font-size: 1.1rem;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .fs-section-title span.emoji {
      font-size: 1.2rem;
    }
    .fs-list {
      padding-left: 18px;
      margin: 0;
    }
    .fs-list li {
      margin-bottom: 4px;
    }
    .skill-list {
      padding-left: 18px;
      margin: 0;
    }
    .skill-list li {
      margin-bottom: 6px;
    }
