/* ==========================================================================
   STARGALAXY - MODERN TAKTİK KOMUTA & EKİPMAN KONTROL PANELİ
   Özgün Fütüristik Poligon Tasarımı, Koyu Siber Cam ve Neon Estetiği
   ========================================================================== */

/* Ekran Altında Yatayda Tam Ortalanmış Dikdörtgen Menü Butonu */
#bottom-menu-dock {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 45;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 24px;
  min-width: 120px;
  height: 40px;
  background: #09090b !important;
  border: 1.5px solid #3f3f46;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.05);
  cursor: pointer;
  user-select: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  outline: none;
}

.bottom-menu-btn:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: #a1a1aa;
  background: #18181b !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9), 0 0 14px rgba(255, 255, 255, 0.12);
}

.bottom-menu-btn:active {
  transform: translateY(0) scale(0.96);
}

.bottom-menu-icon {
  font-size: 18px;
  line-height: 1;
  color: #f8fafc;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
  transition: transform 0.22s ease;
}

.bottom-menu-btn:hover .bottom-menu-icon {
  transform: rotate(90deg);
}

.bottom-menu-text {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 1.5px;
}

.bottom-menu-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: tacPulse 2s infinite ease-in-out;
  margin-left: 2px;
}

@keyframes tacPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

/* ================= MODAL TAKTİK KOMUTA PANELİ ================= */
#modal-tactical-dashboard {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 16px;
  user-select: none;
}

#modal-tactical-dashboard.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Ana Çerçeve - Açılı Fütüristik Poligon Kesim */
.tac-dashboard-container {
  width: 95vw;
  max-width: 1260px;
  height: 88vh;
  max-height: 820px;
  min-height: 600px;
  background: #09090b;
  border: 1.5px solid #27272a;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Fütüristik Köşe Süsleri */
.tac-dashboard-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 2.5px solid #71717a;
  border-left: 2.5px solid #71717a;
  border-top-left-radius: 10px;
  pointer-events: none;
  z-index: 5;
}

.tac-dashboard-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 2.5px solid #71717a;
  border-right: 2.5px solid #71717a;
  border-bottom-right-radius: 10px;
  pointer-events: none;
  z-index: 5;
}

/* ================= 1. ÜST BAŞLIK ÇUBUĞU ================= */
.tac-header {
  height: 60px;
  background: #0f0f12;
  border-bottom: 1.5px solid #27272a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
  gap: 16px;
}

.tac-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tac-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tac-brand-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.tac-brand-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #d4d4d8;
  background: #18181b;
  border: 1px solid #3f3f46;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.8px;
}

/* Pilot Durum Rozeti (Pilot Pill) */
.tac-pilot-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141418;
  border: 1px solid #27272a;
  border-radius: 20px;
  padding: 4px 14px 4px 8px;
  min-height: 44px;
  box-shadow: none;
}

.tac-pilot-rank-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.tac-pilot-info {
  display: flex;
  flex-direction: column;
}

.tac-pilot-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.tac-pilot-sub {
  font-size: 10px;
  font-weight: 700;
  color: #a1a1aa;
  font-family: 'Rajdhani', sans-serif;
}

.tac-pilot-sub .tac-company-tag {
  color: #f87171;
  font-weight: 800;
}

/* Üst Sağ: Kredi, Uridium ve Kapat Butonu */
.tac-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tac-currency-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #141418;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 5px 12px;
}

.tac-currency-chip.credits {
  border-color: #3f3f46;
}

.tac-currency-chip.uridium {
  border-color: #3f3f46;
}

.tac-currency-icon {
  font-size: 13px;
}

.tac-currency-icon-svg {
  width: 15px;
  height: 15px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.tac-currency-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.tac-currency-chip.credits .tac-currency-val {
  color: #facc15;
  text-shadow: none;
}

.tac-currency-chip.uridium .tac-currency-val {
  color: #38bdf8;
  text-shadow: none;
}

/* Kapat Butonu */
.tac-close-btn {
  width: 34px;
  height: 34px;
  background: #18181c;
  border: 1px solid #3f3f46;
  border-radius: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
}

.tac-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.5);
  transform: scale(1.05);
}

/* ================= 2. ANA GÖVDE DÜZENİ (Sidebar + Content) ================= */
.tac-body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* Sol Navigasyon Yan Çubuğu */
.tac-sidebar {
  width: 210px;
  background: #09090b;
  border-right: 1.5px solid #27272a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 12px;
  flex-shrink: 0;
  overflow-y: auto;
}

.tac-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tac-nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 6px;
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: left;
}

.tac-nav-item:hover {
  background: #18181c;
  border-color: #52525b;
  color: #ffffff;
  transform: translateX(4px);
}

.tac-nav-item.active {
  background: #1f1f24;
  border: 1.5px solid #71717a;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 0 8px rgba(255, 255, 255, 0.04);
}

.tac-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3.5px;
  background: #ffffff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.tac-nav-icon {
  font-size: 17px;
  flex-shrink: 0;
}

.tac-nav-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Taktik Köprü Telemetri & Gemi Durum Kartı (Dikey Boşluğu Doldurur) */
.tac-sidebar-widget {
  background: linear-gradient(180deg, rgba(14, 28, 56, 0.75) 0%, rgba(6, 16, 32, 0.85) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 8px;
  padding: 10px 11px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.tac-sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
}

.tac-side-widget-header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
}

.tac-radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: tacRadarPulse 1.8s infinite ease-in-out;
}

@keyframes tacRadarPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.tac-side-widget-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.8px;
}

.tac-side-ship-preview {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tac-side-ship-hologram {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(4, 12, 24, 0.6) 80%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.tac-side-ship-thumb {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.6));
}

.tac-side-ship-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tac-side-ship-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.tac-side-ship-type {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9.5px;
  color: #94a3b8;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tac-side-telemetry-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tac-side-bar-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tac-side-bar-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: #cbd5e1;
}

.tac-side-bar-labels .lbl-hp { color: #22c55e; }
.tac-side-bar-labels .lbl-shd { color: #38bdf8; }

.tac-side-track {
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.tac-side-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.tac-side-fill.hp-fill {
  background: linear-gradient(90deg, #16a34a, #4ade80);
  box-shadow: 0 0 6px #22c55e;
}

.tac-side-fill.shd-fill {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  box-shadow: 0 0 6px #38bdf8;
}

.tac-side-system-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 1px;
}

.tac-status-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  padding: 1.5px 5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tac-status-badge.online {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.tac-status-badge.online .badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4ade80;
}

.tac-status-badge.sector {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

/* Sidebar Alt İşlemler */
.tac-sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid #27272a;
  padding-top: 12px;
  flex-shrink: 0;
}

.tac-side-btn {
  width: 100%;
  padding: 9px 12px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tac-side-btn.logout {
  background: #141418;
  border: 1px solid #27272a;
  color: #a1a1aa;
}

.tac-side-btn.logout:hover {
  background: #1c1c22;
  border-color: #ef4444;
  color: #ef4444;
}

/* ================= 3. ORTA ANA İÇERİK ALANI ================= */
.tac-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: #050507;
  overflow-y: auto;
  padding: 16px 20px;
}

/* Üst Kontroller: Alt Sekmeler ve Hızlı Eylem Çubuğu */
.tac-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #27272a;
  flex-shrink: 0;
}

.tac-controls-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.tac-controls-ship-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #121216;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 5px 12px;
}

.tac-controls-ship-pill .tac-pill-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  animation: tacPulse 1.8s infinite ease-in-out;
}

.tac-controls-ship-pill .tac-pill-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.8px;
}

/* Konfigürasyon Araç Çubuğu (Gemi Lazer Yuvaları Üstü) */
.tac-cfg-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: -4px;
}

/* Alt Sekmeler: Gemi Ekipmanı | Droitler | Hangar */
.tac-subtabs {
  display: flex;
  gap: 8px;
}

.tac-subtab-btn {
  padding: 7px 16px;
  background: #121216;
  border: 1px solid #27272a;
  border-radius: 6px;
  color: #a1a1aa;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tac-subtab-btn:hover {
  background: #1c1c22;
  border-color: #52525b;
  color: #ffffff;
}

.tac-subtab-btn.active {
  background: #27272a;
  border-color: #71717a;
  color: #ffffff;
  box-shadow: none;
}

/* Konfigürasyon ve Hızlı Aksiyon Grubu */
.tac-action-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Konfi Butonları */
.tac-cfg-switch {
  display: flex;
  background: #121216;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 2px;
}

.tac-cfg-btn {
  padding: 5px 12px;
  border-radius: 4px;
  background: transparent;
  border: none;
  color: #a1a1aa;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tac-cfg-btn.active {
  background: #27272a;
  color: #ffffff;
  box-shadow: none;
}

.tac-cfg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* Toplu Eylem Butonları */
.tac-bulk-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tac-bulk-btn.equip-all {
  background: #16161a;
  border: 1px solid #3f3f46;
  color: #ffffff;
}

.tac-bulk-btn.equip-all:hover {
  background: #27272a;
  border-color: #52525b;
}

.tac-bulk-btn.clear-all {
  background: #16161a;
  border: 1px solid #3f3f46;
  color: #e4e4e7;
}

.tac-bulk-btn.clear-all:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ffffff;
}

.tac-bulk-btn.shield-all {
  background: #16161a;
  border: 1px solid #3f3f46;
  color: #e4e4e7;
}

.tac-bulk-btn.shield-all:hover {
  background: #27272a;
  border-color: #52525b;
  color: #ffffff;
}

.tac-bulk-btn.speed-all {
  background: #16161a;
  border: 1px solid #3f3f46;
  color: #e4e4e7;
}

.tac-bulk-btn.speed-all:hover {
  background: #27272a;
  border-color: #52525b;
  color: #ffffff;
}

.tac-bulk-btn.copy-cfg {
  background: #16161a;
  border: 1px solid #3f3f46;
  color: #e4e4e7;
}

.tac-bulk-btn.copy-cfg:hover {
  background: #27272a;
  border-color: #52525b;
  color: #ffffff;
}

/* ==================== EKİPMAN / HANGAR / CEPHANE ANA SEKMELER (a/ekipman.png) ==================== */
.ekipman-main-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 4px 10px 4px;
  border-bottom: 1.5px solid #1f2937;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.ekipman-main-tab {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #94a3b8;
  background: transparent;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.ekipman-main-tab:hover {
  color: #e2e8f0;
}

.ekipman-main-tab.active {
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.ekipman-main-tab.active::after {
  content: '';
  position: absolute;
  bottom: -11.5px;
  left: 0;
  right: 0;
  height: 3px;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  border-radius: 2px;
}

/* Alt Sekmeler: GEMİ EKİPMANI & DROİTLER (Mavi Tema) */
.ekipman-subnav-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.ekipman-subnav-pills {
  display: flex;
  width: 100%;
  max-width: 600px;
  background: #0f172a;
  border-radius: 6px;
  border: 1px solid #1e293b;
  overflow: hidden;
  padding: 2px;
  gap: 4px;
}

.ekipman-pill-btn {
  flex: 1;
  padding: 8px 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #64748b;
  border-radius: 4px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ekipman-pill-btn:hover {
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.5);
}

.ekipman-pill-btn.active {
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
  color: #030712;
  font-weight: 900;
  box-shadow: 0 2px 14px rgba(56, 189, 248, 0.4);
}

/* Konfigürasyon ve Hızlı Butonlar */
.ekipman-cfg-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 2px;
}

