/* ========= Global (Ana Menü & Genel) ========= */
:root{
  --cell:84px;           /* oyun için */
  --cell-font:32px;
  --key-font:18px;

  --bg:#f8fafc;
  --fg:#0f172a;
  --muted:#475569;
  --surface:#ffffff;
  --border:#e2e8f0;
  --btn:#1f2937;
  --btnText:#ffffff;
  --btnGhost:#e5e7eb;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  background:var(--bg);
  color:var(--fg);
}

.hidden{display:none!important}

/* Header (eski tema kullanan sayfalar için) */
.header{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:12px 16px; background:var(--surface); border-bottom:1px solid var(--border);
}
.logo{font-weight:800; letter-spacing:.5px}
.logo small{display:block; font-weight:600; color:var(--muted); font-size:12px}
.auth{display:flex; align-items:center; gap:6px; flex-wrap:wrap}
.auth input{
  padding:6px 8px; border:1px solid var(--border); border-radius:8px; background:#fff; min-width:180px;
}
.auth .btn{
  padding:8px 10px; border:0; border-radius:8px;
  background:var(--btn); color:var(--btnText); font-weight:600; cursor:pointer;
}
.auth .btn.ghost{ background:var(--btnGhost); color:var(--fg) }

.container{ max-width:1100px; margin:16px auto; padding:0 16px }
h2{ margin:18px 0 10px }
.section{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
}
.modes{ display:flex; gap:10px; flex-wrap:wrap; }
.mode{
  padding:10px 14px; border:0; border-radius:10px;
  background:var(--btn); color:#fff; font-weight:700; cursor:pointer;
}
.mode.ghost{ background:var(--btnGhost); color:var(--fg); }

/* ========= Modal ========= */
#overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.5);
  display:none; align-items:center; justify-content:center; z-index:9999;
}
#overlay:not(.hidden){ display:flex; }
#overlay .modal{
  background:#fff; border-radius:14px; padding:18px;
  width:min(560px,92vw); box-shadow:0 10px 30px rgba(0,0,0,.2);
}
#overlay .modal h3{ margin:0 0 10px }
#overlay .modal .actions{
  display:flex; justify-content:flex-end; gap:10px; margin-top:14px;
}
#overlay .modal .actions .ghost{ background:var(--btnGhost); color:var(--fg) }
#overlay .form-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
#overlay .form-grid label{
  display:block; font-size:13px; color:var(--muted); margin-bottom:6px;
}
#overlay .form-grid input{
  width:100%; padding:10px 12px; border:1px solid var(--border); border-radius:10px;
}

/* Extra chance popup */
.extra-pop h3{ margin:0 0 6px }
.extra-pop p{ margin:0 0 12px }
.extra-pop .actions{ display:flex; gap:10px; justify-content:flex-end }

/* ========= Oyun Alanı (Scoped: #game) ========= */
#game .board{
  display:grid;
  gap:10px;
  justify-content:center;
  margin:20px auto;
}
#game .row{ display:flex; gap:10px }

#game .cell{
  width:var(--cell); height:var(--cell);
  display:inline-flex; justify-content:center; align-items:center;
  border:2px solid #cbd5e1; border-radius:12px;
  background:#fff; color:#111827;
  font-size:var(--cell-font); font-weight:800;
  text-transform:uppercase;
  transition:
    transform .06s ease,
    background .15s ease,
    border-color .15s ease,
    color .15s ease;
}

#game .cell.correct{ background:#22c55e; color:#fff; border-color:#16a34a }
#game .cell.present{ background:#f59e0b; color:#111827; border-color:#d97706 }
#game .cell.absent{  background:#111827; color:#fff; border-color:#0f172a }
#game .cell.lock{    background:#f1f5f9; color:#334155 }
#game .cell.invalid{ border-color:#ef4444 !important; }

/* Titreme */
@keyframes shake {
  10%,90%{transform:translateX(-2px)}
  20%,80%{transform:translateX(4px)}
  30%,50%,70%{transform:translateX(-8px)}
  40%,60%{transform:translateX(8px)}
}
#game .shake{ animation:shake .45s both }

/* Flip animasyonu (Wordle tarzı) */
@keyframes flip {
  0%   { transform: rotateX(0deg); }
  50%  { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}
#game .cell.flip{
  animation: flip .32s ease-in-out forwards;
  transform-origin: center;
}

