/* 清明上河豚 Blox Fruits 槍械總覽＋練功總覽共用樣式（guide_guns / guide_leveling） */
/* === 頁面專屬樣式 (局部隔離) === */
    /* 所有樣式皆限制在 .site-main 內部 */
    
    .site-main {
      --primary-color: #2c3e50; /* 暗夜黑藍 */
      --accent-color: #e67e22;  /* 槍火橘 */
      --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 h1 {
      color: var(--text-dark);
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
    .site-main .section-desc {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    /* 列表優化 */
    .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: #fff8e1; /* 淺橘黃背景 */
      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-box h3 {
      margin-top: 0;
      color: #d35400;
      font-size: 1.1rem;
    }

    /* 懶人包區塊 */
    .site-main .lazypack {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    .site-main .lazypack-item {
      flex: 1;
      min-width: 200px;
      background: #fff;
      border: 2px solid #eee;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .site-main .lazypack-title { font-weight: bold; font-size: 1.1rem; margin-bottom: 5px; display: block;}
    
    /* 表格樣式優化 */
    .site-main .table-responsive {
      overflow-x: auto;
      border-radius: 8px;
      margin-top: 10px;
    }
    .site-main .gun-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
      min-width: 600px;
    }
    .site-main .gun-table th {
      background: #f4f6f7;
      color: #2c3e50;
      padding: 12px;
      text-align: left;
      font-weight: bold;
      border: 1px solid #dcdde1;
    }
    .site-main .gun-table td {
      border: 1px solid #eee;
      padding: 12px;
      vertical-align: middle;
      color: #444;
    }
    .site-main .item-row {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .site-main .item-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
      border-radius: 8px;
      background: #fdfdfd;
      border: 1px solid #eee;
    }
    .site-main .item-row a {
      color: #2c3e50;
      font-weight: bold;
      text-decoration: none;
    }
    .site-main .item-row a:hover {
      text-decoration: underline;
    }

    /* 標籤 (針對槍枝稀有度配色) */
    .site-main .tag {
      display: inline-block;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 0.75rem;
      margin-top: 4px;
      font-weight: normal;
    }
    .site-main .tag-common { background: #f8f9fa; color: #6c757d; border: 1px solid #dee2e6; } /* 普通 灰 */
    .site-main .tag-uncommon { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; } /* 不凡 綠 */
    .site-main .tag-rare { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; } /* 稀有 藍 */
    .site-main .tag-legendary { background: #f3e5f5; color: #7b1fa2; border: 1px solid #e1bee7; } /* 傳說 紫 */
    .site-main .tag-mythical { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; } /* 神話 金/紅 */

    /* 文字強調色 */
    .site-main .text-red { color: #d63031; font-weight: bold; }
    .site-main .text-blue { color: #0984e3; font-weight: bold; }
    .site-main .text-green { color: #27ae60; font-weight: bold; }

    /* 底部推薦按鈕網格 */
    .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(--accent-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;
      }
    }