.ekipman-cfg-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ekipman-cfg-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: #0b1120;
  border: 1.5px solid #1e293b;
  border-radius: 5px;
  color: #94a3b8;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ekipman-cfg-box:hover {
  border-color: #38bdf8;
  color: #ffffff;
}

.ekipman-cfg-box.active {
  border-color: #38bdf8;
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.ekipman-cfg-box .cfg-dot {
  font-size: 14px;
  color: #38bdf8;
  opacity: 0;
}

.ekipman-cfg-box.active .cfg-dot {
  opacity: 1;
}

.ekipman-cfg-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ekipman-btn-green {
  background: rgba(16, 185, 129, 0.15);
  border: 1.2px solid #10b981;
  color: #34d399;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.ekipman-btn-green:hover {
  background: #10b981;
  color: #030712;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.ekipman-btn-red {
  background: rgba(239, 68, 68, 0.15);
  border: 1.2px solid #ef4444;
  color: #f87171;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.ekipman-btn-red:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.ekipman-btn-blue {
  background: rgba(2, 132, 199, 0.18);
  border: 1.2px solid #0284c7;
  color: #38bdf8;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ekipman-btn-blue:hover {
  background: #0284c7;
  color: #ffffff;
}

.ekipman-btn-cyan {
  background: rgba(6, 182, 212, 0.18);
  border: 1.2px solid #06b6d4;
  color: #22d3ee;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ekipman-btn-cyan:hover {
  background: #06b6d4;
  color: #ffffff;
}

/* ==================== 3 ANA KONTEYNER BÖLÜMÜ (LAZERLER, JENERATÖRLER, MODÜLLER) & SAĞ ENVANTER ==================== */
.ekipman-ship-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 12px;
  align-items: start;
  overflow-y: auto;
  padding-right: 4px;
  max-height: calc(88vh - 160px);
}

.ekipman-slots-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.ekipman-inv-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Siyahımsı Profil Teması Konteynerler (Aşağıya doğru genişletilmiş ferah alan) */
.ekipman-section {
  background: #09090b;
  border-radius: 6px;
  border: 1px solid #27272a;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Sarı Vurgu: Lazerler */
.ekipman-section.section-lasers {
  border-color: rgba(245, 158, 11, 0.4);
}

.ekipman-sec-title.yellow {
  color: #fbbf24;
}

.sec-bar.yellow {
  color: #fbbf24;
  font-weight: 900;
  font-size: 14px;
  margin-right: 4px;
  text-shadow: 0 0 8px #fbbf24;
}

/* Mavi Vurgu: Jeneratörler */
.ekipman-section.section-generators {
  border-color: rgba(56, 189, 248, 0.4);
}

.ekipman-sec-title.blue {
  color: #38bdf8;
}

.sec-bar.blue {
  color: #38bdf8;
  font-weight: 900;
  font-size: 14px;
  margin-right: 4px;
  text-shadow: 0 0 8px #38bdf8;
}

/* Kırmızı Vurgu: Modüller (Ekstralar) */
.ekipman-section.section-modules {
  border-color: rgba(239, 68, 68, 0.4);
}

.ekipman-sec-title.red {
  color: #f87171;
}

.sec-bar.red {
  color: #f87171;
  font-weight: 900;
  font-size: 14px;
  margin-right: 4px;
  text-shadow: 0 0 8px #f87171;
}

.ekipman-sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 4px;
}

.ekipman-sec-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ekipman-sec-counter {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  color: #94a3b8;
  background: #09090b;
  border: 1px solid #3f3f46;
  padding: 1px 6px;
  border-radius: 3px;
}

.ekipman-sec-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ekipman-action-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 2.5px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ekipman-action-btn.green {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #34d399;
}
.ekipman-action-btn.green:hover {
  background: #10b981;
  color: #030712;
}

.ekipman-action-btn.red {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}
.ekipman-action-btn.red:hover {
  background: #ef4444;
  color: #ffffff;
}

.ekipman-action-btn.blue {
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid #0284c7;
  color: #38bdf8;
}
.ekipman-action-btn.blue:hover {
  background: #0284c7;
  color: #ffffff;
}

/* Bölüm Gövdesi */
.ekipman-sec-body {
  display: block;
}

.ekipman-area-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

/* 15 Slotluk Izgara Düzeni (8 sütun, tam kare yuvalar) */
.ekipman-slots-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  box-sizing: border-box;
}

.ekipman-slots-grid .tac-slot-card {
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 64px;
}

/* 4 Modül/Ekstra Yuvası (Tam kare 66px, 10px boşluk, sıfır çakışma) */
.tac-module-slots-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 66px) !important;
  gap: 10px !important;
  margin: 0 !important;
}

.tac-module-slots-grid .tac-slot-card {
  width: 66px !important;
  height: 66px !important;
  aspect-ratio: 1 / 1 !important;
}

/* Sağ Sütundaki Ayrı Envanter Konteyneri */
.ekipman-inv-panel {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.ekipman-inv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 5px;
}

.ekipman-inv-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #f8fafc;
}

.inv-title-bar {
  color: #38bdf8;
  font-weight: 900;
  margin-right: 4px;
}

.ekipman-inv-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(88vh - 215px);
  overflow-y: auto;
  padding-right: 3px;
}

.ekipman-inv-group-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ekipman-inv-group-label.yellow { color: #fbbf24; }
.ekipman-inv-group-label.blue { color: #38bdf8; }
.ekipman-inv-group-label.red { color: #f87171; }

.ekipman-inv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 60px;
}

.ekipman-inv-card {
  width: 60px;
  height: 60px;
  background: #050507;
  border: 1.2px solid #27272a;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.ekipman-inv-card:hover {
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.ekipman-inv-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

.ekipman-inv-badge {
  position: absolute;
  top: 2px;
  left: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.ekipman-inv-tier {
  position: absolute;
  bottom: 2px;
  right: 3px;
  font-family: 'Times New Roman', serif;
  font-size: 11px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.9);
}

.ekipman-inv-card.laser-card { border-color: rgba(245, 158, 11, 0.35); }
.ekipman-inv-card.shield-card { border-color: rgba(56, 189, 248, 0.35); }
.ekipman-inv-card.speed-card { border-color: rgba(56, 189, 248, 0.35); }
.ekipman-inv-card.module-card { border-color: rgba(239, 68, 68, 0.35); }

.ekipman-tel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ekipman-tel-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
}

.ekipman-tel-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

/* Droitler Aksiyon Çubuğu */
.ekipman-drone-actions-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* Cephane Görünümü Kartları */
.ekipman-ammo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  padding: 10px 4px;
  overflow-y: auto;
  max-height: calc(88vh - 160px);
}

.ekipman-ammo-cat-card {
  background: #090e17;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ekipman-ammo-cat-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 6px;
}

.ekipman-ammo-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ekipman-ammo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #1e293b;
  border-radius: 5px;
  padding: 6px 10px;
}

.ekipman-ammo-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ekipman-ammo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ekipman-ammo-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
}

.ekipman-ammo-count {
  font-family: 'Orbitron', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #38bdf8;
}

/* ==================== SIRALAMA ALTGÖRÜNÜMÜ (PROFİL İÇİ) ==================== */
.profile-rankings-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: calc(88vh - 160px);
  padding: 4px 6px 12px 6px;
}

/* ================= 4. EKİPMAN İÇİ GÖRÜNÜMÜ (SECTIONS) ================= */
.tac-eq-view-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Bölüm Başlığı & Kartı */
.tac-eq-section {
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tac-eq-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #27272a;
  padding-bottom: 3px;
}

.tac-eq-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tac-eq-section-title .tac-sec-counter {
  font-size: 10px;
  color: #d4d4d8;
  background: #1c1c22;
  border: 1px solid #3f3f46;
  padding: 1px 6px;
  border-radius: 3px;
}

.tac-eq-section-actions {
  display: flex;
  gap: 5px;
}

.tac-eq-action-mini {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.tac-eq-action-mini:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: #38bdf8;
  color: #ffffff;
}

/* Bölüm Gövdesi: Sol Yuvalar Izgarası + Sağ Envanter Sütunu */
.tac-eq-section-body {
  display: grid;
  grid-template-columns: 1fr 315px;
  gap: 10px;
  align-items: start;
}

/* Slot Izgarası (Takılı Ekipmanlar) */
.tac-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 4px;
}

/* Ekstralar Slot Izgarası (REP-4, ROK-T01, AROL-X, CLK-XL) */
.tac-extra-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 68px);
  gap: 6px;
}

.tac-extra-slots-grid .tac-slot-card {
  width: 68px;
  height: 46px;
}

.tac-extra-slots-grid .tac-slot-top-title {
  font-size: 7.5px;
  padding: 1px 3.5px;
}

/* Modül Slot Izgarası (DMG, HP, SHD, SPC) */
.tac-module-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 68px);
  gap: 6px;
}

.tac-module-slots-grid .tac-slot-card {
  width: 68px;
  height: 46px;
}

.tac-module-slots-grid .tac-slot-top-title {
  font-size: 7.5px;
  padding: 1px 3.5px;
}

/* Özel Ekstralar ve Modüller Bölümü Kompakt Yükseklik Kuralları */
.tac-extras-section,
.tac-modules-section {
  padding: 4px 10px;
  gap: 3px;
}

.tac-extras-section .tac-eq-section-header,
.tac-modules-section .tac-eq-section-header {
  padding-bottom: 2px;
}

.tac-extras-section .tac-inv-column,
.tac-modules-section .tac-inv-column {
  padding: 4px 8px;
  gap: 3px;
}

.tac-extras-section .tac-inv-items-list,
.tac-modules-section .tac-inv-items-list {
  max-height: 50px;
  gap: 3px;
}

/* Tekil Slot Kartı */
.tac-slot-card {
  height: 52px;
  background: #09090b;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.tac-slot-card:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
  z-index: 5;
}

/* Boş Yuvalar: Kesik Çizgisiz, Katı Siber Mavi Çerçeveli */
.tac-slot-card.empty {
  border: 1.5px solid rgba(56, 189, 248, 0.45) !important;
  background: rgba(8, 12, 20, 0.7) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.tac-slot-card.empty:hover {
  border-color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.15) !important;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.35);
}

.tac-slot-num {
  position: absolute;
  top: 2px;
  left: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 8px;
  font-weight: 800;
  color: #94a3b8;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  z-index: 2;
  pointer-events: none;
}

.tac-slot-img {
  width: 44px;
  height: 44px;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
  pointer-events: none;
  transition: transform 0.15s ease;
}