/* Klavye temel (masaüstü) */
#game .kb-frame{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:14px;
  max-width:980px;
  margin:16px auto;
  box-shadow:0 4px 16px rgba(15,23,42,.05);
}
#game .kb-row{
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:nowrap;
}
#game .key{
  width:64px; height:64px;
  display:flex; align-items:center; justify-content:center;
  border:0; border-radius:12px;
  background:#e2e8f0; color:#111827;
  font-weight:800; font-size:var(--key-font);
  cursor:pointer; user-select:none;
}
#game .key.wide{ width:96px; }
#game .key.ghost{ background:#eef2f7; }

#game .key.used{    background:#cbd5e1 }
#game .key.correct{ background:#22c55e!important; color:#fff }
#game .key.present{ background:#f59e0b!important; color:#111827 }
#game .key.absent{  background:#111827!important; color:#fff }

/* Kontroller */
#game .controls{
  display:flex; gap:12px; justify-content:center; margin:12px 0 4px;
}
#game .controls .btn{
  padding:10px 14px; border-radius:10px;
  background:var(--btn); color:#fff; font-weight:600; border:0;
}
#game .controls .btn.ghost{ background:var(--btnGhost); color:var(--fg) }

/* ========= Responsive (masaüstü→tablet) ========= */
@media (max-width:640px){
  :root{ --cell:62px; --cell-font:26px; --key-font:16px; }
  #overlay .form-grid{ grid-template-columns:1fr }
  #game .key{ width:52px; height:52px }
  #game .key.wide{ width:84px }
}

/* ====== Liderlik & Profil & Reklam ====== */

.lb-list{
  list-style:none; padding:0; margin:8px 0 18px;
}
.lb-list li{
  padding:6px 10px;
  border-radius:10px;
  background:#f8fafc;
  margin:6px 0;
  border:1px solid #eef2f7;
}

.profile-card{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:10px 0 14px;
}
.profile-card .kpi{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:10px;
  text-align:center;
}
.profile-card .num{
  font-size:22px;
  font-weight:900;
  color:#0f172a;
}
.profile-card .lbl{
  font-weight:600;
  color:#475569;
}

.profile-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 6px;
}
.profile-table th,
.profile-table td{
  padding:8px 10px;
  background:#fff;
  border:1px solid #e5e7eb;
}
.profile-table th{
  background:#f1f5f9;
  font-weight:800;
}

.adbar{
  width:100%; height:10px;
  background:#e5e7eb;
  border-radius:9999px;
  overflow:hidden;
  margin-top:8px;
}
.adbar__fill{
  display:block;
  height:100%;
  width:0%;
  background:#22c55e;
}

/* ==== Tahta & Klavye – görsel rötuşlar ==== */

/* Tahta çerçevesi (boardWrap app.js’ten geliyor) */
.board-wrap{
  max-width:920px;
  margin:16px auto 24px;
  padding:16px 16px 20px;
  border:2px solid #e5e7eb;
  border-radius:20px;
  background:#ffffff;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

/* Üst bilgi şeridi */
.board-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.word-info{
  font-weight:700;
  color:#0f172a;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:6px 10px;
}

/* Timer rozet */
#timer.timer-big{
  font-weight:800;
  background:#0ea5e9;
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  box-shadow:0 6px 20px rgba(14,165,233,.25);
  letter-spacing:.2px;
}

/* Tahta ızgarası (genel) */
.board{
  display:flex;
  flex-direction:column;
  gap:6px;                 /* satırlar arası boşluk */
  padding:6px 8px 2px;
}

.row{
  display:flex;
  gap:4px;                 /* kutular arası boşluk */
}

/* Hücreler — esnek kareler, satıra göre küçülür */
.cell{
  flex:1 0 0;              /* satır genişliği eşit bölünsün */
  max-width:52px;          /* mobilde en fazla bu kadar geniş */
  aspect-ratio:1 / 1;      /* her zaman kare */
  display:flex;
  align-items:center;
  justify-content:center;

  border:2px solid #cbd5e1;
  border-radius:14px;
  background:#fff;
  color:#111827;
  font-weight:800;
  font-size:22px;
  text-transform:uppercase;
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0);
  transition:transform .06s ease, box-shadow .2s ease;
}

