/* ============================================
   TFT HEADER CSS
   ============================================ */

.tft-header { width: 100%; }

/* NAV1 */
.tft-nav1 { background: #07090e; border-bottom: 1px solid rgba(255,255,255,0.06); height: 52px; display: flex; align-items: center; }
.tft-nav1-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 16px; width: 100%; }

.tft-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.tft-brand-icon { width: 28px; height: 28px; object-fit: contain; }
.tft-brand-name { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 900; color: #C89B3C; letter-spacing: 1px; }

.tft-game-tabs { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.tft-game-tab { display: flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 8px; border: 1px solid transparent; text-decoration: none; color: #4a6080; font-size: 12px; transition: all 0.15s; white-space: nowrap; }
.tft-game-tab:hover { background: rgba(255,255,255,0.04); color: #8090b8; }
.tft-game-tab--active { background: rgba(200,155,60,0.08); border-color: rgba(200,155,60,0.2); color: #C89B3C; }
.tft-game-tab--soon { opacity: 0.5; cursor: default; pointer-events: none; }
.tft-game-tab-icon { width: 18px; height: 18px; object-fit: contain; }
.tft-soon-badge { font-size: 9px; background: rgba(255,255,255,0.08); border-radius: 3px; padding: 1px 5px; color: #4a6080; }

.tft-nav1-right { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.tft-lang-btn { padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); font-size: 11px; font-weight: 700; color: #4a6080; text-decoration: none; transition: all 0.15s; }
.tft-lang-btn:hover { border-color: rgba(200,155,60,0.3); color: #C89B3C; }
.tft-lang-btn.active { background: rgba(200,155,60,0.1); border-color: rgba(200,155,60,0.3); color: #C89B3C; }

/* NAV2 */
.tft-nav2 { background: #07090e; border-bottom: 1px solid rgba(255,255,255,0.05); height: 46px; display: flex; align-items: center; }
.tft-nav2-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.tft-nav2-search { display: flex; align-items: center; gap: 8px; background: #0d1428; border: 0.5px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 0 12px; height: 34px; max-width: 600px; transition: border-color 0.2s; }
.tft-nav2-search:hover { border-color: rgba(200,155,60,0.25); }
.tft-nav2-search svg { width: 13px; height: 13px; color: #3c4a6a; flex-shrink: 0; }
.tft-nav2-search input { flex: 1; background: none; border: none; outline: none; font-size: 12px; color: #eef3ff; font-family: inherit; }
.tft-nav2-search input::placeholder { color: #2c3a5a; }
.tft-nav2-kbd { display: flex; gap: 3px; }
.tft-kbd { background: #111827; border: 0.5px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 1px 5px; font-size: 9px; color: #3c4a6a; }

/* NAV3 */
.tft-nav3 { background: #07090e; border-bottom: 1px solid rgba(255,255,255,0.06); height: 44px; display: flex; align-items: center; }
.tft-nav3-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.tft-nav3-links { display: flex; align-items: center; gap: 2px; }
.tft-nav3-link { font-size: 13px; color: #8090b8; padding: 0 12px; height: 44px; display: flex; align-items: center; text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.15s; }
.tft-nav3-link:hover { color: #ccd6e0; }
.tft-nav3-link.active { color: #eef3ff; border-bottom-color: #C89B3C; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .tft-nav1-inner { padding: 0 14px; }
  .tft-nav2-inner { padding: 0 14px; }
  .tft-nav3-inner { padding: 0 14px; }
  .tft-game-tab span:not(.tft-soon-badge) { display: none; }
  .tft-nav3-link { padding: 0 8px; font-size: 12px; }
  .tft-brand-name { display: none; }
}