.tac-slot-card:hover .tac-slot-img {
  transform: scale(1.06);
}

/* Kart Yüzeyindeki İsim ve Elite Yazıları Kaldırıldı */
.tac-slot-top-title,
.tac-slot-tag {
  display: none !important;
}

/* Resmin Sağ Altındaki Roma Rakamı Rozeti (I, II, III, IV) */
.tac-slot-roman {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-family: 'Times New Roman', 'Cinzel', serif;
  font-size: 11px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 0 8px rgba(255, 255, 255, 0.85);
  line-height: 1;
  pointer-events: none;
  z-index: 3;
  letter-spacing: 0.5px;
}

/* Nadirlik & Renk Temaları */
.tac-slot-card.tag-lf1 {
  border-color: rgba(34, 197, 94, 0.7);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}
.tac-slot-card.tag-lf1 .tac-slot-img {
  width: 44px;
  height: 44px;
  max-width: 95%;
  max-height: 95%;
  transform: rotate(-33deg);
}
.tac-slot-card.tag-lf1:hover .tac-slot-img {
  transform: rotate(-33deg) scale(1.08);
}
.tac-slot-card.tag-lf1 .tac-slot-tag {
  background: rgba(34, 197, 94, 0.25);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.tac-slot-card.tag-lf2 {
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}
.tac-slot-card.tag-lf2 .tac-slot-img {
  width: 44px;
  height: 44px;
  max-width: 95%;
  max-height: 95%;
  transform: rotate(-33deg);
}
.tac-slot-card.tag-lf2:hover .tac-slot-img {
  transform: rotate(-33deg) scale(1.08);
}
.tac-slot-card.tag-lf2 .tac-slot-tag {
  background: rgba(59, 130, 246, 0.25);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.45);
}

.tac-slot-card.tag-lf3 {
  border-color: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.55);
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-lf3 .tac-slot-img {
  width: 48px;
  height: 48px;
  max-width: 98%;
  max-height: 98%;
  transform: rotate(-33deg) scale(1.10);
}
.tac-slot-card.tag-lf3:hover .tac-slot-img {
  transform: rotate(-33deg) scale(1.18);
}
.tac-slot-card.tag-lf3 .tac-slot-tag {
  background: rgba(245, 158, 11, 0.25);
  color: #fde047;
  border: 1px solid rgba(250, 204, 21, 0.85);
  font-size: 7.5px;
  letter-spacing: 0.3px;
  padding: 1.5px 4px;
  max-width: 90%;
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.95);
}

.tac-slot-card.tag-prom {
  border-color: rgba(239, 68, 68, 0.65);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.25);
}
.tac-slot-card.tag-prom .tac-slot-tag {
  background: rgba(239, 68, 68, 0.25);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.tac-slot-card.tag-shield,
.tac-slot-card[class*="tag-kalkan"] {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.14) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-shield .tac-slot-tag {
  background: rgba(2, 132, 199, 0.3);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

/* KALKAN-1, KALKAN-2, KALKAN-3 Tasarımları */
.tac-slot-card.tag-kalkan1 {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.18) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-kalkan1 .tac-slot-tag,
.tac-slot-tag.tag-kalkan1 {
  background: rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.6);
  font-size: 7px;
  padding: 1px 3.5px;
  letter-spacing: 0.3px;
  text-shadow: 0 0 4px rgba(56, 189, 248, 0.8);
}

.tac-slot-card.tag-kalkan2 {
  border-color: rgba(168, 85, 247, 0.85);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.18) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-kalkan2 .tac-slot-tag,
.tac-slot-tag.tag-kalkan2 {
  background: rgba(168, 85, 247, 0.28);
  color: #d8b4fe;
  border: 1px solid rgba(192, 132, 252, 0.7);
  font-size: 7px;
  padding: 1px 3.5px;
  letter-spacing: 0.3px;
  text-shadow: 0 0 5px rgba(192, 132, 252, 0.85);
}

.tac-slot-card.tag-kalkan3 {
  border-color: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.55);
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.18) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-kalkan3 .tac-slot-tag,
.tac-slot-tag.tag-kalkan3 {
  background: rgba(245, 158, 11, 0.25);
  color: #fde047;
  border: 1px solid rgba(250, 204, 21, 0.85);
  font-size: 6.8px;
  padding: 1px 3.5px;
  letter-spacing: 0.3px;
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.95);
}

.tac-slot-card .tac-slot-shield-img,
.tac-slot-card img[src*="kalkan"] {
  width: 42px;
  height: 40px;
  max-width: 92%;
  max-height: 88%;
  object-fit: contain;
  transform: translateY(-1px);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tac-slot-card:hover .tac-slot-shield-img,
.tac-slot-card:hover img[src*="kalkan"] {
  transform: translateY(-1px) scale(1.08);
}

.tac-drone-slot .tac-drone-shield-img,
.tac-drone-slot img[src*="kalkan"] {
  width: 28px;
  height: 28px;
  max-width: 94%;
  max-height: 94%;
  object-fit: contain;
}

.tac-slot-card.tag-speed {
  border-color: rgba(250, 204, 21, 0.75);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
}

.tac-slot-card.tag-spd-5900 {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-spd-5900 .tac-slot-num {
  color: #38bdf8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 4px rgba(56, 189, 248, 0.6);
}

.tac-slot-card.tag-spd-6900 {
  border-color: rgba(168, 85, 247, 0.85);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-spd-6900 .tac-slot-num {
  color: #d8b4fe;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 4px rgba(168, 85, 247, 0.6);
}

.tac-slot-card.tag-spd-7900 {
  border-color: rgba(250, 204, 21, 0.85);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.45);
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-spd-7900 .tac-slot-num,
.tac-slot-card.tag-speed .tac-slot-num {
  color: #fef08a;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 4px rgba(250, 204, 21, 0.5);
}

.tac-slot-card.tag-speed .tac-slot-num,
.tac-slot-card[class*="tag-spd"] .tac-slot-num {
  font-size: 8px;
  top: 2px;
  left: 2.5px;
}

/* Hız jeneratörleri için alt tag'ı gizle, üst başlık göster */
.tac-slot-card.tag-speed .tac-slot-tag,
.tac-slot-card[class*="tag-spd"] .tac-slot-tag {
  display: none !important;
}

/* Üst Başlık Etiketi (5900 ECO: Mavi, 6900 PRO: Eflatun, 7900 ELITE: Sarı) */
.tac-slot-top-title {
  position: absolute;
  top: 2px;
  right: 2px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: 0.3px;
  line-height: 1;
  padding: 0.5px 2px;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
}

.tac-slot-top-title.tag-spd-5900 {
  background: rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.85);
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.45);
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.95);
}

.tac-slot-top-title.tag-spd-6900 {
  background: rgba(168, 85, 247, 0.25);
  color: #d8b4fe;
  border: 1px solid rgba(192, 132, 252, 0.85);
  box-shadow: 0 0 6px rgba(168, 85, 247, 0.45);
  text-shadow: 0 0 6px rgba(192, 132, 252, 0.95);
}

.tac-slot-top-title.tag-spd-7900,
.tac-slot-top-title.tag-speed {
  background: rgba(250, 204, 21, 0.20);
  color: #fde047;
  border: 1px solid rgba(250, 204, 21, 0.85);
  box-shadow: 0 0 6px rgba(250, 204, 21, 0.45);
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.95);
}

/* Hız jeneratörü motor pod görseli slota tam sığdır */
.tac-slot-card.tag-speed .tac-slot-img,
.tac-slot-card[class*="tag-spd"] .tac-slot-img,
.tac-slot-card .tac-slot-speed-img {
  width: 40px;
  height: 40px;
  max-width: 90%;
  max-height: 88%;
  object-fit: contain;
  transform: translateY(3px);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tac-slot-card.tag-speed:hover .tac-slot-img,
.tac-slot-card[class*="tag-spd"]:hover .tac-slot-img,
.tac-slot-card:hover .tac-slot-speed-img {
  transform: translateY(3px) scale(1.08);
}

.tac-slot-card.tag-spd-5900:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.7);
}

.tac-slot-card.tag-spd-6900:hover {
  border-color: #c084fc;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.75);
}

.tac-slot-card.tag-spd-7900:hover {
  border-color: #fef08a;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.75);
}

/* Sağ Envanter Sütunu */
.tac-inv-column {
  background: rgba(8, 16, 32, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 6px;
  padding: 5px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.5);
}

.tac-inv-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding-bottom: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tac-inv-items-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 112px;
  overflow-y: auto;
  padding-right: 3px;
}

.tac-inv-items-list::-webkit-scrollbar {
  width: 5px;
}
.tac-inv-items-list::-webkit-scrollbar-track {
  background: rgba(10, 20, 38, 0.5);
  border-radius: 3px;
}
.tac-inv-items-list::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.4);
  border-radius: 3px;
}
.tac-inv-items-list::-webkit-scrollbar-thumb:hover {
  background: rgba(56, 189, 248, 0.8);
}

/* Envanter Satır Kartı */
.tac-inv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 3px 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  gap: 6px;
  min-height: 28px;
}

.tac-inv-row:hover {
  background: rgba(20, 34, 60, 0.95);
  transform: translateX(2px) scale(1.01);
}

/* Rarity / Seviye Renkleri & Glowlar */
.tac-inv-row.tier-lf3 {
  border-color: rgba(250, 204, 21, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(250, 204, 21, 0.1) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-lf3:hover {
  border-color: #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.45);
}
.tac-inv-row.tier-lf3 .tac-inv-thumb-wrap {
  border-color: rgba(250, 204, 21, 0.6);
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.35);
}
.tac-inv-row.tier-lf3 .tac-inv-row-name {
  color: #fde047;
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.6);
}
.tac-inv-row.tier-lf3 .tac-inv-row-count {
  background: rgba(250, 204, 21, 0.18);
  border: 1px solid rgba(250, 204, 21, 0.5);
  color: #fde047;
}

.tac-inv-row.tier-lf2 {
  border-color: rgba(56, 189, 248, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(56, 189, 248, 0.1) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-lf2:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}
.tac-inv-row.tier-lf2 .tac-inv-thumb-wrap {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.35);
}
.tac-inv-row.tier-lf2 .tac-inv-row-name {
  color: #60a5fa;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.6);
}
.tac-inv-row.tier-lf2 .tac-inv-row-count {
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #38bdf8;
}

