/* ============ Bahsegel mobile clone â€” brand styles ============ */
:root {
  --cyan: #1095b5;
  --cyan-d: #0d7e99;
  --dark: #1c4f5b;
  --orange: #ffa52c;
  --orange-2: #ff8c1a;
  --input-bg: #dfeaf0;
  --body-bg: #f0f5f8;
  --soft: #e1f3f7;
  --line: #e3edf1;
  --white: #fff;
  --muted: #6b8c97;
  --shell-w: 480px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body.bg-body {
  background: #0e2a31;
  color: var(--dark);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Mobile shell / phone frame ---------- */
.shell {
  position: relative;
  width: 100%;
  max-width: var(--shell-w);
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--body-bg);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
@media (min-width: 600px) {
  body.bg-body { padding: 0; }
  .shell { box-shadow: 0 0 60px rgba(0, 0, 0, 0.45); }
}
.shell__main {
  flex: 1;
  padding-bottom: calc(68px + var(--safe-b));
}

/* ---------- Header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 56px;
  padding: 0 14px;
  padding-top: var(--safe-t);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hdr__burger { display: flex; flex-direction: column; gap: 4px; padding: 6px 2px; }
.hdr__burger span { width: 22px; height: 2.5px; border-radius: 2px; background: var(--cyan); }
.hdr__logo { height: 30px; }
.hdr__logo img { height: 100%; width: auto; }
.hdr__spacer { flex: 1; }
.hdr__btn {
  height: 38px; padding: 0 16px; border-radius: 10px; font-size: 14px; font-weight: 700;
}
.hdr__btn--ghost { color: var(--cyan); }
.hdr__btn--solid {
  color: var(--white);
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.35);
}

/* auth header */
.hdr__wallet {
  display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px;
  background: var(--soft); border-radius: 10px; color: var(--dark); font-weight: 700; font-size: 13px;
}
.hdr__wallet small { display: block; font-size: 10px; color: var(--muted); font-weight: 600; }
.hdr__deposit {
  height: 38px; padding: 0 14px; border-radius: 10px; color: #fff; font-weight: 700; font-size: 13px;
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
}

/* ---------- Bottom nav ---------- */
.bnav {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 0;
  width: 100%; max-width: var(--shell-w); z-index: 96;
  height: calc(64px + var(--safe-b)); padding-bottom: var(--safe-b);
  display: flex; background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(28, 79, 91, 0.06);
}
.bnav a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--dark); font-size: 11px; font-weight: 600; }
.bnav a.active { color: var(--cyan); }
.bnav svg { width: 24px; height: 24px; }
.bnav__icon { width: 24px; height: 24px; object-fit: contain; }
.bnav__center { margin-top: -22px; }
.bnav__center .bnav__plus {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--orange), var(--orange-2)); color: #fff;
  box-shadow: 0 6px 16px rgba(255, 140, 26, 0.45); border: 4px solid #fff;
}

