* { box-sizing: border-box; }
html { height: 100%; }
/* Genel gizleme sınıfı — auth.js/app.js birçok yerde classList.add("hidden")
   çağırıyor (ör. form-kod, form-giris arası geçiş) ama bunun için genel bir
   kural hiç tanımlanmamıştı; sadece bazı öğelere özel (.mod-btn.hidden vb.)
   kural vardı. Bu yüzden "kod doğrula" formu login sayfasında HER ZAMAN
   görünür duruyordu — görsel iyileştirme sırasında fark edildi. */
.hidden { display: none; }
body {
  margin: 0;
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;
  background: #12141c;
  color: #e8e8f0;
  height: 100vh;
  height: 100dvh; /* mobil Safari'de adres çubuğunu doğru hesaba katar */
  overflow: hidden;
}
/* login/register/sifremi-unuttum sayfaları (#auth-app) — kullanılabilirlik
   incelemesinde bulundu: yukarıdaki sabit height+overflow:hidden, index.html
   gibi tek-ekrana-sığan uygulamalar için doğru ama #auth-app kartı (özellikle
   kayıt formunda uzun onay metinleri yüzünden) mobilde tek ekrana sığmıyor.
   erisilebilirlik-widget.js zaten body'ye padding-bottom (78px, "♿"/"💬"
   butonlarının altına binmemesi için) uyguluyordu ama sabit height+
   overflow:hidden altında bu padding'in scrollHeight'a hiç yansımadığı,
   dolayısıyla kartın gerçek altına kaydırıldığında butonların hâlâ son
   satırlara bindiği ortaya çıktı. #auth-app'li sayfalarda body'yi normal
   (içeriğe göre boy alan, kendi kendine kayan) bir kutuya çeviriyoruz. */
body:has(#auth-app) {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
}