/* Masaüstünde biraz büyüsün */
@media (min-width: 768px){
  .board{ gap:8px; padding:10px 12px 4px; }
  .row{ gap:6px; }
  .cell{
    max-width:64px;
    font-size:26px;
    border-radius:16px;
  }
}
.cell:empty{ background:#ffffff; }
.cell.lock{
  background:#f8fafc; color:#334155; border-style:dashed;
}

/* Renk durumları */
.cell.correct{ background:#22c55e; color:#fff; border-color:#16a34a; }
.cell.present{ background:#f59e0b; color:#111827; border-color:#d97706; }
.cell.absent{  background:#111827; color:#fff;    border-color:#0f172a; }

/* Geçersiz tahmin */
.cell.invalid{
  border-color:#ef4444 !important;
  box-shadow: inset 0 0 0 2px rgba(239,68,68,.35);
}
.shake{ animation:shake .45s both; }

/* Flip animasyonu (board.genel ile uyumlu) */
.cell.flip{ animation: flip .36s ease both; transform-origin:center; }

/* Klavye: genel çerçeve */
#keyboard{
  margin:10px auto 0;
  max-width:980px;
}
.kb-frame{
  background:#ffffff;
  border:2px solid #e5e7eb;
  border-radius:16px;
  padding:12px;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
}
.kb-row{
  display:flex;
  justify-content:center;
  gap:8px;
  margin:6px 0;
}

/* Harf butonları */
.key{
  min-width:44px; height:48px; padding:0 10px;
  border:0; border-radius:12px;
  background:#e2e8f0; color:#111827;
  font-weight:800; font-size:16px;
  cursor:pointer; user-select:none;
  transition: transform .05s ease, background .15s ease;
}
.key:active{ transform: translateY(1px); }
.key.wide{ min-width:64px; }
.key.ghost{ background:#e5e7eb; }

/* Durum renkleri (klavye) */
.key.used{    background:#cbd5e1; }
.key.correct{ background:#22c55e !important; color:#fff; }
.key.present{ background:#f59e0b !important; color:#111827; }
.key.absent{  background:#111827 !important; color:#fff; }

/* Modal/Overlay makyajı (genel) */
#overlay{
  position:fixed; inset:0;
  display:flex;
  align-items:center; justify-content:center;
  background:rgba(2,6,23,.45);
}
.modal{
  width:min(560px,92vw);
  background:#fff; border-radius:16px; padding:18px;
  box-shadow:0 20px 60px rgba(2,6,23,.25);
}
.modal h3{ margin:0 0 10px; }
.modal .actions{
  display:flex; justify-content:flex-end; gap:10px; margin-top:14px;
}
.modal .actions .ghost{ background:#e5e7eb; color:#111827; }

/* Reklam simülasyonu barı */
.adbar{
  width:100%; height:10px;
  background:#f1f5f9;
  border-radius:999px;
  overflow:hidden;
  border:1px solid #e2e8f0;
  margin-top:10px;
}
.adbar__fill{
  display:block;
  height:100%;
  background:linear-gradient(90deg,#06b6d4,#0ea5e9);
}

/* Liderlik listesi minik dokunuş */
.lb-sep{
  opacity:.5;
  list-style:none;
  margin:6px 0;
  border-top:1px dashed #cbd5e1;
}

/* Ana menü kartları */
.menu .card{
  border:2px solid #e5e7eb; border-radius:18px; padding:14px;
  background:#fff; box-shadow:0 8px 24px rgba(15,23,42,.06);
}

/* Tablet/telefon tahta ayarı */
@media (max-width:640px){
  .cell{
    width:56px; height:56px;
    font-size:24px;
    border-radius:14px;
  }
  .kb-row{ gap:6px; }
  .key{
    min-width:40px;
    height:44px;
    font-size:15px;
    border-radius:10px;
  }
  .board-wrap{ padding:12px; border-radius:16px; }
}

/* === Mobile Playability Pack v1 — sadece mobil için === */
@media (max-width:640px){

  :root{
    /* Tahta için temel hücre boyu (7 harfe göre hesaplanacak) */
    --cell: 54px;
  }

  /* Tahta: tam ekranın içinde dursun */
  .board-wrap{
    max-width:100%;
    margin:10px auto 8px;
    padding:10px 8px 14px;
  }

  .board{ padding:0; }
  .row{ gap:4px; }

  /* 7 harf bile olsa ekranı taşmasın diye width’i viewport’a göre hesaplıyoruz */
  .cell{
    width:calc((100vw - 56px) / 7);       /* sağ-sol toplam ~56px boşluk bırak */
    height:calc((100vw - 56px) / 7);
    max-width:var(--cell);                /* çok büyük ekranlarda 54px’i geçmesin */
    max-height:var(--cell);
    border-radius:14px;
    font-size:clamp(18px, 4.5vw, 22px);
    line-height:1;
  }

  /* KLAVYE: tabloya bağlı, sticky değil */
  #keyboard{
    position:static;
    left:auto; right:auto; bottom:auto;
    max-width:430px;
    margin:8px auto 0;
    padding:0;
    background:transparent;
    box-shadow:none;
  }

  .kb-frame{
    border-radius:18px;
    padding:10px 10px 14px;
  }

  .kb-row{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap;      /* ilk sırada 10 tuş, satır kırılmasın */
    gap:4px;
  }

  /* Harf tuşları – 10 tuşluk sıra ekranı taşmasın diye vw üzerinden hesaplanıyor */
  .key{
    flex:0 0 auto;
    min-width:calc((100vw - 80px) / 10);  /* 10 tuşluk sığa */
    max-width:40px;
    height:40px;
    margin:2px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
  }

  /* ENTER ve SİL biraz daha geniş */
  .key.wide{
    flex:0 0 auto;
    min-width:calc((100vw - 80px) / 5);
    max-width:88px;
    padding:0 14px;
  }

  /* Üst bilgi daha kompakt */
  #timer.timer-big{
    font-size:clamp(14px, 4vw, 18px);
    padding:4px 10px;
  }
  .word-info{
    font-size:12px;
    padding:4px 8px;
  }
}

/* Dokunma: çift-dokun zoom gecikmesini azalt */
html, body { touch-action: manipulation; }

/* Reklam alanları */
.ad-slot {
  margin: 8px auto;
  text-align: center;
  max-width: 100%;
}
.ad-top { margin-bottom: 12px; }

/* === Mobile Keyboard Fix v1.9.7 – taşma yok, düzgün hizalı === */
@media (max-width:640px){

  /* Klavye kartı: konteynerin tamamını kullansın */
  #keyboard{
    max-width:100%;
    margin:8px auto 0;
    padding:0;
    background:transparent;
    box-shadow:none;
  }

  #keyboard .kb-frame{
    max-width:100%;
    padding:10px 10px 14px;
    border-radius:18px;
  }

  /* Satırları grid'e çeviriyoruz; böylece asla taşmıyor */
  #keyboard .kb-row{
    display:grid;
    margin:4px 0;
    column-gap:4px;
    row-gap:4px;
    justify-content:stretch;
  }

  /* 1. ve 3. satır: 10 tuş */
  #keyboard .kb-row:nth-child(1),
  #keyboard .kb-row:nth-child(3){
    grid-template-columns: repeat(10, minmax(0,1fr));
  }

  /* 2. satır: 11 tuş */
  #keyboard .kb-row:nth-child(2){
    grid-template-columns: repeat(11, minmax(0,1fr));
  }

  /* Tüm tuşlar hücreyi doldursun, genişlik hesapla derdi yok */
  #keyboard .key{
    width:100%;
    min-width:0;
    height:40px;
    margin:0;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
  }

  /* ENTER / sil mobilde özel hesap yapmasın, normal tuş gibi davransın */
  #keyboard .key.wide{
    width:100%;
    padding:0 10px;
  }

  /* Tahta hücrelerini de çok hafif sıklaştıralım ki 7 harf rahat sığsın */
  .board-wrap{
    max-width:100%;
    margin:10px auto 12px;
    padding:10px 8px 14px;
  }
  .board{
    padding:0;
  }
  .row{
    gap:4px;
  }
}