.tac-inv-row.tier-lf1 {
  border-color: rgba(34, 197, 94, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(34, 197, 94, 0.1) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-lf1:hover {
  border-color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
}
.tac-inv-row.tier-lf1 .tac-inv-thumb-wrap {
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.35);
}
.tac-inv-row.tier-lf1 .tac-inv-row-name {
  color: #4ade80;
  text-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.tac-inv-row.tier-lf1 .tac-inv-row-count {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #4ade80;
}

/* Jeneratör Tier'ları */
.tac-inv-row.tier-gold {
  border-color: rgba(250, 204, 21, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(250, 204, 21, 0.1) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-gold:hover {
  border-color: #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.45);
}
.tac-inv-row.tier-gold .tac-inv-thumb-wrap {
  border-color: rgba(250, 204, 21, 0.6);
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.35);
}
.tac-inv-row.tier-gold .tac-inv-row-name {
  color: #fde047;
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.6);
}
.tac-inv-row.tier-gold .tac-inv-row-count {
  background: rgba(250, 204, 21, 0.18);
  border: 1px solid rgba(250, 204, 21, 0.5);
  color: #fde047;
}

.tac-inv-row.tier-purple {
  border-color: rgba(168, 85, 247, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(168, 85, 247, 0.1) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-purple:hover {
  border-color: #c084fc;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
}
.tac-inv-row.tier-purple .tac-inv-thumb-wrap {
  border-color: rgba(192, 132, 252, 0.6);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.35);
}
.tac-inv-row.tier-purple .tac-inv-row-name {
  color: #d8b4fe;
  text-shadow: 0 0 6px rgba(168, 85, 247, 0.6);
}
.tac-inv-row.tier-purple .tac-inv-row-count {
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
}

.tac-inv-row.tier-blue {
  border-color: rgba(56, 189, 248, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(56, 189, 248, 0.1) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-blue:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}
.tac-inv-row.tier-blue .tac-inv-thumb-wrap {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.35);
}
.tac-inv-row.tier-blue .tac-inv-row-name {
  color: #38bdf8;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.6);
}
.tac-inv-row.tier-blue .tac-inv-row-count {
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #38bdf8;
}

/* Modül Tier'ları (Envanter) */
.tac-inv-row.tier-mod-dmg {
  border-color: rgba(239, 68, 68, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(239, 68, 68, 0.12) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-mod-dmg:hover {
  border-color: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.45);
}
.tac-inv-row.tier-mod-dmg .tac-inv-thumb-wrap {
  border-color: rgba(239, 68, 68, 0.65);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.35);
}
.tac-inv-row.tier-mod-dmg .tac-inv-row-name {
  color: #f87171;
  text-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}
.tac-inv-row.tier-mod-dmg .tac-inv-row-count {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171;
}

.tac-inv-row.tier-mod-hp {
  border-color: rgba(34, 197, 94, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(34, 197, 94, 0.12) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-mod-hp:hover {
  border-color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
}
.tac-inv-row.tier-mod-hp .tac-inv-thumb-wrap {
  border-color: rgba(34, 197, 94, 0.65);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.35);
}
.tac-inv-row.tier-mod-hp .tac-inv-row-name {
  color: #4ade80;
  text-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.tac-inv-row.tier-mod-hp .tac-inv-row-count {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #4ade80;
}

.tac-inv-row.tier-mod-shd {
  border-color: rgba(0, 240, 255, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(0, 240, 255, 0.12) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-mod-shd:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.45);
}
.tac-inv-row.tier-mod-shd .tac-inv-thumb-wrap {
  border-color: rgba(0, 240, 255, 0.65);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.35);
}
.tac-inv-row.tier-mod-shd .tac-inv-row-name {
  color: #00f0ff;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.6);
}
.tac-inv-row.tier-mod-shd .tac-inv-row-count {
  background: rgba(0, 240, 255, 0.18);
  border: 1px solid rgba(0, 240, 255, 0.5);
  color: #00f0ff;
}

.tac-inv-row.tier-mod-spc {
  border-color: rgba(245, 158, 11, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(245, 158, 11, 0.12) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-mod-spc:hover {
  border-color: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.45);
}
.tac-inv-row.tier-mod-spc .tac-inv-thumb-wrap {
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.35);
}
.tac-inv-row.tier-mod-spc .tac-inv-row-name {
  color: #fbbf24;
  text-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
}
.tac-inv-row.tier-mod-spc .tac-inv-row-count {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}

/* Ekstralar Envanter Satır Temaları */
.tac-inv-row.tier-extra-rep {
  border-color: rgba(217, 70, 239, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(217, 70, 239, 0.14) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-extra-rep:hover {
  border-color: #d946ef;
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.45);
}
.tac-inv-row.tier-extra-rep .tac-inv-thumb-wrap {
  border-color: rgba(217, 70, 239, 0.65);
  box-shadow: 0 0 8px rgba(217, 70, 239, 0.35);
}
.tac-inv-row.tier-extra-rep .tac-inv-row-name {
  color: #f0abfc;
  text-shadow: 0 0 6px rgba(217, 70, 239, 0.6);
}
.tac-inv-row.tier-extra-rep .tac-inv-row-count {
  background: rgba(217, 70, 239, 0.18);
  border: 1px solid rgba(217, 70, 239, 0.5);
  color: #f0abfc;
}

.tac-inv-row.tier-extra-turbo {
  border-color: rgba(249, 115, 22, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(249, 115, 22, 0.14) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-extra-turbo:hover {
  border-color: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.45);
}
.tac-inv-row.tier-extra-turbo .tac-inv-thumb-wrap {
  border-color: rgba(249, 115, 22, 0.65);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.35);
}
.tac-inv-row.tier-extra-turbo .tac-inv-row-name {
  color: #fb923c;
  text-shadow: 0 0 6px rgba(249, 115, 22, 0.6);
}
.tac-inv-row.tier-extra-turbo .tac-inv-row-count {
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: #fb923c;
}

.tac-inv-row.tier-extra-arol {
  border-color: rgba(6, 182, 212, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(6, 182, 212, 0.14) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-extra-arol:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.45);
}
.tac-inv-row.tier-extra-arol .tac-inv-thumb-wrap {
  border-color: rgba(6, 182, 212, 0.65);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.35);
}
.tac-inv-row.tier-extra-arol .tac-inv-row-name {
  color: #22d3ee;
  text-shadow: 0 0 6px rgba(6, 182, 212, 0.6);
}
.tac-inv-row.tier-extra-arol .tac-inv-row-count {
  background: rgba(6, 182, 212, 0.18);
  border: 1px solid rgba(6, 182, 212, 0.5);
  color: #22d3ee;
}

.tac-inv-row.tier-extra-cloak {
  border-color: rgba(16, 185, 129, 0.45);
  background: radial-gradient(circle at 10% 50%, rgba(16, 185, 129, 0.14) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.tac-inv-row.tier-extra-cloak:hover {
  border-color: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.45);
}
.tac-inv-row.tier-extra-cloak .tac-inv-thumb-wrap {
  border-color: rgba(16, 185, 129, 0.65);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.35);
}
.tac-inv-row.tier-extra-cloak .tac-inv-row-name {
  color: #34d399;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}
.tac-inv-row.tier-extra-cloak .tac-inv-row-count {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
}

/* Ekstralar Slot Kartı Temaları */
.tac-slot-card.tag-extra-rep {
  border-color: rgba(217, 70, 239, 0.85);
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.45);
  background: radial-gradient(circle at center, rgba(217, 70, 239, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-extra-rep .tac-slot-tag {
  background: rgba(217, 70, 239, 0.25);
  color: #f0abfc;
  border: 1px solid rgba(217, 70, 239, 0.6);
}

.tac-slot-card.tag-extra-turbo {
  border-color: rgba(249, 115, 22, 0.85);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.45);
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-extra-turbo .tac-slot-tag {
  background: rgba(249, 115, 22, 0.25);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.6);
}

.tac-slot-card.tag-extra-arol {
  border-color: rgba(6, 182, 212, 0.85);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.45);
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-extra-arol .tac-slot-tag {
  background: rgba(6, 182, 212, 0.25);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.6);
}

.tac-slot-card.tag-extra-cloak {
  border-color: rgba(16, 185, 129, 0.85);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.45);
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-extra-cloak .tac-slot-tag {
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.6);
}

.tac-slot-card.empty.slot-extra-rep { border-color: rgba(217, 70, 239, 0.4); }
.tac-slot-card.empty.slot-extra-turbo { border-color: rgba(249, 115, 22, 0.4); }
.tac-slot-card.empty.slot-extra-arol { border-color: rgba(6, 182, 212, 0.4); }
.tac-slot-card.empty.slot-extra-cloak { border-color: rgba(16, 185, 129, 0.4); }

.tac-slot-top-title.extra-title-rep {
  background: rgba(217, 70, 239, 0.2);
  color: #f0abfc;
  border: 1px solid rgba(217, 70, 239, 0.6);
}
.tac-slot-top-title.extra-title-turbo {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.6);
}
.tac-slot-top-title.extra-title-arol {
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.6);
}
.tac-slot-top-title.extra-title-cloak {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.6);
}

.tac-slot-extra-img {
  width: 44px;
  height: 44px;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.95));
  transform: translateY(2px);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tac-slot-card:hover .tac-slot-extra-img {
  transform: translateY(2px) scale(1.08);
}

.tac-inv-extra-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.95));
  transition: transform 0.18s ease;
}
.tac-inv-row:hover .tac-inv-extra-img {
  transform: scale(1.12);
}

/* Modül Slot Kartı Temaları (Slot Card Styles) */
.tac-slot-card.tag-mod-dmg {
  border-color: rgba(239, 68, 68, 0.85);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.45);
  background: radial-gradient(circle at center, rgba(239, 68, 68, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-mod-dmg .tac-slot-tag {
  background: rgba(239, 68, 68, 0.25);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.6);
}

.tac-slot-card.tag-mod-hp {
  border-color: rgba(34, 197, 94, 0.85);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-mod-hp .tac-slot-tag {
  background: rgba(34, 197, 94, 0.25);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.6);
}

.tac-slot-card.tag-mod-shd {
  border-color: rgba(0, 240, 255, 0.85);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.45);
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-mod-shd .tac-slot-tag {
  background: rgba(0, 240, 255, 0.25);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.6);
}

.tac-slot-card.tag-mod-spc {
  border-color: rgba(245, 158, 11, 0.85);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.45);
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.16) 0%, rgba(15, 23, 42, 0.95) 80%);
}
.tac-slot-card.tag-mod-spc .tac-slot-tag {
  background: rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.6);
}

.tac-slot-card.empty.slot-mod-dmg {
  border-color: rgba(239, 68, 68, 0.4);
}
.tac-slot-card.empty.slot-mod-hp {
  border-color: rgba(34, 197, 94, 0.4);
}
.tac-slot-card.empty.slot-mod-shd {
  border-color: rgba(0, 240, 255, 0.4);
}
.tac-slot-card.empty.slot-mod-spc {
  border-color: rgba(245, 158, 11, 0.4);
}

.tac-slot-top-title.mod-title-dmg {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.6);
}
.tac-slot-top-title.mod-title-hp {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.6);
}
.tac-slot-top-title.mod-title-shd {
  background: rgba(0, 240, 255, 0.2);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.6);
}
.tac-slot-top-title.mod-title-spc {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.6);
}

