/* ══════════════════════════════════════
       BOARD PAGE
    ══════════════════════════════════════ */
    .board-filter-bar {
      display: flex; flex-wrap: wrap; gap: 8px;
      padding: 14px 0 16px;
      border-bottom: 1px solid #1e2d4a;
      margin-bottom: 0;
    }
    .bfbtn {
      background: #1a1a2e; border: 1px solid #1e2d4a;
      color: #a0a8c0; border-radius: 20px;
      padding: 5px 14px; font-size: .75rem; font-weight: 700;
      cursor: pointer; transition: all .2s; font-family: 'Nunito', sans-serif;
    }
    .bfbtn:hover  { border-color: #e94560; color: #fff; }
    .bfbtn.active { background: #e94560; border-color: #e94560; color: #fff; }

    .board-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid #1e2d4a;
      border-radius: 16px;
      overflow: hidden;
      margin-top: 18px;
    }
    @media(max-width:680px){ .board-grid { grid-template-columns: 1fr; } }

    .board-col { display: flex; flex-direction: column; }
    .board-col-left  { border-right: 2px solid #1e2d4a; }
    .board-col-right { background: #0a0a12; }

    .board-col-head {
      display: flex; align-items: center; gap: 10px;
      padding: 13px 18px;
      border-bottom: 2px solid #1e2d4a;
      background: #11111f;
      position: sticky; top: 0;
    }
    .board-col-title { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 3px; }
    .board-col-title.offer { color: #e94560; }
    .board-col-title.seek  { color: #4ecdc4; }
    .board-cnt {
      background: #1a1a2e; border: 1px solid #2a3a5a;
      border-radius: 20px; padding: 2px 10px;
      font-size: .7rem; color: #a0a8c0; font-weight: 700;
    }

    /* Row — same height both sides via CSS grid on parent */
    .board-offer-row, .board-seek-row {
      padding: 13px 16px;
      border-bottom: 1px solid #1a1a2e;
      min-height: 88px;
      transition: background .18s;
    }
    .board-offer-row:hover { background: rgba(233,69,96,.04); }
    .board-seek-row:hover  { background: rgba(78,205,196,.03); }

    /* Offer card entry */
    .bcard-entry { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
    .bcard-entry:last-child { margin-bottom: 0; }
    .bcard-img {
      width: 46px; height: 64px; object-fit: contain;
      border-radius: 6px; flex-shrink: 0;
      box-shadow: 0 3px 12px rgba(0,0,0,.6);
      transition: transform .2s;
    }
    .bcard-img:hover { transform: scale(1.06); }
    .bcard-ph {
      width: 46px; height: 64px; background: #1e2d4a;
      border-radius: 6px; display: flex; align-items: center;
      justify-content: center; font-size: 1.2rem; flex-shrink: 0;
    }
    .bcard-info { flex: 1; min-width: 0; }
    .bcard-name {
      font-weight: 800; font-size: .84rem;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      margin-bottom: 4px;
    }
    .bcard-tags { display: flex; flex-wrap: wrap; gap: 4px; }
    .bctag { font-size: .6rem; padding: 2px 7px; border-radius: 10px; font-weight: 700; }
    .bctag-val {
      background: rgba(245,197,24,.12); color: #f5c518;
      border: 1px solid rgba(245,197,24,.25);
      font-size: .6rem; padding: 2px 7px; border-radius: 10px; font-weight: 700;
    }
    .bcard-set { font-size: .62rem; color: #4a5a7a; margin-top: 2px; }

    /* Seek card entry */
    .bseek-entry { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; }
    .bseek-entry:last-child { margin-bottom: 0; }
    .bseek-img {
      width: 38px; height: 53px; object-fit: contain;
      border-radius: 5px; flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,.5);
    }
    .bseek-ph {
      width: 38px; height: 53px; background: #1a2a3a;
      border-radius: 5px; display: flex; align-items: center;
      justify-content: center; font-size: 1rem; flex-shrink: 0;
    }
    .bseek-name { font-size: .82rem; font-weight: 700; color: #d0d8e8; line-height: 1.3; }
    .bseek-set  { font-size: .64rem; color: #4a5a7a; margin-top: 1px; }

    .board-more { font-size: .62rem; color: #4a5a7a; font-style: italic; margin-top: 4px; padding-left: 2px; }
    .board-empty { color: #2a3a5a; text-align: center; padding: 50px 20px; font-size: .9rem; }

    @keyframes boardIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .board-offer-row, .board-seek-row { animation: boardIn .25s ease both; }