/* tanitim.html'deki marka rozetiyle aynı — başlıklarda tekrar kullanılıyor */
.logo-isareti {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  background: linear-gradient(135deg, #e8c179, #c9a15a 60%, #9c7a3c);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(201, 161, 90, .35);
  margin-right: 8px; vertical-align: -6px;
}

/* İnce, altın tonlu özel kaydırma çubuğu (WebKit/Blink) — desteklenmeyen
   tarayıcılarda (Firefox vb.) sessizce varsayılana düşer, işlevi etkilemez. */
#mesajlar::-webkit-scrollbar, .kilavuz-icerik::-webkit-scrollbar, #gecmis-liste::-webkit-scrollbar {
  width: 8px;
}
#mesajlar::-webkit-scrollbar-track, .kilavuz-icerik::-webkit-scrollbar-track, #gecmis-liste::-webkit-scrollbar-track {
  background: transparent;
}
#mesajlar::-webkit-scrollbar-thumb, .kilavuz-icerik::-webkit-scrollbar-thumb, #gecmis-liste::-webkit-scrollbar-thumb {
  background: #2c2f3a; border-radius: 8px;
}
#mesajlar::-webkit-scrollbar-thumb:hover, .kilavuz-icerik::-webkit-scrollbar-thumb:hover, #gecmis-liste::-webkit-scrollbar-thumb:hover {
  background: #3a3d4a;
}
#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2d3a;
}
h1 { font-size: 18px; margin: 0; color: #c9a15a; display: flex; align-items: center; white-space: nowrap; }
/* flex-wrap: bu satır (logo+başlık+durum noktası+maliyet/kredi rozetleri)
   dar bir masaüstü penceresinde de (sadece telefonda değil) rozetlerin
   header'ın geri kalanıyla üst üste binmesini/sıkışmasını önlüyor —
   sığmayan öğe kendi satırına düşüyor, hiçbir öğe kırpılmıyor. */
.baslik-durum { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; row-gap: 6px; }
.durum-noktasi { font-size: 11px; color: #666; transition: color 0.3s, text-shadow 0.3s; }
.durum-noktasi.online { color: #4caf6d; text-shadow: 0 0 6px rgba(76, 175, 109, .6); }
.durum-noktasi.offline { color: #d05050; text-shadow: 0 0 6px rgba(208, 80, 80, .5); }
/* white-space:nowrap + flex-shrink:0: bu rozetler flex satırında sıkışınca
   metinlerinin ("$0.04 · 3.2 bin token" gibi) kendi içinde rastgele yerden
   kırılıp dağınık görünmesinin asıl nedeniydi — sadece mobil medya
   sorgusunda düzeltilmişti, masaüstünde de aynı sorun vardı. */
.maliyet-etiketi {
  font-size: 11px; color: #c9a15a; border: 1px solid #3a3d4a; border-radius: 10px;
  padding: 2px 8px; white-space: nowrap; flex-shrink: 0;
}
.maliyet-etiketi.hidden { display: none; }
.maliyet-etiketi.dusuk-bakiye { color: #d05050; border-color: #6b2d2d; }
#bakiye-etiketi { cursor: pointer; }
#bakiye-etiketi:hover { border-color: #c9a15a; }
.mod-secici { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.mod-btn {
  background: transparent;
  border: 1px solid #3a3d4a;
  color: #b8b8c8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease, transform .1s ease;
}
.mod-btn:hover { border-color: #c9a15a; color: #e8e8f0; }
.mod-btn:active { transform: scale(.97); }
.mod-btn:focus-visible { outline: 2px solid #c9a15a; outline-offset: 2px; }
.mod-btn.hidden { display: none; }
.mod-btn.active {
  background: #c9a15a; color: #12141c; border-color: #c9a15a; font-weight: 600;
  box-shadow: 0 2px 12px rgba(201, 161, 90, .3);
}
.mod-btn.active:hover { border-color: #d9b36e; background: #d9b36e; }

/* Vaka Danışmanı/Pratik Modu/AI Terapist — üç ayrı kullanım biçimi (mesleki
   danışmanlık / pratik-eğitim / kendini keşfetme), bu yüzden ↻Yeni/📂Geçmiş
   gibi araç butonlarıyla aynı satırda eşit ağırlıkta pilller olarak
   durmamalılar (Berat'ın geri bildirimi). Kendi geniş sekme çubuklarına
   taşındılar — header'ın araç satırından ayrı, daha belirgin bir birincil
   gezinme. */
/* 13 Eylül 2026 — Berat'ın isteği: sayfa artık doğrudan Vaka Danışmanı'yla
   değil, mod seçim kartları + bakiye/davet/kaynak güncelliği istatistikleri +
   son oturumların olduğu bir anasayfayla açılıyor (bkz. app.js dashboardGoster). */
.dashboard { flex: 1; overflow-y: auto; padding: 4px 0 16px; display: flex; flex-direction: column; gap: 22px; }
.dashboard.hidden { display: none; }
.dashboard-kartlar { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.dashboard-kart {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  background: #1c1e28; border: 1px solid #2a2d3a; border-radius: 14px; padding: 18px;
  text-align: left; cursor: pointer; font: inherit; color: inherit;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.dashboard-kart:hover { border-color: #c9a15a; background: #20222e; }
.dashboard-kart:active { transform: scale(.98); }
.dashboard-kart:focus-visible { outline: 2px solid #c9a15a; outline-offset: 2px; }
.dashboard-kart-ikon { font-size: 26px; }
.dashboard-kart-baslik { font-size: 15px; font-weight: 600; color: #e8e8f0; }
.dashboard-kart-aciklama { font-size: 12.5px; color: #9a9aa8; line-height: 1.4; }

.dashboard-istatistikler { display: flex; flex-wrap: wrap; gap: 10px; }
.dashboard-istatistik {
  flex: 1; min-width: 140px; background: #1b1e29; border: 1px solid #2c2f3a; border-radius: 10px;
  padding: 10px 14px;
}
.dashboard-istatistik-etiket { font-size: 11px; color: #9a9aa8; display: block; margin-bottom: 2px; }
.dashboard-istatistik-deger { font-size: 15px; font-weight: 600; color: #c9a15a; }

.dashboard-bolum-baslik { font-size: 13px; color: #9a9aa8; font-weight: 600; margin: 0 0 8px; }
.dashboard-son-oturumlar { border: 1px solid #2a2d3a; border-radius: 10px; background: #1c1e28; overflow: hidden; }
.dashboard-oturum-satiri { width: 100%; border-radius: 0; }
.dashboard-oturum-satiri:not(:last-child) { border-bottom: 1px solid #2a2d3a; }
.dashboard-oturum-satiri:hover { background: #2a2d3a; }

.ana-sekmeler {
  display: flex;
  border-bottom: 1px solid #2a2d3a;
  margin-bottom: 12px;
}
.sekme-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #9a9aa8;
  padding: 13px 8px 11px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color .15s ease;
}
.sekme-btn::after {
  content: "";
  position: absolute; left: 18%; right: 18%; bottom: -1px; height: 2px;
  background: transparent; border-radius: 2px 2px 0 0;
  transition: background .15s ease;
}
.sekme-btn:hover { color: #e8e8f0; }
.sekme-btn:active { transform: translateY(1px); }
.sekme-btn:focus-visible { outline: 2px solid #c9a15a; outline-offset: -2px; }
.sekme-btn.active { color: #c9a15a; }
.sekme-btn.active::after { background: #c9a15a; box-shadow: 0 0 8px rgba(201, 161, 90, .5); }

.diger-menu-kapsayici { position: relative; }
.diger-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1c1e28;
  border: 1px solid #3a3d4a;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 210px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.diger-menu.hidden { display: none; }
.menu-oge {
  display: block;
  background: transparent;
  border: none;
  color: #e8e8f0;
  text-align: left;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: background .12s ease;
}
.menu-oge:hover { background: #2a2d3a; }
/* Sadece Vaka Danışmanı'nda (bazen sadece formülasyon tamamlandıktan sonra)
   anlamlı olan öğeler — tıklandığında zaten net bir uyarı gösteriyorlardı
   ama önceden bunu görsel olarak hiç belli etmiyorlardı, kullanıcı deneyip
   "neden çalışmıyor" diye şaşırabiliyordu. */
.menu-oge.menu-oge-pasif { color: #6a6a78; }
.menu-oge.menu-oge-pasif:hover { background: transparent; color: #8a8a98; }
.menu-oge.active { color: #c9a15a; }
.menu-oge.hidden { display: none; }
.menu-ayrac { height: 1px; background: #2a2d3a; margin: 4px 6px; }

.kilavuz-icerik { overflow-y: auto; padding: 12px 14px; font-size: 13px; line-height: 1.6; color: #d0d0d8; }
.kilavuz-icerik p { margin: 0 0 12px; }
.kilavuz-icerik p:last-child { margin-bottom: 0; }
.kilavuz-icerik strong { color: #c9a15a; }
.kaynak-guncellik { font-size: 11px; color: #9a9aa8; border-top: 1px solid #2c2f3a; padding-top: 10px; margin-top: 4px !important; }

.ayarlar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #2a2d3a;
}
.ayarlar.hidden { display: none; }
#pratik-konu { flex: 1; min-width: 140px; padding: 8px 10px; border-radius: 8px; border: 1px solid #3a3d4a; background: #1c1e28; color: #e8e8f0; transition: border-color .15s ease; }
#pratik-tarz, #pratik-profil, #pratik-zorluk { padding: 8px 10px; border-radius: 8px; border: 1px solid #3a3d4a; background: #1c1e28; color: #e8e8f0; transition: border-color .15s ease; }
#pratik-konu:focus, #pratik-tarz:focus, #pratik-profil:focus, #pratik-zorluk:focus {
  outline: none; border-color: #c9a15a; box-shadow: 0 0 0 3px rgba(201, 161, 90, .15);
}
#pratik-baslat {
  background: #c9a15a; color: #12141c; border: none; border-radius: 8px; padding: 8px 14px;
  font-weight: 600; cursor: pointer; box-shadow: 0 2px 12px rgba(201, 161, 90, .3);
  transition: background .15s ease, transform .1s ease;
}
#pratik-baslat:hover { background: #d9b36e; }
#pratik-baslat:active { transform: scale(.97); }

.uyari {
  background: #4a2020;
  border: 1px solid #a04040;
  color: #ffcccc;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 13px;
}
.uyari.hidden { display: none; }

.gecmis-panel {
  border: 1px solid #3a3d4a;
  border-radius: 8px;
  margin-top: 12px;
  background: #1c1e28;
  max-height: 320px;
  display: flex;
  flex-direction: column;
}
.gecmis-panel.hidden { display: none; }
.gecmis-baslik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #2a2d3a;
  font-size: 13px;
  color: #c9a15a;
  font-weight: 600;
}
#gecmis-liste { overflow-y: auto; padding: 6px; }
/* Satır artık bir <button> DEĞİL — içinde iki ayrı buton var (devam et +
   yeniden adlandır), bir <button> içine başka bir <button> konulamaz. */
.gecmis-satir {
  display: flex; align-items: stretch; gap: 4px;
  border-bottom: 1px solid #2a2d3a;
  transition: background .12s ease;
}
.gecmis-satir:last-child { border-bottom: none; }
.gecmis-satir:hover { background: #2a2d3a; }
.gecmis-satir-icerik {
  flex: 1; min-width: 0; display: block; text-align: left;
  background: transparent; border: none; padding: 10px 8px;
  cursor: pointer; color: #e8e8f0; font: inherit;
}
.gecmis-satir-icerik:disabled { cursor: default; }
.gecmis-satir .gecmis-tarih { font-size: 11px; color: #9a9aa8; display: block; margin-bottom: 3px; }
.gecmis-satir .gecmis-ozet { font-size: 13px; color: #b8b8c8; overflow: hidden; text-overflow: ellipsis; }
/* Otomatik üretilmiş konu başlığı (ChatGPT/Claude chat'teki gibi) — varsa
   ana satır bu olur, tarih küçük/soluk olarak yanına düşer. */
.gecmis-satir .gecmis-baslik {
  font-size: 13.5px; color: #e8e8f0; font-weight: 600; display: block; margin-bottom: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gecmis-satir .gecmis-tarih-yaninda { display: block; margin-bottom: 0; }
.gecmis-yeniden-adlandir {
  flex: none; align-self: center; margin-right: 6px;
  background: transparent; border: 1px solid transparent; border-radius: 6px;
  color: #6a6a78; font-size: 14px; padding: 4px 8px; cursor: pointer;
  transition: color .12s ease, border-color .12s ease;
}
.gecmis-yeniden-adlandir:hover { color: #c9a15a; border-color: #3a3d4a; }
.gecmis-baslik-girdi {
  width: 100%; background: #12141c; border: 1px solid #c9a15a; border-radius: 6px;
  color: #e8e8f0; font-size: 13.5px; padding: 6px 8px; font-family: inherit;
}
.gecmis-baslik-girdi:focus { outline: none; box-shadow: 0 0 0 3px rgba(201, 161, 90, .15); }
.gecmis-bos { padding: 16px; text-align: center; color: #6a6a78; font-size: 13px; }

#mesajlar {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; white-space: pre-wrap; line-height: 1.5; font-size: 14px; box-shadow: 0 2px 10px rgba(0, 0, 0, .18); }
.msg.ben { align-self: flex-end; background: linear-gradient(165deg, #2f5578, #2a4d6e); color: #eaf2fa; border-bottom-right-radius: 4px; }
.msg.bot { align-self: flex-start; background: #1c1e28; border: 1px solid #2a2d3a; border-bottom-left-radius: 4px; }
.msg.dusunuyor {
  align-self: flex-start; color: #888; font-style: italic; font-size: 13px; box-shadow: none;
  animation: dusunme-nefesi 1.8s ease-in-out infinite;
}
@keyframes dusunme-nefesi { 0%, 100% { opacity: .65; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .msg.dusunuyor { animation: none; }
}

#giris-alani { display: flex; gap: 8px; padding-top: 8px; }
#mesaj-kutusu {
  flex: 1; resize: none; padding: 10px 12px; border-radius: 10px;
  border: 1px solid #3a3d4a; background: #1c1e28; color: #e8e8f0; font-size: 14px; font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
#mesaj-kutusu:focus {
  outline: none; border-color: #c9a15a; box-shadow: 0 0 0 3px rgba(201, 161, 90, .15);
}
#gonder-btn {
  background: #c9a15a; color: #12141c; border: none; border-radius: 10px; padding: 0 18px;
  font-weight: 600; cursor: pointer; box-shadow: 0 2px 12px rgba(201, 161, 90, .3);
  transition: background .15s ease, transform .1s ease;
}
#gonder-btn:hover:not(:disabled) { background: #d9b36e; }
#gonder-btn:active:not(:disabled) { transform: scale(.96); }
#gonder-btn:disabled { opacity: 0.5; cursor: default; box-shadow: none; }
#mikrofon-btn {
  background: #1c1e28; color: #e8e8f0; border: 1px solid #3a3d4a; border-radius: 10px;
  padding: 0 14px; font-size: 16px; cursor: pointer; transition: border-color .15s ease, transform .1s ease;
}
#mikrofon-btn:hover { border-color: #c9a15a; }
#mikrofon-btn:active { transform: scale(.94); }
#mikrofon-btn.dinliyor { background: #a04040; border-color: #d05050; animation: nabiz 1s infinite; }
@keyframes nabiz { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.alt-not { font-size: 11px; color: #6a6a78; text-align: center; margin: 8px 0 0; }

#auth-app {
  max-width: 360px;
  margin: 80px auto;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #171a24;
  border: 1px solid #262a36;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
  position: relative;
}
#auth-app::before {
  content: ""; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 320px; height: 200px; pointer-events: none; z-index: 0; border-radius: inherit;
  background: radial-gradient(circle, rgba(201, 161, 90, .16), transparent 65%);
  filter: blur(24px);
}
#auth-app > * { position: relative; z-index: 1; }
#auth-app h1 {
  font-size: 20px; color: #c9a15a; text-align: center; margin: 0 0 12px;
  display: flex; align-items: center; justify-content: center;
}
#auth-app form { display: flex; flex-direction: column; gap: 10px; }
#auth-app form.hidden { display: none; }
.alan-etiketi {
  display: flex; flex-direction: column; gap: 5px;
  color: #cfcfd8; font-size: 12px; font-weight: 600;
}
.alan-etiketi .alan-ipucu { color: #8f8f9d; font-size: 11px; font-weight: 400; }
#auth-app input {
  padding: 10px 12px; border-radius: 8px; border: 1px solid #3a3d4a;
  background: #1c1e28; color: #e8e8f0; font-size: 14px; font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
#auth-app input:focus {
  outline: none; border-color: #c9a15a; box-shadow: 0 0 0 3px rgba(201, 161, 90, .15);
}
#auth-app button[type="submit"] {
  background: #c9a15a; color: #12141c; border: none; border-radius: 8px;
  padding: 10px; font-weight: 600; cursor: pointer; font-size: 14px;
  box-shadow: 0 2px 12px rgba(201, 161, 90, .3);
  transition: background .15s ease, transform .1s ease;
}
#auth-app button[type="submit"]:hover { background: #d9b36e; }
#auth-app button[type="submit"]:active { transform: scale(.98); }
.hata { color: #ff8080; font-size: 13px; text-align: center; }
.hata.hidden { display: none; }
.alt-link { text-align: center; font-size: 13px; color: #9a9aa8; }
.alt-link a { color: #c9a15a; }

.gizlilik-notu {
  background: #1c1e28; border: 1px solid #3a3d4a; border-radius: 8px;
  padding: 12px 14px; font-size: 12px; color: #b8b8c8; line-height: 1.5;
}
.gizlilik-notu p { margin: 0 0 6px; color: #e8e8f0; }
.gizlilik-notu ul { margin: 0; padding-left: 18px; }
.gizlilik-notu li { margin-bottom: 4px; }
.gizlilik-notu li:last-child { margin-bottom: 0; }
.gizlilik-notu a, .onay-satiri a {
  color: #d9b36e; text-decoration: underline; text-underline-offset: 2px;
}
.gizlilik-notu a:hover, .onay-satiri a:hover { color: #f0ce8c; }
.gizlilik-notu a:focus-visible, .onay-satiri a:focus-visible {
  outline: 2px solid #d9b36e; outline-offset: 2px; border-radius: 2px;
}
.onay-satiri {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: #b8b8c8; line-height: 1.4; cursor: pointer;
}
.onay-satiri input { width: auto; margin-top: 2px; flex-shrink: 0; }

/* Kısa ömürlü bildirim (ör. "panoya kopyalandı") — uyari-banner'dan bağımsız,
   kendiliğinden kaybolur. */
.toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #1c1e28; border: 1px solid #3a3d4a; color: #e8e8f0;
  padding: 8px 16px; border-radius: 8px; font-size: 13px; z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.toast.gorunur { opacity: 1; }

/* Mobil (telefon) ekranlarda başlık alanı çok yer kaplamasın diye */
@media (max-width: 480px) {
  #app { padding: 10px; }
  header { flex-wrap: wrap; gap: 6px; padding-bottom: 8px; }
  /* Logo+başlık+durum noktası, maliyet/kredi rozetleriyle aynı dar satıra
     sıkışıp rozetlerin kendi içinde satır kırmasına (kelimelerin üst üste
     binmiş gibi görünmesine) yol açıyordu — geri bildirim: "yukarıdaki
     kredi ve yanındaki sekmeler karışık duruyor". Artık bu satır kendi
     içinde serbestçe kırılıyor: rozetler sığmayınca kendi satırına düşüyor,
     tek satırda sıkışmıyor. */
  .baslik-durum { flex-basis: 100%; flex-wrap: wrap; row-gap: 6px; }
  h1 { font-size: 15px; }
  .mod-secici { justify-content: flex-start; gap: 5px; }
  .mod-btn { padding: 5px 9px; font-size: 11px; }
  .maliyet-etiketi { font-size: 10px; padding: 3px 8px; white-space: nowrap; }
  .sekme-btn { font-size: 12px; padding: 11px 4px 9px; }
  .alt-not { font-size: 9px; margin-top: 4px; }
  #mesajlar { padding: 8px 0; gap: 8px; }
  .msg { font-size: 13px; padding: 8px 11px; }

  /* Kayıt/giriş ekranı — geri bildirim: mobilde çok sıkışık görünüyordu.
     Üstteki büyük boşluk (margin: 80px auto) ve sabit padding dar ekranda
     içeriği kenarlara itiyordu; reCAPTCHA da ayrıca auth.js'te compact
     boyuta geçiyor. Alt boşluk kasıtlı olarak büyük (90px) — kayıt formu
     (özellikle onay metinleri yüzünden) mobilde tek ekrana sığmayabiliyor,
     alttaki sabit "♿ Erişilebilirlik"/"💬 Yardım" butonları kartın son
     satırlarına (ör. "Hesabın yok mu? Kayıt ol") biniyordu — kullanılabilirlik
     incelemesinde bulundu, gerçek scroll ile doğrulandı. */
  #auth-app { margin: 20px auto; padding: 16px; max-width: 100%; gap: 10px; }
  #auth-app h1 { font-size: 19px; }
  .gizlilik-notu { font-size: 11px; padding: 10px 12px; }
  .onay-satiri { font-size: 11px; }
  #auth-app input { font-size: 16px; padding: 11px 12px; } /* 16px: iOS'ta otomatik zoom'u önler */
  #recaptcha-kutusu { display: flex; justify-content: center; transform-origin: center; }
}