.tac-slot-mod-img {
  width: 36px;
  height: 36px;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
  transform: translateY(1px);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tac-slot-card:hover .tac-slot-mod-img {
  transform: translateY(1px) scale(1.08);
}

/* Görsel Çerçevesi (Thumb Wrap) */
.tac-inv-thumb-wrap {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: radial-gradient(circle at center, rgba(16, 32, 58, 0.95) 0%, rgba(6, 14, 28, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: transform 0.18s ease;
}

.tac-inv-row:hover .tac-inv-thumb-wrap {
  transform: scale(1.05);
}

/* Lazer ve Jeneratör Görselleri (Genişletilmiş ve Belirgin) */
.tac-inv-row-img {
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.18s ease;
}

.tac-inv-laser-img {
  width: 26px;
  height: 26px;
  transform: rotate(-33deg) scale(1.12);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9)) contrast(1.15) brightness(1.1);
}

.tac-inv-row:hover .tac-inv-laser-img {
  transform: rotate(-33deg) scale(1.20);
}

.tac-inv-gen-img {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9)) contrast(1.1) brightness(1.08);
}

.tac-inv-row:hover .tac-inv-gen-img {
  transform: scale(1.1);
}

.tac-inv-mod-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.95));
  transition: transform 0.18s ease;
}

.tac-inv-row:hover .tac-inv-mod-img {
  transform: scale(1.12);
}

/* Metin Detayları */
.tac-inv-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.tac-inv-row-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tac-inv-row-stat {
  font-size: 9.5px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sağ Eylem Grubu */
.tac-inv-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.tac-inv-row-count {
  font-family: 'Orbitron', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.3px;
}

.tac-inv-row-btn {
  padding: 3px 8px;
  background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
  border: 1px solid #38bdf8;
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.3);
}

.tac-inv-row-btn:hover {
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
  transform: scale(1.04);
}

/* Boş Envanter Durumu */
.tac-inv-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px dashed rgba(56, 189, 248, 0.25);
  border-radius: 6px;
  gap: 4px;
  text-align: center;
}

.tac-inv-empty-icon {
  font-size: 24px;
  opacity: 0.7;
}

.tac-inv-empty-text {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
}

/* Roketatar ve Gemi Performans Bölümü */
.tac-ship-stats-panel {
  display: block;
  background: rgba(8, 16, 32, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 6px;
  padding: 6px 10px;
}

.tac-rocket-box {
  display: none !important;
}

.tac-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.tac-stat-item {
  background: rgba(12, 24, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
}

.tac-stat-label {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
}

.tac-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #00f0ff;
  margin-top: 1px;
}

/* ================= 5. DROİT FİLOSU GÖRÜNÜMÜ ================= */
.ekipman-drones-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 12px;
  align-items: start;
  overflow-y: auto;
  padding-right: 4px;
  max-height: calc(88vh - 160px);
}

.ekipman-drones-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.tac-drones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tac-drone-card {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 16px 18px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.tac-drone-card:hover {
  border-color: #3f3f46;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.8);
}

.tac-drone-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tac-drone-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

.tac-drone-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
}

.tac-drone-slots-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tac-drone-slot {
  width: 56px;
  height: 56px;
  background: #141416;
  border: 1.5px solid #3f3f46;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.tac-drone-slot:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.tac-drone-slot img {
  width: 42px;
  height: 42px;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.8));
  transition: transform 0.15s ease;
}

.tac-drone-slot img[src*="lf-"] {
  transform: rotate(-33deg);
}

.tac-drone-slot:hover img[src*="lf-"] {
  transform: rotate(-33deg) scale(1.08);
}

.tac-drone-slot img[src*="lf-3"] {
  width: 46px;
  height: 46px;
  max-width: 95%;
  max-height: 95%;
  transform: rotate(-33deg) scale(1.12);
}

.tac-drone-slot:hover img[src*="lf-3"] {
  transform: rotate(-33deg) scale(1.18);
}

.tac-drone-roman {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-family: 'Times New Roman', serif;
  font-size: 11.5px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  z-index: 2;
}

/* ================= 6. HANGAR / GEMİLER GÖRÜNÜMÜ ================= */
.tac-ships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.tac-ship-select-card {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.tac-ship-select-card:hover {
  border-color: #3f3f46;
  background: #121215;
  transform: translateY(-2px);
}

.tac-ship-select-card.active {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
}

.tac-ship-card-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tac-ship-card-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
}

.tac-ship-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #f1f5f9;
}

.tac-ship-card-desc {
  font-size: 10px;
  color: #94a3b8;
}

.tac-ship-card-specs {
  font-size: 9.5px;
  color: #38bdf8;
  font-weight: 700;
}

/* ================= BİRLEŞİK TAKTİK DASHBOARD SEKME GÖRÜNÜMLERİ ================= */
.tac-tab-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.tac-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.25);
  flex-shrink: 0;
}

.tac-view-header-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.tac-view-icon {
  font-size: 20px;
}

/* Panel İçi Sekme İçeriklerinin Esnek Boyutlandırması ve Kaydırması */
#tac-tab-shop .shop-content,
#tac-tab-galaxy-gates .gg-content,
#tac-tab-quests .quests-content,
#tac-tab-rankings .rankings-content,
#tac-tab-skylab .skylab-content,
#tac-tab-cargo .cargo-tab-view,
#tac-tab-settings .settings-content,
#tac-tab-profile .profile-info-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
}

#tac-tab-quests .quests-content {
  display: flex;
  gap: 16px;
  min-height: 420px;
}

#tac-tab-cargo .cargo-tab-view {
  max-height: none !important;
}

.tac-tab-view ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.tac-tab-view ::-webkit-scrollbar-track {
  background: rgba(4, 10, 20, 0.6);
  border-radius: 3px;
}

.tac-tab-view ::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.4);
  border-radius: 3px;
}

.tac-tab-view ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 240, 255, 0.8);
}

/* ================= 1. AYARLAR SEKME DÜZENİ (2 SÜTUNLU DOLGUN IZGARA) ================= */
.settings-grid-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.settings-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.settings-group {
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.settings-group:hover {
  border-color: #3f3f46;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.05);
}

.settings-group h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: #f4f4f5;
  letter-spacing: 0.6px;
  margin: 0;
  padding-bottom: 7px;
  border-bottom: 1px solid #27272a;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}

.setting-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.setting-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #f1f5f9;
}

.setting-desc {
  font-size: 10.5px;
  color: #94a3b8;
  line-height: 1.25;
}

.pilot-name-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sci-fi-name-input {
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 4px;
  color: #f4f4f5;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  outline: none;
  transition: all 0.2s ease;
  width: 140px;
}

.sci-fi-name-input:focus {
  border-color: #52525b;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.setting-save-btn {
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.setting-save-btn:hover {
  background: #3f3f46;
  border-color: #71717a;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.volume-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sci-fi-slider {
  accent-color: #a1a1aa;
  cursor: pointer;
}

.volume-percentage {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #f4f4f5;
  min-width: 35px;
}

/* ================= 2. PROFİL SEKME DÜZENİ (a/profilcontainer.png Stili) ================= */
.profile-subnav-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

.prof-subnav-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94a3b8;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.prof-subnav-btn:hover {
  color: #f1f5f9;
}

.prof-subnav-btn.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.profile-container-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* 1. Hero Pilot Kimlik Banner'ı */
.profile-hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.profile-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #71717a 0%, #3f3f46 50%, transparent 100%);
}

.profile-rank-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 96px;
}

.profile-rank-badge-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-rank-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
}

.profile-rank-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}

.profile-pilot-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  margin-left: 16px;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-pilot-name-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.2px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.profile-tag-clan {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #e4e4e7;
  background: #1c1c22;
  border: 1px solid #3f3f46;
  padding: 1px 6px;
  border-radius: 3px;
}

.profile-tag-company {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.profile-tag-company.mmo {
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.profile-tag-company.eic {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.profile-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #a1a1aa;
  font-weight: 700;
}

.profile-bullet-sep {
  color: #52525b;
}

.profile-hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.profile-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

.online-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse 1.5s infinite;
}

.profile-uid-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #131317;
  border: 1px solid #27272a;
  padding: 3px 8px;
  border-radius: 4px;
}

.profile-uid-text {
  font-family: 'Consolas', monospace;
  font-size: 11px;
  color: #d4d4d8;
}

.profile-uid-copy-btn {
  background: #1c1c22;
  border: 1px solid #3f3f46;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.profile-uid-copy-btn:hover {
  background: #27272a;
  border-color: #52525b;
  color: #ffffff;
}

/* 2. Seviye & TP İlerleme Çubuğu */
.profile-xp-track-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 10px 14px;
}

.profile-xp-track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-level-indicator {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.8px;
}

.profile-xp-numbers {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #a1a1aa;
  letter-spacing: 0.5px;
}

.profile-xp-bar-bg {
  width: 100%;
  height: 8px;
  background: #16161a;
  border: 1px solid #27272a;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.profile-xp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #52525b 0%, #ffffff 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  transition: width 0.3s ease;
}

/* 3. Altı İstatistik Kartı Grid (2 x 3) - Siyah, Gri, Beyaz Teması */
.profile-stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.prof-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 12px 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.prof-card:hover {
  transform: translateY(-2px);
  border-color: #52525b;
}

.prof-card-left {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.prof-card-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: #16161b;
  border: 1px solid #27272a;
}

.prof-card-svg-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.prof-card-text {
  display: flex;
  flex-direction: column;
}

.prof-card-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.1;
  color: #ffffff !important;
  text-shadow: none !important;
}

.prof-card-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-top: 2px;
  text-transform: uppercase;
  color: #a1a1aa !important;
}

