/* ============================================================
   TML KENAR SEKMELERİ
   Sağ kenara yapışık, dikey yazılı sekmeler (Liderlik/Challenge tarzı)
============================================================ */
.tks-wrap {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.tks-sekme {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px;
  min-width: 34px;
  border-radius: 12px 0 0 12px;
  box-shadow: -3px 3px 14px rgba(0,0,0,.28);
  text-decoration: none;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  transition: transform .15s ease, box-shadow .15s ease;
}
.tks-sekme:hover {
  transform: translateX(-4px);
  box-shadow: -5px 4px 18px rgba(0,0,0,.34);
  color: #ffffff;
}

.tks-ikon {
  font-size: 15px;
  line-height: 1;
}

.tks-metin {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .tks-sekme { padding: 11px 6px; }
  .tks-metin { font-size: 11px; }
  .tks-ikon  { font-size: 13px; }
}