/* === Mobile Polish v1.9.8 — daha az boşluk, dikdörtgen tuşlar === */
@media (max-width:640px){

  /* Ana içeriğin üst-alt boşluklarını kıs */
  main .wrap{
    padding-top:8px !important;
    padding-bottom:8px !important;
  }

  /* Tahta çerçevesi: daha dar, klavyeye yer aç */
  .board-wrap{
    margin:6px auto 4px !important;
    padding:8px 6px 10px !important;
  }

  /* Izgara aralıkları: biraz daha sık */
  .board{
    padding:0 !important;
  }
  .row{
    gap:3px !important;
  }
  .cell{
    width:52px !important;
    height:52px !important;
    border-radius:10px !important;  /* kareye yakın dikdörtgen */
  }

  /* Klavye ile tahta arasındaki boşluğu kıs */
  #keyboard{
    margin-top:2px !important;
  }

  #keyboard .kb-frame{
    padding:8px 8px 10px !important;
    border-radius:16px !important;
  }

  /* Tuşlar: dikdörtgen, biraz daha alçak */
  #keyboard .key{
    height:38px !important;
    border-radius:8px !important;   /* artık yuvarlak değil */
    font-size:13px !important;
  }
}
/* === KELIMIO • Mobile fine-tune v1.9.11 ===================== */