.prof-card-watermark {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #27272a !important;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* 4. Seyir Defteri (Son Aktivite & Savaş Kayıtları) */
.profile-logbook-section {
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-logbook-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logbook-indicator-bar {
  color: #ffffff;
  font-size: 14px;
}

.logbook-header-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.profile-logbook-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 140px;
  overflow-y: auto;
  padding-right: 4px;
}

.logbook-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.3;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.logbook-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.logbook-time {
  color: #64748b;
  font-family: 'Consolas', monospace;
  font-size: 11.5px;
  font-weight: 600;
}

.logbook-item .bullet {
  color: #38bdf8;
  font-size: 8px;
  opacity: 0.8;
}

.logbook-desc {
  color: #f1f5f9;
  font-weight: 800;
}

.logbook-rewards {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.logbook-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logbook-badge.ep { color: #c084fc; }
.logbook-badge.credits { color: #facc15; }
.logbook-badge.honor { color: #fbbf24; }
.logbook-badge.uridium { color: #38bdf8; }
.logbook-badge.gg { color: #34d399; }


/* ================= 3. SIRALAMA SEKME DÜZENİ (ÖZET KART + TABLO) ================= */
.rankings-user-summary-card {
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.rankings-user-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #71717a 0%, #3f3f46 50%, transparent 100%);
}

.rankings-user-summary-card .summary-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-rank-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-rank-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

.summary-pos {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #f4f4f5;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.summary-pilot-meta {
  display: flex;
  flex-direction: column;
}

.summary-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}

.summary-company-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.summary-company-badge.mmo { color: #f87171; }
.summary-company-badge.eic { color: #38bdf8; }

.rankings-user-summary-card .summary-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.summary-stat-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.summary-stat-box .lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: #71717a;
}

.summary-stat-box .val {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #f4f4f5;
}

.summary-stat-box .val.green {
  color: #4ade80;
  text-shadow: 0 0 6px rgba(74, 222, 128, 0.3);
}

.rankings-table {
  width: 100%;
  border-collapse: collapse;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.rankings-table th {
  background: #131317;
  color: #f4f4f5;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #27272a;
  letter-spacing: 0.6px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.rankings-table td {
  padding: 9px 14px;
  border-bottom: 1px solid #1c1c22;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #d4d4d8;
}

.rankings-table tbody tr:nth-child(even) {
  background: #101014;
}

.rankings-table tbody tr:hover {
  background: #1c1c22;
}

/* ================= 4. GÖREVLER SEKME DÜZENİ ================= */
.quests-content {
  display: flex;
  gap: 16px;
  min-height: 480px;
  height: 100%;
}

.quests-sidebar {
  width: 270px;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.quest-item-btn {
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.quest-item-btn:hover {
  background: #1c1c22;
  border-color: #3f3f46;
  transform: translateX(3px);
}

.quest-item-btn.active {
  background: #22222a;
  border: 1.5px solid #52525b;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.quest-detail-panel {
  flex: 1;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* ================= 5. DÜKKAN & GALAXY GATES ================= */
.shop-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.shop-cat-btn {
  background: #09090b;
  border: 1.5px solid #eab308;
  border-radius: 6px;
  color: #f8fafc;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.shop-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.shop-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  padding-bottom: 8px;
  overflow-x: auto;
}

.shop-cat-btn {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  color: #94a3b8;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.shop-cat-btn:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: #c084fc;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.shop-cat-btn.active {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.28) 0%, rgba(126, 34, 206, 0.35) 100%);
  border-color: #c084fc;
  color: #f5d0fe;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.45);
  border-bottom: 2px solid #e879f9;
}

/* 2 SÜTUNLU MASTER-DETAIL DÜZENİ */
.shop-body-layout {
  display: flex;
  gap: 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* SOL PANEL: ÜRÜN LİSTESİ */
.shop-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  padding-right: 6px;
}

.shop-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(11, 16, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
}

.shop-list-item:hover {
  background: rgba(22, 32, 58, 0.85);
  border-color: rgba(168, 85, 247, 0.45);
  transform: translateX(3px);
}

.shop-list-item.active {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.2) 0%, rgba(11, 16, 30, 0.95) 100%);
  border-color: rgba(168, 85, 247, 0.7);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.2), inset 0 0 10px rgba(168, 85, 247, 0.1);
}

/* market.png Referansındaki Aktif Köşeli Parantez İşaretleri */
.shop-list-item.active::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #e879f9;
  border-left: 2px solid #e879f9;
  pointer-events: none;
}

.shop-list-item.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #e879f9;
  border-right: 2px solid #e879f9;
  pointer-events: none;
}

.shop-list-item.active .shop-list-item-name {
  color: #f5d0fe;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
}

.shop-list-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shop-list-item-icon img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8));
}

.shop-list-item-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #cbd5e1;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* SAĞ PANEL: BÜYÜK VİTRİN & ÖZELLİKLER */
.shop-detail-panel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at 50% 45%, #10162b 0%, #060913 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.shop-detail-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 2px solid #a855f7;
  border-left: 2px solid #a855f7;
  pointer-events: none;
}

.shop-detail-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid #a855f7;
  border-right: 2px solid #a855f7;
  pointer-events: none;
}

.shop-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-shrink: 0;
  margin-bottom: 6px;
  z-index: 2;
}

.shop-detail-title-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-detail-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 23px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
}

.shop-detail-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #c084fc;
  text-transform: uppercase;
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 4px;
  padding: 2px 8px;
  width: fit-content;
}

.shop-detail-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  max-width: 320px;
  text-align: right;
  line-height: 1.35;
}

/* MERKEZİ MOR HOLOGRAM HALKA KAİDE & BÜYÜK GÖRSEL */
.shop-showcase-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 0;
  z-index: 1;
}

.shop-holo-pedestal-purple {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-holo-ring-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(168, 85, 247, 0.85);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.45), inset 0 0 25px rgba(168, 85, 247, 0.25);
}

.shop-holo-ring-inner {
  display: none;
}

.shop-holo-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(147, 51, 234, 0.06) 60%, transparent 75%);
}

.shop-showcase-img {
  max-height: 195px;
  max-width: 250px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.55)) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8));
  animation: floatShowcase 4s ease-in-out infinite;
}

@keyframes floatShowcase {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ÖZELLİK (STAT) KUTULARI */
.shop-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 12px;
  z-index: 2;
}

.shop-stat-card {
  background: rgba(10, 15, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2.5px solid #c084fc;
  border-radius: 4px;
  padding: 8px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.shop-stat-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.shop-stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* ALT BAR: FİYAT VE SATIN ALMA */
.shop-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  flex-shrink: 0;
  z-index: 2;
}

.shop-price-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shop-price-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
}

.shop-price-val {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
}

.shop-price-val.uri {
  color: #00f0ff;
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.45);
}

.shop-price-val.cred {
  color: #fbbf24;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.45);
}

.shop-curr-icon {
  font-size: 18px;
}

.shop-curr-name {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.75;
  font-family: 'Rajdhani', sans-serif;
  margin-left: 2px;
}

.shop-action-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: 1.5px solid #fbbf24;
  border-radius: 6px;
  padding: 10px 32px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  text-transform: uppercase;
}

.shop-action-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(251, 191, 36, 0.65);
}

.shop-action-btn.owned {
  background: rgba(34, 197, 94, 0.15) !important;
  border: 1.5px solid #22c55e !important;
  color: #4ade80 !important;
  cursor: default !important;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.25) !important;
}

/* CEPHANE ÖZEL MARKET2 TASARIMI */
.shop-subcat-header {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
  padding: 8px 6px 4px 6px;
  margin-top: 4px;
}
.shop-subcat-header:first-child {
  margin-top: 0;
}

.shop-ammo-list-item {
  position: relative;
  padding-left: 12px;
  background: rgba(10, 16, 28, 0.85);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.shop-ammo-left-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3.5px;
}

.shop-ammo-list-item.active {
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.shop-ammo-list-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2.5px solid #facc15;
  border-left: 2.5px solid #facc15;
  pointer-events: none;
}

.shop-ammo-list-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-bottom: 2.5px solid #facc15;
  border-right: 2.5px solid #facc15;
  pointer-events: none;
}

.shop-ammo-detail-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 0;
  z-index: 2;
}

.shop-ammo-title {
  font-family: 'Orbitron', monospace, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
}

.shop-ammo-stock {
  font-family: 'Rajdhani', monospace, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
}

.shop-ammo-stock-val {
  font-family: 'Orbitron', monospace, sans-serif;
  color: #f1f5f9;
  font-weight: 800;
}

.shop-ammo-stage {
  flex: 1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
}

.shop-ammo-aura {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.shop-ammo-img {
  max-width: 250px;
  max-height: 180px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9));
  animation: floatAmmo 4s ease-in-out infinite;
}

@keyframes floatAmmo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.shop-ammo-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  background: rgba(13, 19, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3.5px solid #f59e0b;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 12px;
  z-index: 2;
}

.shop-ammo-badge-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.shop-ammo-badge-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
}

.shop-ammo-packs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  z-index: 2;
  width: 100%;
}

.shop-ammo-pack-card {
  background: rgba(11, 16, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.shop-ammo-pack-card:hover {
  background: rgba(16, 24, 42, 0.98);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.shop-pack-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-pack-mini-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8));
}

.shop-pack-amount-text {
  font-family: 'Orbitron', monospace, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
}

.shop-pack-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-pack-coin-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.shop-pack-price-text {
  font-family: 'Orbitron', monospace, sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.shop-ammo-buy-btn {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 3px;
  color: #052e16;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 9px 12px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
  transition: all 0.15s ease;
  margin-top: 4px;
  text-transform: uppercase;
}

.shop-ammo-buy-btn:hover {
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  color: #022c22;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.6);
  transform: translateY(-1px);
}

.shop-ammo-buy-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.gate-card {
  background: linear-gradient(180deg, rgba(12, 24, 48, 0.8) 0%, rgba(6, 14, 28, 0.9) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.4);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
  transition: all 0.2s ease;
}

.gate-card:hover {
  border-color: #c084fc;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.35);
}

.gg-spinner-panel {
  width: 280px;
  background: linear-gradient(180deg, rgba(10, 22, 44, 0.85) 0%, rgba(6, 14, 28, 0.95) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.05);
  flex-shrink: 0;
}

/* ==========================================================================
   BÖLÜM 1: AÇIK ARTIRMA (İHALE) STİLLERİ (ihale/acıkartırma.png Düzeni)
   Siber Cyan, Elektrik Mavisi ve Koyu Cam Teması
   ========================================================================== */

#tac-tab-auction {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  gap: 12px;
  color: #f8fafc;
}

/* 1. Üst Başlık & Canlı 1 Saatlik Sayaç Barı */
.auction-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: linear-gradient(90deg, rgba(8, 16, 32, 0.95) 0%, rgba(13, 27, 54, 0.9) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.auction-header-left .auction-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}

.auction-header-left .auction-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
  margin: 2px 0 0 0;
  letter-spacing: 0.5px;
}

.auction-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auction-btn-refresh {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 4px;
  color: #38bdf8;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auction-btn-refresh:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: #00f0ff;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.auction-btn-refresh.rotating .refresh-icon {
  transform: rotate(360deg);
  transition: transform 0.6s ease;
}

.auction-countdown-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(6, 12, 24, 0.9);
  border: 1.5px solid rgba(0, 240, 255, 0.5);
  border-radius: 6px;
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.2);
}

.auction-countdown-box .countdown-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1px;
}

.auction-countdown-box .countdown-time {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
  letter-spacing: 2px;
}