/* ---------- Drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 108; background: rgba(13, 42, 49, 0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.25s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 110; width: 82%; max-width: 340px;
  background: #fff; transform: translateX(-100%); transition: transform 0.28s ease;
  display: flex; flex-direction: column; padding: 14px 0; overflow-y: auto;
  padding-top: calc(14px + var(--safe-t));
}
.drawer.open { transform: translateX(0); }
.drawer__close { align-self: flex-start; width: 38px; height: 38px; margin: 0 0 8px 12px; border-radius: 10px; background: var(--soft); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.drawer__nav { padding: 0 6px; }
.drawer__link { display: flex; align-items: center; gap: 14px; padding: 13px 14px; font-weight: 700; font-size: 15px; color: var(--dark); border-radius: 12px; }
.drawer__link:active { background: var(--soft); }
.drawer__link img { width: 24px; height: 24px; object-fit: contain; }
.drawer__auth { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.btn-block { width: 100%; height: 46px; border-radius: 12px; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.btn-orange { color: #fff; background: linear-gradient(180deg, var(--orange), var(--orange-2)); box-shadow: 0 6px 14px rgba(255, 140, 26, 0.35); }
.btn-soft { color: var(--cyan); background: var(--soft); }
/* Misafir oyun kartı "giriş gerekli" popup */
.modal--gate { text-align: center; }
.gate { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 4px 4px 2px; }
.gate__img { width: 84px; height: 84px; border-radius: 18px; object-fit: cover; box-shadow: 0 8px 24px rgba(0,0,0,.18); margin-bottom: 14px; }
.gate__name { font-size: 20px; font-weight: 800; color: var(--dark); margin: 0 0 12px; }
.gate__msg { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 20px; max-width: 300px; }
.gate .btn-block { max-width: 300px; }
.gate__reg { margin-top: 10px; }
/* ---------- Ana sayfa SEO metni (Bahsegel) — Jackpot altı, kaydırılabilir kutu ---------- */
/* Dalgalı ayraç (Jackpot ile Bahsegel arasında nefes boşluğu) */
.home-divider {
  height: 10px;
  margin: 22px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='10' viewBox='0 0 22 10'%3E%3Cpath d='M0 8 L5.5 2 L11 8 L16.5 2 L22 8' fill='none' stroke='%23cad8dd' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
.home-about { padding: 0 14px 18px; }
.home-about__box { max-height: 150px; overflow-y: auto; padding-right: 10px; -webkit-overflow-scrolling: touch; }
.home-about__title { color: #1095b5; font-size: 18px; font-weight: 600; line-height: 24px; margin: 0 0 14px; text-align: left; }
.home-about__text { color: #1c4f5b; font-size: 13px; line-height: 19px; }
.home-about__text p { margin: 0 0 14px; }
.home-about__text p:last-child { margin: 0; }
.home-about__box::-webkit-scrollbar { width: 3px; }
.home-about__box::-webkit-scrollbar-thumb { background: linear-gradient(#ff9e2c, #ffb72c); border-radius: 4px; }
.home-about__box::-webkit-scrollbar-track { border-radius: 10px; }
.drawer__lang { padding: 14px 18px; }
.drawer__lang img { width: 28px; height: 20px; border-radius: 3px; }

/* ---------- Modals ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(13, 42, 49, 0.5);
  display: none; align-items: flex-end; justify-content: center;
}
.modal {
  width: 100%; max-width: var(--shell-w); background: #fff;
  border-radius: 22px 22px 0 0; padding: 22px 20px calc(26px + var(--safe-b));
  max-height: 92dvh; overflow-y: auto; position: relative;
  animation: sheetUp 0.28s ease;
}
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
/* Giriş + Üye Ol: alta yaslı değil, ORTADA açılır (orijinaldeki gibi) */
#bgLogin, #bgRegister { align-items: center; }
#bgLogin .modal, #bgRegister .modal {
  border-radius: 18px; margin: 12px 0;
  max-height: calc(100dvh - 24px);
  padding-bottom: 24px;
  animation: modalPop 0.22s ease;
}
@keyframes modalPop { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 12px; background: var(--soft); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.modal__title { font-size: 30px; font-weight: 800; color: var(--cyan); margin: 4px 0 6px; }
.modal__sub { font-size: 18px; color: var(--dark); margin: 0 0 18px; }
.tabs { display: flex; background: var(--soft); border-radius: 14px; padding: 5px; margin-bottom: 18px; }
.tabs button { flex: 1; height: 44px; border-radius: 10px; font-weight: 700; font-size: 15px; color: var(--dark); }
.tabs button.active { background: #fff; color: var(--dark); box-shadow: 0 2px 8px rgba(28, 79, 91, 0.12); }
.field { position: relative; margin-bottom: 14px; }
.field input {
  width: 100%; height: 58px; border-radius: 12px; border: none; background: var(--input-bg);
  padding: 0 18px; font-size: 16px; color: var(--dark); outline: none;
}
.field input::placeholder { color: #5d8290; }
.field__eye { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.modal .btn-orange { margin-top: 4px; }
.modal__link { color: var(--cyan); font-weight: 600; }
.modal__row { margin: 18px 0; font-size: 16px; color: var(--dark); }
.modal__divider { height: 1px; background: var(--line); margin: 16px 0; }
.modal__legal { font-size: 12px; color: var(--muted); line-height: 1.5; margin-top: 14px; }
.currency { display: flex; align-items: center; gap: 18px; margin: 6px 0 14px; font-weight: 700; }
.currency label { display: flex; align-items: center; gap: 7px; color: var(--dark); }
.currency input { accent-color: var(--orange); width: 18px; height: 18px; }
.checkrow { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--dark); margin-bottom: 16px; line-height: 1.45; }
.checkrow input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--cyan); }
.regfoot { display: flex; justify-content: space-around; margin-top: 18px; color: var(--dark); font-size: 12px; font-weight: 600; }
.regfoot div { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.regbanner { margin: -22px -20px 16px; border-radius: 0; overflow: hidden; }
.regbanner img { width: 100%; display: block; }

/* ---------- Auth modal — geliştirilmiş form (orijinale uyarlandı) ---------- */
/* Floating-label input */
.cinput { position: relative; width: 100%; margin-bottom: 12px; }
.cinput__field { width: 100%; height: 52px; background: var(--input-bg); border: 1px solid var(--input-bg); border-radius: 8px; padding: 23px 16px 8px; font-size: 15px; line-height: 21px; color: var(--dark); font-family: inherit; outline: none; transition: border-color .2s; }
.cinput--pw .cinput__field { padding-right: 46px; }
.cinput__field:focus { border-color: #cfe0e8; }
.cinput__label { position: absolute; left: 16px; top: 16px; color: var(--dark); font-size: 15px; line-height: 21px; pointer-events: none; transition: all .2s; }
.cinput__field:focus + .cinput__label,
.cinput__field:not(:placeholder-shown) + .cinput__label { color: #1ba3c4; font-size: 11px; line-height: 16px; transform: translateY(-11px); }
.cinput__eye { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: #a6afb7; background: none; display: flex; align-items: center; cursor: pointer; }
.cinput__eye svg { width: 22px; height: 22px; }
/* Özel radio (para birimi) */
.cradio { display: inline-flex; align-items: center; cursor: pointer; }
.cradio input { display: none; }
.cradio__box { width: 20px; height: 20px; border-radius: 50%; border: 1px solid #bbcace; background: #fff; position: relative; flex-shrink: 0; }
.cradio__box::before { content: ""; position: absolute; inset: 0; margin: auto; width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(var(--orange), #ffb72c); opacity: 0; }
.cradio input:checked + .cradio__box { border: 2px solid var(--orange); background: transparent; }
.cradio input:checked + .cradio__box::before { opacity: 1; }
.cradio__label { margin-left: 8px; font-size: 15px; color: var(--dark); }
.cradio input:checked ~ .cradio__label { color: var(--orange); font-weight: 500; }
/* Para birimi satırı (alt çizgili) */
.reg-cur { display: flex; justify-content: space-between; align-items: center; width: 100%; border-bottom: 1px solid var(--input-bg); padding: 5px 0 15px; margin: 2px 0 12px; }
.reg-cur__label { color: var(--dark); font-size: 13px; font-weight: 500; line-height: 1.27; }
.reg-cur__group { display: flex; flex-wrap: wrap; gap: 14px; }
/* Şartlar: özel checkbox + PDF indir ikonu */
.reg-terms { display: flex; align-items: center; gap: 8px; width: 100%; margin-bottom: 4px; }
.ccheck { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; flex: 1; }
.ccheck input { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border: 1px solid rgba(119,149,157,.5); border-radius: 4px; background: #fff; cursor: pointer; flex-shrink: 0; position: relative; margin: 1px 0 0; }
.ccheck input:checked { background: var(--orange); border-color: var(--orange); }
.ccheck input:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.ccheck__label { font-size: 13px; line-height: 15px; color: var(--dark); }
.reg-terms__dl { flex-shrink: 0; color: var(--cyan); display: flex; }
.reg-terms__dl svg { width: 20px; height: 20px; }
/* Footer: "Giriş Yap" satırı + alt ayraç */
.reg-login { position: relative; text-align: center; font-size: 15px; color: var(--dark); padding-bottom: 16px; margin: 16px 0 18px; }
.reg-login::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; border-top: 1px solid var(--input-bg); }

/* ---------- Hoşgeldin bonusu: header altı sticky şerit + büyük modal ---------- */
.bbar { position: sticky; top: calc(56px + var(--safe-t)); z-index: 19; display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; min-height: 44px; padding: 8px 14px; background: linear-gradient(94deg, #1a2a3a, #253545); }
.bbar__left { flex: 1; display: flex; align-items: center; gap: 8px; min-width: 0; }
.bbar__timer { flex-shrink: 0; min-width: 64px; display: flex; align-items: center; justify-content: center; border: 1px solid #ff78004d; border-radius: 8px; padding: 4px 8px; }
.bbar__timer span { color: #fa0; font-weight: 700; font-size: 16px; line-height: 22px; text-shadow: 0 0 10px #f90, 0 0 20px #f90, 0 0 40px #ff7b00; }
.bbar__sep { margin: 0 1px; }
.bbar__text { color: #fff; font-size: 13px; line-height: 1.3; }
.bbar__actions { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.bbar__btn { background: linear-gradient(#ff9e2c, #ffb72c); color: #fff; font-weight: 700; font-size: 13px; line-height: 16px; padding: 9px 14px; border-radius: 12px; white-space: nowrap; }
.bbar__close { display: flex; align-items: center; justify-content: center; padding: 4px; background: none; border: none; cursor: pointer; opacity: 1; transition: opacity .2s; }
.bbar__close:hover { opacity: .6; }
/* Büyük modal */
#bgWelcomeBonus { align-items: center; }
.bonusm { width: 100%; max-width: var(--shell-w); background: #fff; border-radius: 18px; overflow: hidden; padding: 0; margin: 12px 0; position: relative; animation: modalPop .22s ease; }
.bonusm__close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 36px; height: 36px; border-radius: 12px; background: #e1f3f7; color: var(--cyan); display: flex; align-items: center; justify-content: center; }
.bonusm__top { position: relative; background: linear-gradient(94deg, #1a2a3a, #253545); padding: 30px 20px 48px; text-align: center; }
.bonusm__top::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #f5a62300, #f5a623 25%, #fc4 50%, #f5a623 75%, #f5a62300); }
.bonusm__timer { display: flex; align-items: center; justify-content: center; gap: 6px; }
.bonusm__cell { position: relative; display: flex; align-items: center; justify-content: center; width: 85px; height: 75px; border: 1px solid #ff78004d; background: #ff500026; border-radius: 10px; }
.bonusm__num, .bonusm__colon { color: #fa0; font-size: 44px; font-weight: 800; filter: drop-shadow(0 0 20px #ff640066) drop-shadow(0 0 8px #f60); }
.bonusm__lbl { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); color: #fff9; font-size: 15px; white-space: nowrap; }
.bonusm__body { padding: 0 20px; text-align: center; }
.bonusm__msg { max-width: 300px; margin: 18px auto; color: #444; font-size: 14px; line-height: 18px; }
.bonusm__actions { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.bonusm .bbtn { width: 100%; padding: 13px 0; border-radius: 12px; font-weight: 700; font-size: 15px; }
.bonusm__primary { background: linear-gradient(#ff9e2c, #ffb72c); color: #fff; }
.bonusm__secondary { background: transparent; border: 1px solid var(--cyan); color: var(--cyan); }
.bonusm__foot { background: #fff5e5; border-top: 1px solid #f5a62326; padding: 9px 20px; text-align: center; }
.bonusm__foot span { color: #f69420; font-size: 12px; line-height: 1.4; }

/* ---------- Hero carousel (full-width banner) ---------- */
.hero { position: relative; margin: 0; }
.hero__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.hero__track::-webkit-scrollbar { display: none; }
.hero__slide { flex: 0 0 100%; scroll-snap-align: center; }
.hero__slide img { width: 100%; height: auto; max-height: 380px; object-fit: cover; object-position: center; display: block; }
.hero__dots { display: flex; justify-content: center; align-items: center; gap: 5px; margin-top: 10px; }
.hero__bar { width: 22px; height: 3px; border-radius: 2px; background: #c2d6dd; overflow: hidden; }
.hero__bar--active { width: 28px; }
.hero__barfill { display: block; height: 100%; width: 100%; background: var(--orange); transform-origin: left; animation: barfill 4.5s linear forwards; }
@keyframes barfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Winners ticker (slider-section__winners) ---------- */
.ticker { margin: 0; background: var(--soft); height: 51px; display: flex; align-items: center; overflow: hidden; }
.ticker__track { display: flex; gap: 28px; white-space: nowrap; width: max-content; animation: marquee 40s linear infinite; }
.ticker__item { display: inline-flex; align-items: center; gap: 8px; color: var(--dark); font-size: 13px; }
.ticker__item img { width: 26px; height: 26px; border-radius: 6px; object-fit: cover; }
.ticker__item b { color: var(--dark); font-weight: 800; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sports strip (horizontal pills) ---------- */
.sports { display: flex; gap: 10px; overflow-x: auto; padding: 12px 14px 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.sports::-webkit-scrollbar { display: none; }
.sport-pill {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 18px; border-radius: 14px; background: #fff;
  box-shadow: 0 4px 10px rgba(28, 79, 91, 0.07); color: var(--dark); font-size: 14px; font-weight: 600;
}
.sport-pill img { width: 24px; height: 24px; object-fit: contain; }

/* ---------- Section header ---------- */
.sec { margin-top: 18px; }
.sec__head { display: flex; align-items: center; justify-content: space-between; padding: 0 14px 10px; }
.sec__title { font-size: 18px; font-weight: 800; color: var(--dark); }
.sec__all { font-size: 13px; font-weight: 700; color: var(--cyan); }

/* ---------- Game cards ---------- */
.row { display: flex; gap: 10px; overflow-x: auto; padding: 0 14px 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
.row::-webkit-scrollbar { display: none; }
.card { flex: 0 0 30%; max-width: 132px; scroll-snap-align: start; }
.card--live { flex: 0 0 46%; max-width: 200px; }
.card__img { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--soft); }
.card--live .card__img { aspect-ratio: 16 / 10; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; background: rgba(13, 42, 49, 0.62); transition: opacity 0.2s; padding: 8px; text-align: center;
}
.card:active .card__overlay, .card:hover .card__overlay { opacity: 1; }
.card__playicon { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; padding-left: 2px; }
.card__title { color: #fff; font-size: 11px; font-weight: 700; line-height: 1.2; max-height: 26px; overflow: hidden; }
.card__fun { background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 16px; }

/* ---------- Home inline register section (reg-section) ---------- */
.regsec { background: #fff; border-radius: 18px; margin: 18px 12px 0; padding: 16px 16px 26px; box-shadow: 0 6px 18px rgba(28, 79, 91, 0.06); }
.regsec__banner { border-radius: 16px; overflow: hidden; margin: 0 0 18px; }
.regsec__banner img { width: 100%; height: 168px; object-fit: cover; object-position: center; display: block; border-radius: 16px; }
.regsec__sub { text-align: center; color: var(--dark); font-size: 18px; font-weight: 500; margin: 0 0 7px; }
.regsec__title { text-align: center; color: var(--cyan); font-size: 20px; font-weight: 700; line-height: 1.25; margin: 0 0 18px; }
.regsec__currency { border-bottom: 1px solid var(--input-bg); padding: 6px 0 14px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.regsec__curlabel { font-size: 13px; font-weight: 500; color: var(--dark); }
.regsec__legal { color: #1ba3c3; font-size: 10px; line-height: 1.45; margin-top: 14px; }

/* ---------- Jackpot providers widget ---------- */
.jackpot-row { display: flex; gap: 12px; overflow-x: auto; padding: 0 14px 6px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.jackpot-row::-webkit-scrollbar { display: none; }
.jp-card { flex: 0 0 184px; width: 184px; border-radius: 16px; overflow: hidden; background-size: cover; background-position: top center; min-height: 271px; box-shadow: 0 6px 16px rgba(28, 79, 91, 0.14); display: flex; flex-direction: column; }
.jp-card__logo { height: 26px; width: auto; max-width: 96px; object-fit: contain; align-self: flex-end; margin: 12px 12px 0 0; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.25)); }
.jp-card__body { margin-top: auto; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.jp-tier { display: flex; justify-content: space-between; align-items: center; background: #fff; border-radius: 10px; padding: 9px 12px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18); }
.jp-tier__name { font-size: 13px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 7px; }
.jp-tier__amt { font-size: 13px; font-weight: 800; color: var(--orange); }
.jp-tier__dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; background: #9bb7c0; }
.jp-tier--diamond .jp-tier__dot { background: #4fc3e8; }
.jp-tier--gold .jp-tier__dot { background: #f3b13a; }
.jp-tier--silver .jp-tier__dot { background: #b9c6cc; }
.jp-tier--bronze .jp-tier__dot { background: #c98a4b; }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 10px 14px; }
.grid .card { flex: none; max-width: none; width: 100%; }
.grid .card__img { aspect-ratio: 1.4 / 1; }

/* ---------- Casino toolbar (TÃœM OYUNLAR dropdown + filter + search) ---------- */
.ctoolbar { position: relative; padding: 12px 14px 4px; }
.ctoolbar__row { display: flex; gap: 10px; align-items: center; }
.ctoolbar__select { flex: 1; display: flex; align-items: center; gap: 8px; height: 46px; padding: 0 14px; background: #fff; border-radius: 12px; font-size: 13px; font-weight: 700; color: var(--dark); box-shadow: 0 2px 8px rgba(28, 79, 91, 0.06); }
.ctoolbar__icon { width: 46px; height: 46px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--cyan); box-shadow: 0 2px 8px rgba(28, 79, 91, 0.06); }
.ctoolbar__search { display: flex; align-items: center; gap: 8px; margin-top: 10px; height: 46px; padding: 0 14px; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(28, 79, 91, 0.06); }
.ctoolbar__search input { flex: 1; border: none; outline: none; font-size: 14px; background: transparent; color: var(--dark); }
.ctoolbar__overlay { position: fixed; inset: 0; z-index: 40; }
.ctoolbar__menu { position: absolute; left: 14px; right: 14px; top: 62px; z-index: 41; background: #fff; border-radius: 14px; box-shadow: 0 12px 30px rgba(13, 42, 49, 0.25); padding: 6px; max-height: 62vh; overflow-y: auto; }
.ctoolbar__opt { display: block; width: 100%; text-align: left; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--dark); }
.ctoolbar__opt.active { background: var(--soft); color: var(--cyan); }
.ctoolbar__opt:active { background: var(--soft); }

/* ---------- Bonus banner ---------- */
.bonusbar { margin: 18px 12px 0; border-radius: 18px; overflow: hidden; background: linear-gradient(120deg, #6a2cff, #c026d3); color: #fff; padding: 16px 18px; }
.bonusbar h3 { margin: 0; font-size: 22px; font-weight: 800; }
.bonusbar p { margin: 4px 0 0; font-size: 13px; opacity: 0.92; }

/* ---------- Register prompt ---------- */
.regprompt { margin: 18px 12px 0; background: #fff; border-radius: 18px; padding: 18px; box-shadow: 0 6px 18px rgba(28, 79, 91, 0.06); }
.regprompt h3 { margin: 0 0 4px; font-size: 17px; font-weight: 800; color: var(--dark); }
.regprompt p { margin: 0 0 14px; font-size: 13px; color: var(--muted); }

/* ---------- Jackpot providers ---------- */
.jackpot { margin-top: 14px; padding: 0 14px; }
.jackpot__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.jackpot__cell { background: linear-gradient(180deg, #14586a, #0e3d49); border-radius: 14px; padding: 14px 10px; text-align: center; color: #fff; }
.jackpot__cell .amt { font-size: 15px; font-weight: 800; color: var(--orange); }
.jackpot__cell .lbl { font-size: 10px; opacity: 0.75; margin-top: 2px; }

/* ---------- Footer ---------- */
/* Orijinal bahsegel footer yapısı — mobil (cyan zemin) */
.footer { margin-top: 24px; background: var(--cyan); color: #fff; padding: 20px 16px calc(26px + 68px); font-family: "Inter", system-ui, sans-serif; line-height: 1.15; }
.footer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.footer__flag { width: 34px; height: 34px; border-radius: 50%; display: block; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(255,255,255,.25); }
.footer__adult { flex-shrink: 0; line-height: 0; }
.footer__adult svg { width: 30px; height: 31px; }
.footer__menu-wrap { display: flex; gap: 26px; margin-bottom: 28px; }
.footer-menu { min-width: 0; }
.footer-menu--info { flex: 1; }
.footer-menu__title { color: rgba(255,255,255,.5); text-transform: capitalize; margin: 0 0 12px; font-size: 18px; font-weight: 700; line-height: 22px; }
.footer-menu__list { margin: 0; padding: 0; list-style: none; }
.footer-menu__list-item { margin: 0 0 9px; }
.footer-menu__list-item:last-child { margin-bottom: 0; }
.footer-menu__list-item a { color: #dfeaf0; font-size: 14px; font-weight: 400; line-height: 19px; text-decoration: none; display: block; transition: color .2s; }
.footer-menu__list-item a:hover { color: #fff; text-decoration: underline; }
.footer-info__text-wrap h4 { color: #ff9e2c; font-size: 17px; font-weight: 700; line-height: 22px; margin: 0 0 14px; }
.footer-info__text-wrap p, .footer-info__preview-text { display: block; color: #fff; font-size: 13px; line-height: 18px; margin: 0 0 14px; }
.footer-info__text-wrap p:last-child { margin-bottom: 0; }
.footer-info__rg a { color: #bfe3ee; text-decoration: none; word-break: break-all; }
.footer-info__rg a:hover { text-decoration: underline; }

/* ---------- iframe page (sportsbook/game) ---------- */
.iframe-wrap { width: 100%; height: calc(100dvh - 56px - 64px); border: none; }
.iframe-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---------- SEO article block ---------- */
.seo-article { padding: 22px 16px 6px; }
.seo-article__title { font-size: 20px; font-weight: 800; color: var(--cyan); margin: 0 0 14px; }
.seo-article__block { margin-bottom: 16px; }
.seo-article__block h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0 0 6px; }
.seo-article__block p { font-size: 13.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- info / generic page ---------- */
.page-pad { padding: 16px 16px 0; }
.page-title { font-size: 22px; font-weight: 800; color: var(--cyan); margin: 6px 0 14px; }
.prose { font-size: 14px; line-height: 1.7; color: var(--dark); }
.prose h2 { font-size: 17px; margin: 18px 0 8px; color: var(--dark); }

/* ---------- Sportsbook ---------- */
.sb { padding-bottom: 6px; }
.sb__subnav { display: flex; align-items: center; gap: 18px; overflow-x: auto; padding: 12px 14px; background: #fff; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.sb__subnav::-webkit-scrollbar { display: none; }
.sb__navlink { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--dark); text-decoration: none; }
.sb__navlink svg { width: 20px; height: 20px; color: var(--cyan); }
.sb__navlink.active { color: var(--cyan); }
.sb__navlink.active svg { color: var(--orange); }
.sb__livebadge { background: #e23b3b; color: #fff; font-size: 9px; font-weight: 800; padding: 2px 5px; border-radius: 4px; }
.sb__navsearch { margin-left: auto; color: var(--cyan); flex: 0 0 auto; }
.sb__navsearch svg { width: 22px; height: 22px; }
.sb__searchrow { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #fff; border-bottom: 1px solid var(--line); }
.sb__searchrow input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: inherit; font-size: 14px; color: var(--dark); }
.sb__searchrow input::placeholder { color: var(--muted); }
.sb__noresult { text-align: center; color: var(--muted); font-size: 14px; padding: 28px 16px; }
.sb__banners { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin: 12px 14px 0; border-radius: 14px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.sb__banners::-webkit-scrollbar { display: none; }
.sb__banner { flex: 0 0 100%; scroll-snap-align: center; }
.sb__banner img { width: 100%; display: block; border-radius: 14px; }
.sb__dots { display: flex; justify-content: center; gap: 6px; margin-top: 8px; }
.sb__dots span { width: 7px; height: 7px; border-radius: 50%; background: #c2d6dd; transition: width 0.2s; }
.sb__dots span.active { width: 18px; border-radius: 4px; background: var(--cyan); }
.sb__sechead { display: flex; align-items: center; justify-content: space-between; padding: 16px 14px 8px; }
.sb__arrows { display: flex; gap: 6px; }
.sb__arrows button { width: 30px; height: 30px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(28, 79, 91, 0.1); color: var(--muted); font-size: 16px; }

/* popÃ¼ler maÃ§ kartÄ± (ortalÄ±) */
.sbm { background: #fff; border-radius: 14px; margin: 0 14px 12px; padding: 14px; box-shadow: 0 4px 12px rgba(28, 79, 91, 0.06); }
.sbm__head { display: flex; align-items: flex-start; justify-content: center; gap: 22px; position: relative; }
.sbm__flag { font-size: 30px; }
.sbm__center { text-align: center; min-width: 70px; }
.sbm__score { font-size: 18px; font-weight: 800; color: var(--orange); }
.sbm__status { font-size: 11px; color: var(--muted); margin-top: 2px; }
.sbm__layers { position: absolute; top: 0; right: 0; width: 18px; height: 18px; color: var(--orange); }
.sbm__teams { text-align: center; font-size: 15px; font-weight: 700; color: var(--dark); margin-top: 8px; }
.sbm__teams span { color: var(--muted); margin: 0 4px; }
.sbm__league { text-align: center; font-size: 12px; color: var(--muted); margin-top: 2px; }
.sbm__markets { display: flex; gap: 18px; overflow-x: auto; margin-top: 12px; scrollbar-width: none; }
.sbm__markets::-webkit-scrollbar { display: none; }
.sbm__market { flex: 0 0 auto; }
.sbm__market-name { font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.sbm__odds { display: flex; gap: 8px; }
.sbodd { display: flex; align-items: center; gap: 8px; height: 42px; padding: 0 14px; border-radius: 8px; background: var(--input-bg); }
.sbodd--on { background: var(--cyan); }
.sbodd--on .sbodd__l, .sbodd--on .sbodd__v { color: #fff; }
.sbodd__l { font-size: 12px; color: var(--muted); font-weight: 600; }
.sbodd__v { font-size: 14px; font-weight: 800; color: var(--dark); }

/* canlÄ± turnuva grubu */
.sblg { background: #fff; border-radius: 14px; margin: 0 14px 12px; padding: 12px 14px; box-shadow: 0 4px 12px rgba(28, 79, 91, 0.06); }
.sblg__head { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.sblg__flag { font-size: 16px; }
.sblg__name { font-size: 13px; font-weight: 700; color: var(--dark); }
.sblg__match { display: flex; align-items: center; gap: 12px; padding: 10px 0 4px; }
.sblg__teams { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sblg__team { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--dark); }
.sblg__tflag { font-size: 16px; }
.sblg__mid { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: var(--muted); gap: 2px; }
.sblg__scores { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 800; color: var(--orange); text-align: right; min-width: 16px; }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%); z-index: 200;
  background: var(--dark); color: #fff; padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); max-width: 90%; text-align: center;
}

/* ---------- profile ---------- */
.pf-head { background: var(--white); border-bottom: 1px solid var(--line); padding: 16px; }
.pf-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 12px 14px; scrollbar-width: none; }
.pf-tabs::-webkit-scrollbar { display: none; }
.pf-tab { flex: 0 0 auto; padding: 9px 16px; border-radius: 20px; background: var(--soft); color: var(--dark); font-size: 13px; font-weight: 600; }
.pf-tab.active { background: var(--cyan); color: #fff; }
.pf-card { background: #fff; border-radius: 16px; margin: 12px 14px; padding: 16px; box-shadow: 0 6px 18px rgba(28, 79, 91, 0.05); }
.pf-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.method { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; background: #fff; }
.method:active { border-color: var(--cyan); }
.method__ic { width: 44px; height: 44px; border-radius: 10px; background: var(--soft); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-weight: 800; font-size: 12px; overflow: hidden; }
.method__ic img { width: 100%; height: 100%; object-fit: contain; }
.method__body { flex: 1; }
.method__body b { font-size: 14px; color: var(--dark); }
.method__body small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.method__arrow { color: var(--muted); }
.amount-chips { display: flex; gap: 10px; margin: 12px 0; }
.amount-chips button { flex: 1; height: 46px; border-radius: 12px; background: var(--soft); color: var(--dark); font-weight: 700; }
.amount-chips button.active { background: var(--cyan); color: #fff; }

/* ---------- PHP: wallet tabs, profile sub-tabs, floating fields ---------- */
.wtabs { display: flex; gap: 18px; padding: 0 16px 12px; border-bottom: 1px solid var(--line); }
.wtab { font-size: 15px; font-weight: 700; padding-bottom: 8px; color: var(--muted); border-bottom: 2px solid transparent; }
.wtab.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.pftab, .htab { font-weight: 700; font-size: 15px; color: var(--muted); padding-bottom: 6px; border-bottom: 2px solid transparent; background: none; cursor: pointer; }
.pftab.active, .htab.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.pf-float { display: block; position: relative; margin-bottom: 12px; }
.pf-float > span { position: absolute; top: 9px; left: 16px; font-size: 11px; color: var(--muted); pointer-events: none; }
.pf-float > input, .pf-float > select { width: 100%; height: 58px; padding: 18px 16px 0; border-radius: 12px; border: none; background: var(--input-bg); font-size: 15px; color: var(--dark); outline: none; }

/* PHP: hidden attribute must win over component display rules */
[hidden] { display: none !important; }

.modal-overlay.open { display: flex; }

/* ---------- Auth header (Ödüller + balance + bronze loyalty) ---------- */
.hdr__rewards { display: flex; align-items: center; gap: 4px; height: 38px; padding: 0 10px; background: #f0f9fb; border-radius: 12px; }
.hdr__caret { width: 10px; height: 10px; }
.hdr__user { display: flex; align-items: center; gap: 7px; }
.hdr__bal { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.hdr__email { color: var(--cyan); font-size: 12px; font-weight: 500; }
.hdr__amt { color: var(--orange); font-size: 14px; font-weight: 700; }
.hdr__loyalty { width: 24px; height: 24px; }

/* ---------- Account bottom-sheet (slides up) ---------- */
.acct-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(13,42,49,.45); opacity: 0; visibility: hidden; transition: opacity .25s; }
.acct-overlay.open { opacity: 1; visibility: visible; }
/* Tam ekran (orijinal gibi): üstte beyaz hesap bilgisi, altta cyan nav alanı doldurur; alt menü görünür kalır */
.acct-sheet { position: fixed; left: 50%; top: 0; bottom: 0; transform: translateX(-50%) translateY(100vh); width: 100%; max-width: 480px; z-index: 95; background: #fff; display: flex; flex-direction: column; overflow-y: auto; transition: transform .3s ease; }
.acct-nav { padding-bottom: calc(36px + 64px + var(--safe-b, 0px)); } /* alt menü yüksekliği kadar boşluk */
.acct-navitem .acct-arrow { display: none; } /* orijinalde ok gizli */
.acct-sheet.open { transform: translateX(-50%) translateY(0); }
.acct-close { position: absolute; top: calc(14px + var(--safe-t, 0px)); right: 14px; width: 34px; height: 34px; border-radius: 12px; background: #e1f3f7; border: none; cursor: pointer; z-index: 2; }
.acct-close::before, .acct-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: #1ba3c4; }
.acct-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.acct-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.acct-info { padding: calc(22px + var(--safe-t, 0px)) 20px 24px; flex-shrink: 0; }
.acct-level { display: flex; align-items: center; gap: 13px; }
.acct-level__icon { width: 45px; height: 45px; }
.acct-nick { color: #1095b5; font-size: 18px; font-weight: 600; margin-bottom: 2px; }
.acct-lvl { color: #77959d; font-size: 14px; }
.acct-lvl b { color: #1c4f5b; margin-left: 5px; }
.acct-loyalty { color: #f79420; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 7px; }
.acct-progress { height: 8px; background: #dfeaf0; border-radius: 4px; margin: 14px 0 20px; overflow: hidden; }
.acct-progress__bar { height: 100%; background: linear-gradient(#ff9e2c, #ffb72c); }
.acct-balances { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 2px dotted #1ba3c3; }
.acct-bal { display: flex; justify-content: space-between; font-size: 15px; }
.acct-bal:not(:last-child) { margin-bottom: 10px; }
.acct-bal span { color: #77959d; }
.acct-bal b { color: #f79420; font-weight: 700; }
.acct-new { background: #ff9e2c; color: #fff; font-size: 10px; font-weight: 600; padding: 2px 5px; border-radius: 10px; margin-left: 5px; font-style: normal; }
.acct-deposit { margin-top: 4px; }
.acct-nav { background: linear-gradient(#1da5c5, #3cc4e9); border-radius: 17px 17px 0 0; padding: 24px 20px 36px; flex: 1 0 auto; }
.acct-navitem { display: flex; align-items: center; gap: 15px; background: #fff; border-radius: 12px; padding: 14px; margin-bottom: 10px; color: #1c4f5b; font-size: 15px; font-weight: 600; }
.acct-navitem span { flex: 1; }
.acct-logout { display: flex; justify-content: center; align-items: center; height: 44px; border: 1px solid #fff; border-radius: 12px; color: #fff; font-weight: 600; margin-top: 14px; }

/* ---------- Rewards / notifications panel (Bildirimler ve Ödüller) ---------- */
.rwd-overlay { position: fixed; inset: 0; z-index: 108; background: rgba(13,42,49,.3); opacity: 0; visibility: hidden; transition: opacity .2s; }
.rwd-overlay.open { opacity: 1; visibility: visible; }
.rwd { position: fixed; top: 0; left: 50%; transform: translateX(-50%) translateY(8px); width: 100%; max-width: 480px; bottom: 0; z-index: 110; background: var(--body-bg); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; overflow-y: auto; padding-bottom: 80px; }
.rwd.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.rwd__head { display: flex; align-items: center; justify-content: center; position: relative; padding: calc(16px + var(--safe-t, 0px)) 16px 16px; background: #fff; }
.rwd__title { font-size: 18px; font-weight: 700; color: var(--dark); }
.rwd__close { position: absolute; right: 16px; top: calc(13px + var(--safe-t, 0px)); width: 30px; height: 30px; border-radius: 12px; background: #e1f3f7; border: none; cursor: pointer; }
.rwd__close::before, .rwd__close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: #1ba3c4; }
.rwd__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.rwd__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.rwd__body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.rwd-item { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid #dfeaf0; border-radius: 17px; padding: 18px 22px; box-shadow: 0 12px 30px rgba(28,51,56,.08); }
.rwd-item__ic { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rwd-item__ic--fifa { width: 36px; height: 36px; background: #ff9e2c; color: #fff; border-radius: 8px; font-size: 8px; font-weight: 800; line-height: 1.1; text-align: center; }
.rwd-item__txt { flex: 1; }
.rwd-item__txt b { display: block; color: var(--dark); font-size: 15px; font-weight: 600; }
.rwd-item__txt small { color: var(--dark); font-size: 13px; }
.rwd-item__more { color: #77959d; font-size: 20px; }
.rwd-notif { background: #fff; border: 1px solid #dfeaf0; border-radius: 17px; padding: 18px 22px; box-shadow: 0 12px 30px rgba(28,51,56,.08); }
.rwd-notif__head { display: flex; align-items: center; gap: 16px; }
.rwd-notif__head b { flex: 1; color: var(--dark); font-size: 15px; font-weight: 600; }
.rwd-notif__all { color: var(--dark); font-size: 14px; }
.rwd-notif__empty { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 28px 0 8px; }
.rwd-notif__empty p { color: var(--cyan); font-size: 13px; margin: 0; }

/* Para Yatır yöntem listesi — orijinal cashbox-method tasarımı */
.cashbox-methods-list__list { color: #1c4f5b; font-family: "Inter", system-ui, sans-serif; line-height: 1.15; }
.cashbox-method { box-sizing: border-box; cursor: pointer; background: #fff; border: 1px solid transparent; border-bottom-color: rgba(29,34,47,.1); align-items: center; box-shadow: 0 12px 28px rgba(28,51,56,.04); text-decoration: none; }
.cashbox-method__collapsed { justify-content: space-between; padding: 0 10px; display: flex; }
.cashbox-method__collapsed .cashbox-method__info { margin-left: 10px; margin-right: auto; }
.cashbox-method.box__default { width: 100%; height: 56px; font-size: 11px; }
.cashbox-method__logo { background: #f0f9fb; border-radius: 12px; justify-self: center; flex-shrink: 0; width: 68px; height: 40px; display: flex; align-items: center; justify-content: center; }
.cashbox-method__logo img { width: 100%; max-width: 100%; height: 100%; padding: 5px; object-fit: contain; }
.cashbox-method__info__method-name { color: #1c4f5b; text-overflow: ellipsis; white-space: nowrap; max-width: 230px; font-size: 15px; font-weight: 400; line-height: 21px; overflow: hidden; }
.cashbox-method__tip { width: 16px; height: 16px; display: flex; flex-shrink: 0; margin-right: 4px; }
.cashbox-method__arrow { display: block; flex-shrink: 0; transition: all .15s; }
.cashbox-method__arrow path { stroke: #77959d; }
.limits-info { display: inline-grid; grid-template-columns: auto auto; gap: 10px; }
.limits-info__value { color: #1095b5; font-size: 13px; }
.limits-info__value .label { color: #1095b5; text-transform: capitalize; margin-right: 3px; }
.cashbox-methods-list__item:first-child .cashbox-method { border-top-left-radius: 12px; border-top-right-radius: 12px; }
.cashbox-methods-list__item:last-child:not(:first-child) .cashbox-method { border-bottom-right-radius: 12px; border-bottom-left-radius: 12px; }

/* Profil > Bonuslarım sayfası */
.bp { padding: 4px 16px 20px; }
.bp-calc { background: var(--soft); border-radius: 12px; padding: 16px; margin-top: 6px; }
.bp-calc__title { color: var(--dark); font-size: 15px; font-weight: 600; }
.bp-calc__desc { color: var(--dark); opacity: .8; font-size: 13px; margin-top: 6px; line-height: 1.5; }
.bp-calc__btn { height: 44px; margin-top: 14px; }
.bp-result { background: #fff; border-radius: 12px; min-height: 64px; margin-top: 12px; display: flex; align-items: center; justify-content: center; padding: 22px 16px; }
.bp-result__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.bp-result__text { color: var(--dark); opacity: .6; font-size: 13px; line-height: 1.4; }
.bp-code { background: var(--soft); border-radius: 17px; padding: 20px; margin-top: 16px; }
.bp-code__label { color: var(--dark); font-weight: 600; font-size: 15px; display: block; margin-bottom: 10px; }
.bp-code__desc { color: var(--muted); font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.bp-code__input { background: var(--input, #dfeaf0); border: 1px solid #dfeaf0; border-radius: 8px; height: 52px; width: 100%; padding: 0 16px; color: var(--dark); font-size: 15px; outline: none; }
.bp-code__warn { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.bp-code__warn-text { color: #000; font-size: 13px; font-weight: 500; flex: 1; line-height: 1.3; }
.bp-code__btn { height: 40px; padding: 0 18px; border-radius: 12px; font-weight: 700; flex-shrink: 0; }
.bp-section-title { color: var(--dark); font-weight: 600; font-size: 15px; display: block; margin: 26px 0 12px; }
.bp-empty { text-align: center; color: var(--dark); background: #fff; border-radius: 17px; padding: 24px 0; font-size: 13px; font-weight: 500; }
.bp-avail { display: flex; flex-direction: column; gap: 10px; }
.bp-bonus { background: #fff; border-radius: 14px; padding: 14px; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.bp-bonus__name { color: var(--dark); font-size: 15px; font-weight: 600; line-height: 1.3; }
.bp-bonus__rate { color: var(--muted); font-size: 13px; margin-top: 4px; }
.bp-bonus__details { color: var(--muted); font-size: 13px; margin-top: 6px; }
.bp-bonus__btn { width: 100%; height: 40px; margin-top: 12px; border-radius: 12px; font-weight: 700; }

/* Bonuslar sayfası */
.bonus-tabs { display: flex; gap: 24px; padding: 12px 16px 0; border-bottom: 1px solid var(--line); }
.bonus-tab { padding: 8px 0 12px; font-weight: 700; font-size: 15px; color: var(--muted); border-bottom: 3px solid transparent; }
.bonus-tab.active { color: var(--cyan); border-bottom-color: var(--orange); }
.bonus-list { padding: 16px; display: flex; flex-direction: column; gap: 18px; }
.bonus-card { background: #fff; border-radius: 18px; padding: 12px; box-shadow: 0 8px 22px rgba(28,79,91,.08); }
.bonus-card__banner { display: block; width: 100%; border-radius: 12px; overflow: hidden; }
.bonus-card__banner img { width: 100%; display: block; border-radius: 12px; }
.bonus-card__body { padding: 14px 6px 4px; }
.bonus-card__title { color: var(--dark); font-size: 18px; font-weight: 800; line-height: 1.25; margin: 0 0 8px; }
.bonus-card__desc { color: var(--cyan); font-size: 14px; margin: 0 0 14px; line-height: 1.4; }
.bonus-card__btn { height: 48px; }
/* Bonus detay modalı */
.bonus-modal__panel { max-height: 86vh; overflow-y: auto; text-align: left; }
.bonus-modal__title { text-align: left; color: var(--cyan); font-size: 19px; line-height: 1.3; margin: 0 36px 14px 0; }
.bonus-modal__body { color: var(--dark); font-size: 13.5px; line-height: 1.7; }
.bonus-modal__body p { margin: 0 0 11px; }
.bonus-modal__body p:last-child { margin-bottom: 0; }

/* Para Yatır: miktar + bonus seçimi (cashbox-fields) */
.cashbox-fields { width: 100%; }
.cashbox-fields .amount-selection { background: #fff; border-radius: 17px; margin: 4px 16px 20px; padding: 15px; }
.cashbox-method-wrap.available-bonuses { margin-top: 17px; }
.cashbox-method-wrap__header { display: grid; grid-template-columns: 1fr 1fr; align-items: center; margin: 0 0 6px; }
.cashbox-method-wrap__header__title { text-transform: capitalize; color: var(--dark); font-size: 15px; font-weight: 600; line-height: 21px; }
.cashbox-method-wrap__header__info { justify-self: end; }
.cashbox-method-wrap .limits-info { justify-content: flex-end; font-size: 12px; gap: 2px; }
.amount-input { display: flex; flex-direction: column; }
.amount-input--bottom .button-group { order: 1; margin-top: 10px; }
.custom-input__container { position: relative; width: 100%; }
.custom-input__wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 52px; position: relative; background: 0 0; border: none; border-bottom: 2px solid #ff9e2c; }
.custom-input__currency { color: #ff9e2c; font-size: 24px; width: 18px; flex-shrink: 0; }
.custom-input__input-field { color: var(--dark); background: 0 0; border: none; flex-grow: 1; width: 100%; height: 100%; padding: 10px 0 8px 6px; font-size: 24px; font-weight: 600; line-height: 29px; outline: none; }
.custom-input__icon { display: flex; align-items: center; justify-content: center; width: 30px; flex-shrink: 0; }
.button-group__amount { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cashbox-fields .btn-default { color: var(--dark); background: #f0f9fb; border: 1px solid #f0f9fb; border-radius: 12px; height: 48px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cashbox-fields .btn-default--selected { background: 0 0; border-color: #ff9e2c; }
.cashbox-bonus-section { position: relative; }
.cashbox-bonus { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 10px 12px; background: #fff; border: 1px solid #dfeaf0; border-radius: 17px; margin-bottom: 10px; cursor: pointer; box-shadow: 0 6px 16px rgba(28,51,56,.05); }
.cashbox-bonus.selected { border-color: #ff9e2c; }
.cashbox-bonus--img-content { display: flex; align-items: center; gap: 10px; }
.cashbox-bonus__thumb { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.cashbox-bonus--content-block { display: inline-flex; flex-direction: column; }
.cashbox-bonus--content-block__label { color: var(--dark); opacity: .8; font-size: 11px; font-weight: 500; }
.cashbox-bonus--content-block__description { color: var(--dark); font-size: 13px; font-weight: 500; }
.cashbox-bonus__checkbox { width: 24px; height: 24px; border: 2px solid #1c4f5b; border-radius: 50%; flex-shrink: 0; position: relative; }
.cashbox-bonus.selected .cashbox-bonus__checkbox { border-color: #ff9e2c; }
.cashbox-bonus.selected .cashbox-bonus__checkbox::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #ff9e2c; }
.cashbox-fields__err { display: none; color: var(--orange); font-size: 13px; font-weight: 600; text-align: center; margin-top: 8px; }
.cashbox-fields__step-btn { width: 100%; height: 44px; border: 1px solid #1095b5; background: 0 0; color: #1095b5; border-radius: 12px; font-weight: 600; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-top: 10px; }
.cashbox-fields__step-btn:active, .cashbox-fields__step-btn.selected { background: #1095b5; color: #fff; }
.paym-continue { height: 48px; margin: 10px 0 0; }
.paym-continue:disabled { opacity: .5; cursor: not-allowed; }

/* Para Yatır: IBAN ödeme pop-up — ekran ortasında */
.paym-overlay { align-items: center; }
.paym { background: #fff; border-radius: 16px; width: 100%; max-width: 460px; margin: 0 16px; max-height: 90vh; overflow-y: auto; position: relative; padding: 28px 20px 22px; }
.paym__close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 12px; background: #e1f3f7; border: none; cursor: pointer; z-index: 2; }
.paym__close::before, .paym__close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; background: #1ba3c4; }
.paym__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.paym__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.paym__title { color: #1095b5; font-size: 20px; font-weight: 700; line-height: 1.25; margin: 0 36px 18px 0; }
.paym__fields { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.paym__field { display: flex; align-items: center; justify-content: space-between; background: #f0f5f8; border-radius: 14px; padding: 11px 13px; }
.paym__flabel { color: var(--dark); font-size: 16px; }
.paym__fval { color: var(--dark); font-size: 16px; font-weight: 500; text-align: right; max-width: 65%; word-break: break-word; }
.paym__cur { color: #f69420; }
.paym__details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.paym__dtitle { color: #1095b5; font-size: 18px; font-weight: 600; margin: 0; }
.paym__dsub { color: var(--dark); font-size: 15px; line-height: 1.4; margin-bottom: 4px; }
.paym__inputs { display: flex; flex-direction: column; gap: 8px; }
.paym__inp { position: relative; background: #dfeaf0; border: 1px solid #dfeaf0; border-radius: 8px; height: 52px; display: flex; align-items: center; }
.paym__inp input { flex-grow: 1; width: 100%; height: 100%; border: none; background: 0 0; color: var(--dark); font-size: 15px; padding: 22px 0 6px 14px; outline: none; }
.paym__ph { position: absolute; top: 8px; left: 14px; color: #1ba3c4; font-size: 11px; pointer-events: none; }
.paym__copy { width: 42px; flex-shrink: 0; background: 0 0; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.paym__copy.copied svg path { stroke: #2ecc71; }
.paym__info { display: flex; align-items: center; gap: 10px; background: #f0f9fb; border: 1px solid #1095b5; border-radius: 15px; padding: 10px; margin: 16px 0; }
.paym__info svg { flex-shrink: 0; }
.paym__info span { color: var(--dark); font-size: 12px; line-height: 1.35; }
.paym__submit { height: 48px; }
.paym__err { display: none; color: var(--orange); font-size: 13px; font-weight: 600; text-align: center; margin-top: 10px; }
.paym__ok { text-align: center; padding: 10px 0; }
.paym__okcheck { width: 80px; height: 80px; border-radius: 50%; background: #E7F6EC; color: #2ecc71; font-size: 42px; display: flex; align-items: center; justify-content: center; margin: 8px auto 14px; }
.paym__ok h3 { color: var(--cyan); font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.paym__ok p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0 0 8px; }

/* Casino: filtre sonuç yok */
.casino-noresult { text-align: center; padding: 42px 16px; color: var(--muted); font-size: 14px; }

/* Drawer: Son Kazananlar canlı akışı */
.drawer-winners { margin: 16px 0 0; padding: 14px 16px calc(16px + var(--safe-b, 0px)); border-top: 1px solid var(--line); }
.dw-title { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .6px; margin: 0 0 14px; }
.dw-list { display: flex; flex-direction: column; gap: 14px; }
.dw-item { display: flex; align-items: center; gap: 12px; }
.dw-icon { width: 42px; height: 42px; border-radius: 9px; object-fit: cover; flex-shrink: 0; background: var(--soft); }
.dw-body { min-width: 0; }
.dw-name { color: var(--cyan); font-weight: 700; font-size: 14px; line-height: 1.2; }
.dw-desc { color: var(--dark); font-size: 12px; line-height: 1.4; margin-top: 3px; }
.dw-desc b { font-weight: 700; }
.dw-amt { white-space: nowrap; }
.dw-item--new { animation: dwIn .5s ease; }
@keyframes dwIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* LiveChat: varsayılan yüzen baloncuk gizli; sadece "Destek" ile açılır */
#chat-widget-container { display: none !important; }
body.lc-open #chat-widget-container { display: block !important; }

/* Para yatırma / çekme bilgi satırları */
.dep-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.dep-row:last-child { border-bottom: 0; }
.dep-row span { color: var(--muted); font-size: 13px; flex-shrink: 0; }
.dep-row b { color: var(--dark); font-size: 13px; text-align: right; word-break: break-all; max-width: 64%; }