/* Ana menü – ipucu – tahta arasındaki dikey boşluk biraz kısalsın */
.board-wrap{
  padding-top:10px;
  padding-bottom:10px;
}

/* Üst şerit (Ana Menü + ipucu + harf bilgisi) daha sıkı olsun */
.board-header{
  margin-bottom:4px;
}

/* Harf ızgarası: satırlar ve sütunlar az ama net bir boşlukla ayrı kalsın
   (özellikle 7 harfli kelimede yapışma olmasın) */
#board{
  padding-top:6px;
  padding-bottom:6px;
}
#board .row{
  gap:6px;
}

/* Küçük ekranda hücreleri bir tık küçült → 7 harf de rahat sığsın */
@media (max-width:640px){
  :root{
    --cell:52px;
  }
}

/* Klavye tuşları: yuvarlak yerine hafif köşeli dikdörtgen */
.key{
  border-radius:10px;
}

/* === MOBİL TAHTA SIKIŞMA FIX (7 harf için de geçerli) === */
@media (max-width: 640px){
  #game .board{
    padding: 8px 6px;        /* iç boşluk hafif */
  }
  #game .row{
    gap: 4px;                /* satır içi boşluk: az ama görünür */
  }
  #game .cell{
    width: 46px;
    height: 46px;
    font-size: 20px;         /* harf boyunu da biraz küçült */
    border-radius: 10px;
  }
}

/* ==== KELIMIO • SON YAMA — Mobilde 7 harf grid fix ==== */

/* Satırlar dikey, arada net boşluk olacak */
#game .board,
.board{
  display: flex;
  flex-direction: column;
  row-gap: 6px;              /* satırlar arası boşluk */
  padding: 8px 10px 4px;
}

/* Hücre satırı: kutular arasında boşluk */
#game .row,
.board .row{
  display: flex;
  column-gap: 6px;           /* kutular arası boşluk */
}

/* Kutular: satır genişliğine göre esnek kareler */
#game .cell,
.board .cell{
  flex: 1 0 0;               /* satır genişliğini eşit böl */
  max-width: 48px;           /* mobilde en fazla bu kadar geniş */
  aspect-ratio: 1 / 1;       /* her zaman kare */

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #cbd5e1;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0);
  transition: transform .06s ease, box-shadow .2s ease;
}

/* Masaüstünde biraz büyüsün */
@media (min-width: 768px){
  #game .cell,
  .board .cell{
    max-width: 60px;
    font-size: 24px;
    border-radius: 16px;
  }

  #game .board,
  .board{
    row-gap: 8px;
    padding: 10px 12px 6px;
  }

  #game .row,
  .board .row{
    column-gap: 8px;
  }
}

/* === SON RÖTUŞ 2 — 7 harfte sağ boşlukları doldur === */