/* 2. CANLI / SON KAZANANLAR Sekme Çubuğu */
.auction-tabs-nav {
  display: flex;
  gap: 4px;
  background: rgba(8, 14, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 3px;
}

.auction-tab-btn {
  flex: 1;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.auction-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.auction-tab-btn.active {
  background: linear-gradient(90deg, #0284c7 0%, #00f0ff 100%);
  color: #021226;
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.4);
}

/* 3. İki Sütunlu Canlı İhale Düzeni */
.auction-view-container {
  display: flex;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

/* Sol Sütun: Eşya Listesi */
.auction-items-sidebar {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 6px;
  flex-shrink: 0;
}

.auc-category-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auc-group-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1.5px;
  padding-left: 4px;
}

.auc-group-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.auc-item-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(11, 20, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.auc-item-card:hover {
  background: rgba(16, 28, 54, 0.95);
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateX(2px);
}

.auc-item-card.selected {
  background: rgba(14, 34, 68, 0.98);
  border-color: #00f0ff;
  box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.15), 0 0 14px rgba(0, 240, 255, 0.25);
}

.auc-item-card.my-winning {
  border-color: #22c55e;
  box-shadow: inset 0 0 10px rgba(34, 197, 94, 0.15);
}

/* Seçili Eşyadaki Köşeli Braketler (┌ ┘) */
.auc-corner-bl,
.auc-corner-tr {
  position: absolute;
  pointer-events: none;
}

.auc-item-card.selected .auc-corner-bl {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #00f0ff;
  border-left: 2px solid #00f0ff;
}

.auc-item-card.selected .auc-corner-tr {
  bottom: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #00f0ff;
  border-right: 2px solid #00f0ff;
}

.auc-card-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  flex: 1;
  text-align: left;
}

.auc-card-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(4, 9, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auc-card-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.auc-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.auc-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auc-card-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.5px;
}

.auc-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  margin-left: 8px;
}

.auc-card-bid-val {
  font-family: 'Orbitron', monospace;
  font-size: 12.5px;
  font-weight: 800;
  color: #64748b;
}

.auc-card-bid-val.has-bid {
  color: #38bdf8;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.4);
}

.auc-card-bidder {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
}

.auc-card-bidder.winning {
  color: #22c55e;
  font-weight: 800;
}

/* Sağ Sütun: Seçili Eşya Vitrini ve Teklif Verme */
.auction-detail-panel {
  flex: 1;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.75) 0%, rgba(6, 12, 26, 0.85) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.auc-detail-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.auc-showcase-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.auc-showcase-preview-frame {
  position: relative;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(4, 10, 22, 0.95) 80%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.15);
}

.auc-frame-corner {
  position: absolute;
  width: 6px;
  height: 6px;
}

.auc-frame-corner.tl { top: 2px; left: 2px; border-top: 2px solid #00f0ff; border-left: 2px solid #00f0ff; }
.auc-frame-corner.tr { top: 2px; right: 2px; border-top: 2px solid #00f0ff; border-right: 2px solid #00f0ff; }
.auc-frame-corner.bl { bottom: 2px; left: 2px; border-bottom: 2px solid #00f0ff; border-left: 2px solid #00f0ff; }
.auc-frame-corner.br { bottom: 2px; right: 2px; border-bottom: 2px solid #00f0ff; border-right: 2px solid #00f0ff; }

.auc-showcase-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.auc-showcase-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.auc-badge-cat {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 1px;
}

.auc-showcase-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}

.auc-showcase-stat {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #00f0ff;
  letter-spacing: 0.8px;
}

.auc-showcase-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #94a3b8;
  margin: 4px 0 0 0;
  line-height: 1.35;
}

/* İki Bilgi Kutusu: En Yüksek Teklif & Minimum Teklif */
.auc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.auc-stat-box {
  background: rgba(10, 18, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.auc-stat-box.box-winning {
  border-color: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.2);
}

.auc-stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
}

.auc-stat-val {
  font-family: 'Orbitron', monospace;
  font-size: 17px;
  font-weight: 900;
  color: #f8fafc;
}

.auc-stat-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

/* Son Teklifler Listesi */
.auc-recent-section {
  flex: 1;
  min-height: 90px;
  background: rgba(8, 14, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.auc-recent-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
}

.auc-recent-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.auc-recent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  background: rgba(14, 24, 46, 0.7);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
}

.auc-recent-bidder.me {
  color: #22c55e;
  font-weight: 800;
}

.auc-recent-amount {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  color: #38bdf8;
  font-weight: 800;
}

.auc-recent-time {
  font-size: 11px;
  color: #64748b;
}

.auc-recent-empty {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  margin-top: 14px;
}

/* Alt Aksiyon Barı (TEKLİFİN, [-], [+], TEKLİF BUTONU) */
.auc-action-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auc-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.auc-input-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
}

.auc-bid-input {
  width: 100%;
  height: 38px;
  background: rgba(6, 12, 24, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 4px;
  padding: 0 12px;
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  font-weight: 800;
  color: #00f0ff;
  outline: none;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.auc-bid-input:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.auc-step-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.auc-step-controls .auc-step-btn {
  width: 32px;
  height: 18px;
  background: #1e293b;
  border: 1px solid #475569;
  border-radius: 3px;
  color: #f8fafc;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.auc-step-controls .auc-step-btn:hover {
  background: #334155;
  border-color: #00f0ff;
  color: #00f0ff;
}

.auc-step-hint {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

/* Büyük Fütüristik TEKLİF Butonu */
.auc-btn-submit {
  height: 42px;
  padding: 0 28px;
  background: linear-gradient(135deg, #0284c7 0%, #00f0ff 100%);
  border: none;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #021226;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 240, 255, 0.35);
  transition: all 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.auc-btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 240, 255, 0.6);
  filter: brightness(1.15);
}

.auc-btn-submit:active {
  transform: translateY(1px);
}

/* Son Kazananlar Tablosu */
.auction-winners-container {
  flex: 1;
  background: rgba(8, 16, 32, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.auction-winners-header {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1px;
}

.auction-winners-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.auction-winners-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
}

.auction-winners-table th {
  text-align: left;
  padding: 8px 12px;
  background: rgba(14, 26, 50, 0.9);
  color: #64748b;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auction-winners-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.auc-tag-cat {
  padding: 2px 8px;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(2, 132, 199, 0.4);
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 800;
  color: #38bdf8;
}

.winner-me {
  color: #22c55e;
  font-weight: 800;
}

.winner-bid {
  font-family: 'Orbitron', monospace;
  font-weight: 800;
  color: #00f0ff;
}

.winner-status {
  color: #94a3b8;
}

/* ==========================================================================
   BÖLÜM 2: YILDIZ HARİTASI STİLLERİ (GALAKSİ & PORTALLAR)
   ========================================================================== */

#tac-tab-starmap {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  gap: 12px;
}

.starmap-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.starmap-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: 2px;
  margin: 0;
}

.starmap-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
  margin: 2px 0 0 0;
}

.starmap-current-loc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.loc-radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: radarBlink 1.5s infinite;
}

@keyframes radarBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.4); }
}

.starmap-current-loc-badge .loc-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
}

.starmap-current-loc-badge .loc-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #22c55e;
}

/* Filtre Barı */
.starmap-filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.starmap-filter-btn {
  padding: 6px 14px;
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.starmap-filter-btn:hover {
  background: #1c1c22;
  color: #ffffff;
  border-color: #3f3f46;
}

.starmap-filter-btn.active {
  background: #27272a;
  color: #ffffff;
  border-color: #52525b;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.starmap-filter-btn.filter-mmo.active { background: #ea580c; border-color: #f97316; box-shadow: 0 0 12px rgba(249, 115, 22, 0.4); }
.starmap-filter-btn.filter-eic.active { background: #0284c7; border-color: #38bdf8; box-shadow: 0 0 12px rgba(56, 189, 248, 0.4); }
.starmap-filter-btn.filter-pvp.active { background: #9333ea; border-color: #c084fc; box-shadow: 0 0 12px rgba(192, 132, 252, 0.4); }

/* Ana İki Kolonlu Panel */
.starmap-main-container {
  display: flex;
  gap: 14px;
  flex: 1;
  min-height: 0;
}

.starmap-graph-panel {
  flex: 1.3;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.starmap-canvas-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.starmap-svg {
  width: 100%;
  height: 100%;
  max-height: 520px;
}

.animated-route-line {
  animation: routeDash 1.2s linear infinite;
}

@keyframes routeDash {
  to { stroke-dashoffset: -20; }
}

.starmap-radar-pulse,
.starmap-current-ring {
  animation: none !important;
  transform: none !important;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.7));
}

/* Sağ Sektör İnceleme Paneli (Inspector) */
.starmap-inspector-panel {
  flex: 1;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.starmap-inspector-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.starmap-card-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.starmap-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.starmap-card-map-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.starmap-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.starmap-badge.mmo { background: rgba(249, 115, 22, 0.2); border: 1px solid #f97316; color: #f97316; }
.starmap-badge.eic { background: rgba(56, 189, 248, 0.2); border: 1px solid #38bdf8; color: #38bdf8; }
.starmap-badge.pvp { background: rgba(192, 132, 252, 0.2); border: 1px solid #c084fc; color: #c084fc; }

.starmap-card-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.starmap-card-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.starmap-card-meta-grid .meta-box {
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 4px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.starmap-card-meta-grid .lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: #71717a;
}

.starmap-card-meta-grid .val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: #f8fafc;
}

.starmap-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.starmap-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.8px;
}

.starmap-aliens-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.alien-pill {
  padding: 3px 8px;
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #d4d4d8;
}

.alien-pill.boss {
  border-color: #f59e0b;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
}

.alien-pill.uber {
  border-color: #ef4444;
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
}

.alien-pill.none {
  color: #71717a;
  font-style: italic;
}

/* Portal Listesi Kartları */
.starmap-portals-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.starmap-portal-card {
  background: #131317;
  border: 1px solid #27272a;
  border-radius: 5px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.starmap-portal-card.danger { border-color: #ef4444; background: rgba(30, 15, 24, 0.8); }
.starmap-portal-card.uber { border-color: #f59e0b; background: rgba(32, 24, 12, 0.8); }
.starmap-portal-card.cross { border-color: #a855f7; background: rgba(26, 16, 40, 0.8); }

.portal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-target-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 11.5px;
  font-weight: 900;
  color: #38bdf8;
}

.portal-type-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
}

.portal-type-note.normal { color: #94a3b8; }
.portal-type-note.danger { color: #f87171; }
.portal-type-note.uber { color: #fbbf24; }
.portal-type-note.cross { color: #c084fc; }

.portal-coords-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  color: #64748b;
}

.coord-col {
  display: flex;
  align-items: center;
  gap: 4px;
}

.coord-col .c-val {
  font-family: 'Orbitron', monospace;
  font-size: 10.5px;
  color: #cbd5e1;
  font-weight: 700;
}

.coord-arrow {
  color: #38bdf8;
  font-weight: 900;
}

.starmap-portal-empty {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: #64748b;
  text-align: center;
  padding: 10px;
}

.starmap-action-box {
  margin-top: 6px;
}

.starmap-jump-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #00f0ff 100%);
  border: none;
  border-radius: 5px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #021226;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.3);
}

.starmap-jump-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
  transform: translateY(-1px);
}

/* ==========================================================================
   BÖLÜM 3: KLAN STİLLERİ (ÖN TANIMLI KLAN OLMADAN - TEMİZ BOŞ DURUM)
   ========================================================================== */

#tac-tab-clan {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  gap: 14px;
}

.clan-header-bar {
  padding: 8px 14px;
  background: linear-gradient(90deg, rgba(8, 16, 32, 0.95) 0%, rgba(13, 27, 54, 0.9) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 6px;
}

.clan-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: 2px;
  margin: 0;
}

.clan-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
  margin: 2px 0 0 0;
}

.clan-empty-state-wrapper {
  flex: 1;
  background: radial-gradient(circle at center, rgba(14, 28, 56, 0.8) 0%, rgba(6, 14, 28, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.6);
}

.clan-empty-icon-box {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.clan-shield-big {
  font-size: 54px;
  filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.6));
}

.clan-shield-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, transparent 70%);
  animation: tacPulse 2.5s infinite ease-in-out;
}

.clan-empty-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}

.clan-empty-desc {
  max-width: 540px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 26px 0;
}

.clan-action-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 600px;
  width: 100%;
}

.clan-action-card {
  background: rgba(11, 20, 40, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all 0.2s ease;
}

.clan-action-card:hover {
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.clan-action-card .card-icon {
  font-size: 28px;
}

.clan-action-card .card-info h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #38bdf8;
  margin: 0 0 4px 0;
}

.clan-action-card .card-info p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

.clan-action-card .req-fee {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #f59e0b;
  margin-top: 5px;
}

.clan-card-btn {
  width: 100%;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clan-card-btn:hover {
  border-color: #00f0ff;
  color: #00f0ff;
}

/* ==========================================================================
   BÖLÜM 4: VIP STİLLERİ (YAKINDA EKRANI)
   ========================================================================== */

#tac-tab-vip {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.vip-coming-soon-wrapper {
  flex: 1;
  background: radial-gradient(circle at center, rgba(38, 28, 8, 0.7) 0%, rgba(6, 10, 20, 0.95) 85%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  box-shadow: inset 0 0 35px rgba(245, 158, 11, 0.08), 0 0 25px rgba(0, 0, 0, 0.8);
}

.vip-crown-holder {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.vip-crown-icon {
  font-size: 60px;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
  animation: crownFloat 2.5s infinite ease-in-out;
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}

.vip-crown-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 70%);
}

.vip-badge-ribbon {
  padding: 4px 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid #f59e0b;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.vip-big-soon {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 6px;
  margin: 0 0 8px 0;
  text-shadow: 0 0 25px rgba(251, 191, 36, 0.6), 0 0 45px rgba(251, 191, 36, 0.3);
}

.vip-soon-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #cbd5e1;
  max-width: 480px;
  line-height: 1.45;
  margin: 0 0 24px 0;
}

.vip-perks-preview-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 580px;
}

.vip-perks-preview-pills .perk-pill {
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #e2e8f0;
}

/* ==========================================================================
   KLAN SİSTEMİ (CLAN SYSTEM) - KOYU METALİK GRİ VE SARI/YEŞİL/KIRMIZI DİPLOMASİ
   ========================================================================== */

.clan-system-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.clan-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 12px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.clan-title {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: 1.5px;
  margin: 0;
}

.clan-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: #94a3b8;
  margin: 2px 0 0 0;
}

.clan-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 20px;
  padding: 4px 12px;
}

.clan-pill-tag {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 13px;
  color: #facc15;
}

.clan-pill-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #f8fafc;
}

.clan-pill-role {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  background: #27272a;
  padding: 2px 6px;
  border-radius: 10px;
}
.clan-pill-role.leader {
  color: #000000;
  background: #facc15;
  font-weight: 800;
}

/* Sekmeler */
.clan-subnav-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #27272a;
  padding-bottom: 8px;
}

.clan-subnav-btn {
  background: #09090b;
  border: 1px solid #27272a;
  color: #a1a1aa;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.clan-subnav-btn:hover {
  background: #18181b;
  border-color: #52525b;
  color: #ffffff;
}

.clan-subnav-btn.active {
  background: #27272a;
  border-color: #facc15;
  color: #facc15;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.25);
}

/* Sıralama Tablosu ve Detay Paneli Düzeni */
.clan-leaderboard-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 14px;
  align-items: start;
}

.clan-table-wrap {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 6px;
  overflow: hidden;
  max-height: 480px;
  overflow-y: auto;
}

.clan-rank-table, .clan-members-table, .clan-diplomacy-table, .clan-applications-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
}

.clan-rank-table thead, .clan-members-table thead, .clan-diplomacy-table thead, .clan-applications-table thead {
  background: #121215;
  position: sticky;
  top: 0;
  z-index: 2;
}

.clan-rank-table th, .clan-members-table th, .clan-diplomacy-table th, .clan-applications-table th {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.8px;
  border-bottom: 1px solid #27272a;
}

.clan-rank-table td, .clan-members-table td, .clan-diplomacy-table td, .clan-applications-table td {
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #f8fafc;
  border-bottom: 1px solid rgba(39, 39, 42, 0.6);
}

.clan-row {
  cursor: pointer;
  transition: background 0.15s ease;
}

.clan-row:hover {
  background: #18181b;
}

.clan-row.selected {
  background: rgba(250, 204, 21, 0.08);
  border-left: 3px solid #facc15;
}

.clan-row.is-my-clan {
  background: rgba(34, 197, 94, 0.08);
}

.clan-col-rank {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  color: #facc15;
  font-size: 12px;
  width: 45px;
}

.clan-tag-badge {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 12px;
  background: #18181b;
  border: 1px solid #3f3f46;
  padding: 2px 6px;
  border-radius: 3px;
  color: #e4e4e7;
}

.clan-tag-badge.alliance {
  border-color: #22c55e;
  color: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.clan-tag-badge.war {
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.clan-comp-tag {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 3px;
}
.clan-comp-tag.mmo { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.4); }
.clan-comp-tag.eic { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); }

.clan-col-pts {
  font-weight: 800;
  color: #facc15;
}

/* Klan Detay Paneli */
.clan-detail-panel {
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clan-detail-panel.empty {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: #a1a1aa;
}

.clan-detail-panel.empty .empty-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #27272a;
  padding-bottom: 10px;
}

.detail-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-tag {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 900;
  color: #facc15;
}

.detail-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #f8fafc;
  margin: 0;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 4px;
  padding: 10px;
}

.detail-meta-item {
  display: flex;
  flex-direction: column;
}

.detail-meta-item .lbl {
  font-size: 11px;
  color: #a1a1aa;
}

.detail-meta-item .val {
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
}
.detail-meta-item .val.gold { color: #facc15; }

.detail-desc-box {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 4px;
  padding: 10px;
}

.detail-desc-box h4 {
  margin: 0 0 6px 0;
  font-size: 12px;
  color: #a1a1aa;
}

.detail-desc-box p {
  margin: 0;
  font-size: 13px;
  color: #e4e4e7;
  line-height: 1.4;
}

.btn-clan-apply {
  width: 100%;
  padding: 10px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border: 1px solid #4ade80;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.btn-clan-apply:hover {
  background: #22c55e;
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.7);
}

.already-member-badge {
  display: block;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #a1a1aa;
  padding: 8px;
}

/* Klanım Sayfası */
.my-clan-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.my-clan-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 16px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.summary-col-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.my-clan-tag-badge {
  font-family: 'Orbitron', monospace;
  font-size: 26px;
  font-weight: 900;
  color: #facc15;
  background: #18181b;
  border: 1.5px solid #3f3f46;
  padding: 6px 16px;
  border-radius: 6px;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.my-clan-name-meta h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #f8fafc;
}

.my-clan-name-meta p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: #94a3b8;
}

.summary-col-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.my-clan-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.my-clan-stat .lbl {
  font-size: 11px;
  color: #a1a1aa;
}

.my-clan-stat .val {
  font-size: 16px;
  font-weight: 800;
}
.my-clan-stat .val.gold { color: #facc15; }

.btn-clan-leave {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-clan-leave:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.my-clan-members-section, .diplomacy-list-card, .clan-applications-container {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 6px;
  overflow: hidden;
}

.section-title-bar {
  padding: 12px 16px;
  background: #121215;
  border-bottom: 1px solid #27272a;
}
.section-title-bar h4 { margin: 0; font-size: 14px; color: #f8fafc; }
.section-title-bar p { margin: 2px 0 0 0; font-size: 12px; color: #a1a1aa; }

.btn-clan-kick {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #fca5a5;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-clan-kick:hover {
  background: #dc2626;
  color: #ffffff;
}

/* Diplomasi */
.clan-diplomacy-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diplomacy-action-card {
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 16px;
}
.diplomacy-action-card h4 { margin: 0 0 4px 0; color: #facc15; font-size: 14px; }
.diplomacy-action-card p { margin: 0 0 12px 0; color: #94a3b8; font-size: 12.5px; }

.dip-form-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clan-sci-fi-select, .clan-sci-fi-input, .clan-sci-fi-textarea {
  background: #09090b;
  border: 1.5px solid #3f3f46;
  border-radius: 4px;
  color: #f8fafc;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.2s ease;
}

.clan-sci-fi-select:focus, .clan-sci-fi-input:focus, .clan-sci-fi-textarea:focus {
  border-color: #facc15;
}

.btn-dip-war {
  background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%);
  border: 1px solid #ef4444;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-dip-war:hover {
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.7);
}

.btn-dip-alliance {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
  border: 1px solid #22c55e;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-dip-alliance:hover {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

.dip-status-badge {
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
}
.dip-status-badge.war { background: rgba(239, 68, 68, 0.2); color: #ef4444; border: 1px solid #ef4444; }
.dip-status-badge.alliance { background: rgba(34, 197, 94, 0.2); color: #22c55e; border: 1px solid #22c55e; }

.btn-dip-cancel {
  background: #27272a;
  border: 1px solid #3f3f46;
  color: #e4e4e7;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
}
.btn-dip-cancel:hover {
  background: #3f3f46;
}

/* Başvurular */
.btn-app-action {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-app-action.accept {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid #22c55e;
  color: #4ade80;
}
.btn-app-action.accept:hover {
  background: #16a34a;
  color: #ffffff;
}
.btn-app-action.reject {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #f87171;
}
.btn-app-action.reject:hover {
  background: #dc2626;
  color: #ffffff;
}

/* Klan Kur */
.clan-create-container {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.clan-create-card {
  width: 100%;
  max-width: 520px;
  background: #0d0d11;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.card-icon-header {
  text-align: center;
  margin-bottom: 20px;
}
.card-icon-header .big-shield { font-size: 40px; }
.card-icon-header h3 { font-family: 'Orbitron', monospace; font-size: 16px; margin: 8px 0 4px 0; color: #f8fafc; }
.card-icon-header p { font-size: 12.5px; color: #a1a1aa; margin: 0; }

.clan-create-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clan-create-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clan-create-form label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #e4e4e7;
}

.clan-create-form .hint {
  font-size: 11px;
  color: #a1a1aa;
}

.clan-sci-fi-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-clan-submit-create {
  margin-top: 10px;
  padding: 12px;
  background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
  border: 1px solid #facc15;
  border-radius: 4px;
  font-family: 'Orbitron', monospace;
  font-size: 13.5px;
  font-weight: 900;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.4);
}

.btn-clan-submit-create:hover {
  background: #facc15;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
  transform: translateY(-1px);
}