/* Tahta, kartın içini tam doldursun */
#game .board,
.board{
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Satır da tam genişlikte olsun */
#game .row,
.board .row{
  width: 100%;
}

/* Hücreler satırı eşit bölmeye devam etsin */
#game .cell,
.board .cell{
  flex: 1 1 0;
}

/* ====== KELIMIO • SON MOBİL TAHTA FIX'i (7 harfe kadar) ====== */

/* Masaüstünü bozma, sadece küçük ekranlarda devreye girsin */
@media (max-width: 640px){

  /* Tahta kartı biraz sıkışsın, sağdaki boşluk azalsın */
  .board-wrap{
    padding: 10px 10px 14px;
  }

  /* Satırlar: aralığı sabit tut, taşmayı önle */
  #game .board{
    justify-content: center;
  }

  #game .row{
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;                 /* kutular birbirine yapışmasın */
    margin-bottom: 6px;
  }

  /* KUTULARIN GERÇEK ÇÖZÜMÜ
     - Genişlik: ekran genişliğine göre hesaplanır
     - 7 harf bile sığacak, birbirine girmeyecek
  */
  #game .cell{
    width:  clamp(38px, calc((100vw - 72px) / 7), 52px) !important;
    height: clamp(38px, calc((100vw - 72px) / 7), 52px) !important;
    font-size: clamp(18px, 4.2vw, 22px);
    border-radius: 14px;
  }

  /* Kilit satırı da aynı hizayı korusun */
  #game .row:last-child .cell{
    width:  clamp(38px, calc((100vw - 72px) / 7), 52px) !important;
    height: clamp(38px, calc((100vw - 72px) / 7), 52px) !important;
  }

  /* Klavye, mevcut görünümü korusun ama biraz daha derli toplu olsun */
  #keyboard{
    padding: 6px 8px 10px;
  }
  #keyboard .kb-row{
    gap: 4px;
  }
  #keyboard .key{
    min-width: 34px;
    height: 40px;
    font-size: 14px;
  }
}
/* === KELIMIO — Son hizalama fix'i (tahta ortalama) === */
#board{
  display:flex;
  flex-direction:column;
  align-items:center;   /* satırları ortala */
  gap:6px;
  margin:12px auto 8px; /* kart içinde tam ortaya gelsin */
}

#board .row{
  display:flex;
  justify-content:center; /* kareleri satır içinde ortala */
  gap:6px;                /* kareler arası min. boşluk */
}

/* === Mobil 7 harf hizalama + boşluk düzeltmesi === */
@media (max-width: 768px){
  /* Tahtayı tam ortaya al */
  #board{
    display: flex;
    flex-direction: column;
    align-items: center;      /* satırları ortala */
    row-gap: 8px;             /* satırlar arası boşluk */
    margin: 10px auto 8px;
    padding: 0;
  }

  /* Kareler arası boşluk ve ortalama */
  #board .row{
    display: flex;
    width: auto;              /* daha önceki width:100% kuralını EZER */
    justify-content: center;  /* satır içindeki kareleri ortala */
    gap: 6px;                 /* kareler arası boşluğu biraz açtık */
  }
}

/* === Mobil ızgara son hizalama (7 harf için de) === */
@media (max-width: 768px){
  .board-wrap{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
  }

  #board{
    display: flex;
    flex-direction: column;
    align-items: center;   /* tüm satırlar tam ortaya */
    row-gap: 8px;
    padding: 0;
  }

  #board .row{
    width: auto;           /* 100%’ü iptal et */
    justify-content: center;
    gap: 6px;              /* kutular arası küçük ama net boşluk */
  }
}

/* === Mobil ızgara genişlik & ortalama fix'i === */
@media (max-width: 768px){

  /* Tahta çerçevesi ekrana daha çok yayılsın */
  .board-wrap{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6px;
    padding-right: 6px;
  }

  /* Tüm satırlar tam ortaya ve daha geniş */
  #board{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
  }

  /* Satır: sağ–sol boşluğu kullan, 7 harfe göre alan aç */
  #board .row{
    display: flex;
    justify-content: center;
    gap: 8px;                     /* kutular arası bir tık daha geniş */
    width: calc(100% - 24px);     /* container içinde neredeyse tam genişlik */
    max-width: 480px;             /* masaüstünü bozmamak için üst sınır */
  }

  /* Kutuların küçülüp sıkışmasını engelle */
  #board .cell{
    flex: 0 0 auto;               /* flexbox artık kutuyu ezip daraltamaz */
  }
}

/* === OYUN EKRANI: TAHTA + SAĞ REKLAM YANI YANA === */

#game .game-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;           /* tahta ile reklam arası boşluk */
}

/* Tahta tarafı esnesin */
#game .board-wrap {
  flex: 1 1 0;
}

/* Sağ reklam alanı */
.right-ad-area {
  flex: 0 0 320px;     /* yaklaşık 300x250 kutu için sabit genişlik */
  max-width: 320px;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* AdSense kutusuna ufak güvenlik payı */
.kelimio-right-ad {
  width: 100%;
  max-width: 320px;
  min-height: 250px;
}

/* Mobilde alt alta gelsin */
@media (max-width: 900px) {
  #game .game-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .right-ad-area {
    flex: none;
    max-width: 100%;
    margin-top: 8px;
    justify-content: center;
  }

  .kelimio-right-ad {
    max-width: 100%;
  }
}
