/* =========================
   GENEL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #ffffff;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  padding-bottom: 70px; /* alttaki fixed menü içerik üstüne binmesin */
}

a { color: inherit; }

/* =========================
   ÜST HEADER
========================= */
.top-header {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: none; /* alttaki ince çizgiyi sub-header'da yapıyoruz */
}

.header-left {
  display: flex;
  align-items: center;
}

/* LOGO */
.logo-img {
  height: 35px;   /* logo boyutu buradan */
  width: auto;
  display: block;
}

/* Sağ taraf: Giriş / Kayıt / 3 nokta */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login-link {
  color: #fff;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
}

.btn-register{
  font-family: "Wolf2", 'Roboto', sans-serif !important;
  font-weight: 400 !important;
  font-synthesis: none;    /* ✅ KALINLIK GİTTİ */ /* ✅ KAYIT da Wolf2 */
  height: 28px;
  max-width: 84px;
  padding: 0 8px;

  background: #f7a600;
  color: #000;

  border: none;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  transition: background-color .2s ease;
}

/* 3 nokta menü + badge */
.more-menu {
  position: relative;
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.more-menu i {
  color: #fff;
  font-size: 14px;
}

.badge{
  position: absolute;
  top: -4px;
  right: -4px;
  background: #f7a600;
  color: #000;

  font-size: 9px;
  font-weight: 500;              /* ✅ 900 yerine 500 (ince) */
  letter-spacing: .1px;

  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 2px solid #000;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   SUB HEADER (Cüzdan / Yıldız) + İNCE ÇİZGİ
========================= */
.sub-header-bar {
  background-color: #000;
  padding: 6px 15px;
  display: flex;
  gap: 8px;
  position: relative;
}

/* Üstteki ince çizgi: daha ince görünsün */
.sub-header-bar::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleY(0.5);
  transform-origin: top;
  pointer-events: none;
}

.icon-box {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.green-wallet {
  background-color: #1a8e49;
  color: #fff;
}

.white-star {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
}

/* =========================
   MAIN NAV (Yatay kaydırmalı)
========================= */
/* =========================
   MAIN NAV (Yatay kaydırmalı) - DÜZELTİLMİŞ
========================= */
.main-nav{
  background-color: #1a1a1a;
  padding: 12px 0;              /* yatay padding'i ul'a verdim */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.main-nav ul{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between; /* yer varsa eşit dağıtır */
  gap: 0;
  width: 100%;
  padding: 0 10px;              /* tünelin iç boşluğu */
}

.main-nav li{
  flex: 1 0 auto;               /* içerik kadar min, boşluk varsa büyür */
}

.main-nav a{
  position: relative;            /* ✅ YENİ badge düzelsin */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  /* ✅ FONTLAR GERİ GELDİ */
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;

  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 6px 10px;
  white-space: nowrap;
  transition: color .3s ease;
}

.main-nav a:hover{ color:#fff; }

/* YENİ badge */
.new-badge {
  position: absolute;
  top: -12px;
  right: 0;
  background-color: #7F194F;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.new-badge::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0 4px;
  border-style: solid;
  border-color: #7F194F transparent transparent transparent;
}
.slider-container {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  position: relative;

}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}






.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease-out;
  cursor: grab;
}

.slider-track:active {
  cursor: grabbing;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

/* =========================
   ALT MENÜ (fixed)
========================= */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #333;
  z-index: 10;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #888;
  font-size: 12px;
  cursor: pointer;
}

.nav-item i {
  font-size: 20px;
  margin-bottom: 5px;
}

.nav-item:hover {
  color: #ffb800;
}

.bottom-nav{
  padding: 8px 0;
}

.nav-item{
  gap: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

.nav-icon{
  position: relative;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon i{
  font-size: 20px;
}

/* CANLI'daki sayı balonu */
.nav-badge{
  position: absolute;
  top: -6px;
  right: -10px;
  background: #f7a600;
  color: #000;
  font-size: 10px;
  font-weight: 900;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

/* CASINO için "780" ikon gibi dursun */
.slot-ico{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  color: #9aa0a6;
}

/* Aktif menü (CANLI) alt çizgi */
.nav-item.is-active{
  color: #fff;
  position: relative;
}

@font-face{
  font-family: "BetConstruct-Icons";
  src: url("./icons/bc-icons.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

.bc{
  font-family: "BetConstruct-Icons" !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bc-i-slots::before{ content: ""; }
.bc-i-live::before{ content: ""; }
/* BAHİS */
.bc-i-prematch::before{ content: ""; }





.nav-icon{
  position: relative;
  width: 28px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-badge{
  position: absolute;
  top: -8px;
  right: -12px;
  z-index: 5;
}

.nav-item { color: #8b8b8b; }          /* normal gri */
.nav-item.is-active { color: #8b8b8b; } /* aktifken de aynı kalsın */
/* KUPON */
.bc-i-betslip::before{ content: ""; }
/* CANLI CASİNO */
.bc-i-livecasino::before{ content: ""; }



.bc-i-tournament::before {content: "";}


/* Wallet icon mapping */
.bc-i-wallet::before{
  content: "";
}


/* STAR / loyalty points */
.bc-i-loyalty-points::before{
  content: "";
}



/* ESKİ border-bottom'u bırakıyoruz, çizgiyi ::after ile çiziyoruz */
.btn-login-link{
  font-family: "Wolf2", 'Roboto', sans-serif !important;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;

  line-height: 1;
  padding-bottom: 0; /* boşluk istemiyoruz */
}

/* Çizgi */
.btn-login-link::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;

  bottom: -0px; /* ÇİZGİYİ YUKARI ALIR: 0px / 1px / 2px dene */
}



/* Scroll açık kalsın */
html, body { height: 100%; }
body{
  overflow-x: hidden;
  overflow-y: auto;
}

/* Alt bar fixed ise içerik altına girmesin */
body{
  padding-bottom: 90px; /* bottom-nav yüksekliği kadar */
}

/* Bottom nav sabit kalsın (zaten fixed ise sorun olmaz) */
.bottom-nav{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
}

/* Şimdilik test için slider sonrası sayfada boşluk oluştur (HTML eklemeden) */
/* =========================
   RAILS (KATEGORİ ŞERİTLERİ)
   Slider'ın TAM ALTINA BİTİŞİK
========================= */

/* Slider alt boşluklarını sıfırla */
.slider-container{
  margin: 0 !important;
  padding: 0 !important;
}

/* Track/slide boşluk varsa sıfırla */
.slider-track, .slide{
  margin: 0 !important;
  padding: 0 !important;
}

/* img altındaki inline boşluk (1-2px) gider */
.slide img{
  display: block;
  width: 100%;
  height: auto;
}

/* rails slider’a yapışsın */
.rails--attached{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Genel rails dış boşluk */
.rails{
  padding: 10px 14px 20px;
}

/* her kategori satırı */
.rail{
  margin: 12px 0 18px;
}

/* ilk satır üst boşluk olmasın (bitişik dursun) */
.rails--attached .rail:first-child{
  margin-top: 0 !important;
}

/* başlık satırı */
.rail__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rail__title{
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* sağdaki daha fazlası */
.rail__more{
  color: #9aa0a6;
  text-decoration: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.rail__arrow{
  font-size: 20px;
  line-height: 1;
}

/* yatay kaydırma alanı */
.rail__track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 2px;
}

/* scrollbar gizle */
.rail__track::-webkit-scrollbar{ height: 0; }
.rail__track{ scrollbar-width: none; }

/* kart */
.rail__card{
  position: relative;
  flex: 0 0 auto;
  width: 152px;
  height: 106px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  scroll-snap-align: start;
  text-decoration: none;
}

.rail__card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* çapraz etiket */
.rail__badge{
  position: absolute;
  top: 10px;
  right: -36px;
  transform: rotate(45deg);
  width: 120px;
  padding: 4px 0;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  box-shadow: 0 4px 10px rgba(0,0,0,.35);
  pointer-events: none;
}

.rail__badge--green{ background: #2ecc71; }
.rail__badge--purple{ background: #8e44ad; }

/* hafif hover */
.rail__card{
  transition: transform .15s ease;
}
.rail__card:hover{
  transform: translateY(-1px);
}









/* TURNUVALAR BLOĞU */
.tournaments-section{
  width: 100%;
  background: linear-gradient(180deg, #232323 0%, #1b1b1b 100%);
  border-top: 1px solid rgba(255,255,255,.12);
}

/* ÜST BAR */
.tournaments-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tournaments-left{
  display:flex;
  align-items:center;
  gap: 10px;
}

.tournaments-title{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  color: #fff;
  text-transform: uppercase;
}

/* ikon boyutu (bc sınıfı fontu zaten basıyor) */
.tournaments-icon{
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

/* SAĞ: Tümünü Gör */
.tournaments-more{
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.tournaments-more:hover{ color:#fff; }

/* LİSTE */
.tournaments-list{
  padding: 12px 15px 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.tournament-item{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px;
  background: #3a3a3a;
  border: 1px solid rgba(0,0,0,.35);
  border-radius: 6px;
  text-decoration: none;
}

.tournament-thumb{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 44px;
}

.tournament-info{
  display:flex;
  flex-direction:column;
  gap: 4px;
  min-width: 0;
}

.tournament-name{
  font-size: 13px;
  font-weight: 800;
  color: #ffb100;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tournament-prize{
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}





/* RAILS ARKA PLANINI SİYAH YAP */
main{
  background: #000 !important;
}

.rails{
  background: #000 !important;
}

/* Eğer rail'lerde gradient/renk varsa sıfırlar */
.rail{
  background: transparent !important;
}




/* ALT MENÜ: içerik görünsün + blur (glass) */
.bottom-nav{
  background: rgba(0,0,0,.35) !important;  /* şeffaf siyah */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);
}

/* ikon/yazılar cam üstünde daha net dursun */
.bottom-nav .nav-item span{
  color: rgba(255,255,255,.85);
}

.bottom-nav .nav-icon i,
.bottom-nav i{
  color: rgba(255,255,255,.85);
}

/* aktif olan biraz daha parlak */
.bottom-nav .nav-item.is-active span,
.bottom-nav .nav-item.is-active i{
  color: #fff;
}









:root{
  --bottomnav-h: 55px;     /* toplam yükseklik (px) */
  --bottomnav-pt: 10px;    /* üst padding (px) */
  --bottomnav-pb: 10px;    /* alt padding (px) */
}

/* ALT MENÜ: yükseklik + padding px kontrol */
.bottom-nav{
  height: var(--bottomnav-h) !important;
  padding-top: var(--bottomnav-pt) !important;
  padding-bottom: var(--bottomnav-pb) !important;

  /* senin blur ayarın kalsın */
  background: rgba(0,0,0,.35) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);

  display: flex;
  align-items: center;
}

/* item'ların ortalanması */
.bottom-nav .nav-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ikon + yazı arası mesafe (px) */
.bottom-nav .nav-item .nav-icon{
  margin-bottom: -3px; /* bunu da px ile oynarsın */
}







/* SADECE badge içindeki sayı (9) — arka plan ve 3 nokta dokunulmaz */
.hdr-toggle-button-bc.count-odd-animation::after{
  /* wolf ikonunda hangi renk kullanılıyorsa onu buraya koy:
     örn: rgba(var(--hero-sc), 1) zaten sende var */
  color: rgba(var(--hero-sc), 1) !important;

  /* yazı stilini sitedeki yazı stilinden çeksin */
  font-family: var(--font-family) !important;

  /* daha tok dursun (Roboto dosyanda 700/900 varsa) */
  font-weight: 0 !important;
}






/* Eğer yazı pseudo-element/overlay ise kapat */
.slider-container::before,
.slider-container::after,
#slider-track::before,
#slider-track::after,
.slide::before,
.slide::after {
  content: none !important;
  display: none !important;
}























.is-hidden{ display:none !important; }




/* --- USER ICON (wolficon / bc icon font) --- */
.bc-i-user::before{
  content: "";
  font-family: "BetConstruct-Icons"; /* sende hangi fontsa o */
  speak: none;
}

/* Sağ üstteki grup hizası */
.header-right{
  display:flex;
  align-items:center;
  gap: 15px;
}

/* ₺ kutucuğu */
.hdr-curbox{
  height: 31px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.322);
  background: rgba(255, 255, 255, 0.116);
  color: rgba(255,255,255,.9);
  font-family: Roboto, Arial, sans-serif;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  gap: 8px;

  
}


/* Bakiye yazısı (Roboto ince) */
.hdr-balance{
  display:flex;
  align-items:center;
  gap: 2px;
  color: rgba(255,255,255,.9);
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;   /* ince */
  letter-spacing: .1px;
}

.hdr-balance__cur{
  opacity: .85;
}

/* Yeşil parlayan kullanıcı butonu */
.hdr-user{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  /* yeşil parıltı */
  background: radial-gradient(circle at 30% 30%, rgba(80,255,140,.55), rgba(0,0,0,.15));
  box-shadow:
    0 0 0 2px rgba(60,255,140,.18),
    0 0 14px rgba(60,255,140,.35);

  color: rgba(255,255,255,.95);
  font-size: 28px; /* ikon boyu */
  line-height: 1;
}

.hdr-user:hover{
  box-shadow:
    0 0 0 2px rgba(60,255,140,.28),
    0 0 18px rgba(60,255,140,.45);
}


/* ikonun parlaması */
.hdr-user.bc-i-user::before{
  text-shadow: 0 0 12px #109121, 0 0 20px #109121;
  color: rgba(255,255,255,.57); /* .95 yerine daha az beyaz */
}







.bc-i-small-arrow-down::before{
  content: "";
  font-family: "BetConstruct-Icons"; /* wolf/bc font hangisiyse */
}


.hdr-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left: 6px;
  font-size: 7px;    /* ok boyutu */
  line-height: 10px;
  color: rgb(255, 255, 255);
}





.hdr-tl{
  width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}










/* header'daki 9 balonunu büyüt */
.more-menu .badge{
  min-width: 16px;     /* 14-22 arası oynayabilirsin */
  height: 16px;
  line-height: 16px;
  font-size: 9px;
  padding: 0 3px;      /* 9-10 gibi iki haneli olursa sığsın */
  border-radius: 999px;
}







/* X (BC icon) */
.bc-i-close-remove::before{
  content: "\e5cd";                 /*  */
  font-family: "BetConstruct-Icons";
}

/* X ölçü/renk (senin yaptığın gibi) */
.e-p-close-icon-bc{
  display: block;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  text-decoration: none;
}
.e-p-close-icon-bc:hover{ color: rgba(255,255,255,.9); }






























/* PANEL LAYOUT */
.panel-main{
  padding: 18px 12px 24px;
  background:#000;
}

.wallet-row{
  display:flex;
  gap: 75px;
  align-items: stretch;
}

/* SOL YEŞİL KART */
.wallet-main{
  flex: 1;
  border-radius: 6px;
  padding: 14px 14px 16px;
  background: linear-gradient(90deg, rgba(80,190,95,.85), rgba(35,165,60,.95));
}

.wallet-main__top{
  position: relative;
  padding-right: 44px; /* sağ üst mini ikon alanı */
}

.wallet-main__title{
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  opacity: 0.9;
  color: rgba(255,255,255,.9);
  letter-spacing: .2px;  
  font-size: 14px;   /* 12 ise 14-16 dene */
  font-weight: 800;
  letter-spacing: .4px;
}

.wallet-main__amount{
  margin-top: 4px;
  margin-bottom: 6px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
}

/* sağ üst küçük buton */
.wallet-mini-btn{
  position:absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ALT BUTONLAR */
.wallet-actions{
  display:flex;
  gap: 12px;
  margin-top: 12px;
}

.wallet-btn{
  flex: 2;
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  text-transform: uppercase;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

/* SAĞ SARI KART */
.wallet-bonus{
  width: 140px;
  border-radius: 6px;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(195,160,70,.95), rgba(150,120,40,.95));
}

.wallet-bonus__title{
  font-family: Roboto, Arial, sans-serif;
  line-height: 20px;
  opacity: .9;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  
}

.wallet-bonus__amount{
  line-height: 22px;
  margin-top: 6px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.wallet-bonus__sub{
  margin-inline-end: 5px;
  opacity: .8;
  font-weight: 400;
  margin-top: 6px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.8);
}



/* Bonus kutusunda alt yazının üstüne ince çizgi */
.wallet-bonus__sub{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.25);
}













/* WOLF/BC ICON GENEL */
.wallet-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
  color: rgba(255,255,255,.95);
}

/* Mobilde alt alta */
@media (max-width: 860px){
  .wallet-row{ flex-direction: column; }
  .wallet-bonus{ width: 100%; }
}



/* Yeşil içeride, sarı sağa taşsın */
.wallet-row{
  align-items: stretch;
}

/* Yeşil kart soldan içeride */
.wallet-main{
  margin-left: 180px;     /* 12-24 arası ayarla */
}

/* Sarı kart sağa doğru çıksın */
.wallet-bonus{
  margin-right: -18px;   /* sağa taşır (eksi = dışarı) */
}


.bc-i-wallet::before{
  content: "";
  font-family: "BetConstruct-Icons";
}

.bc-i-withdraw::before{
  content: "";
  font-family: "BetConstruct-Icons";
}

.bc-i-eye::before{
  content: "";
  font-family: "BetConstruct-Icons";
}












/* SADAKAT PUANLARI BAR */
.loyalty-bar{
  background-image: radial-gradient(circle at -14% 113%, #624811, #b07d10);
  box-shadow: 0 0 0 2px #624811; /* dış çeper rengi */
  border-radius: 6px;
  position: relative;
  margin: 10px 0 10px;     /* senin görseldeki gibi */
  padding: 5px 10px;    /* senin görseldeki gibi */
  

  display:flex;
  align-items:center;
  justify-content:space-between;

  border-radius: 6px;
  color:#fff;

  /* SENİN TURUNCU GRADIENT */
  background-image: radial-gradient(circle at -14% 113%, #624811, #b07d10);
}

/* SOL TARAF (ikon + yazı) */
.loyalty-bar__left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}

.loyalty-bar__text{
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* PNG ikon alanı (soldaki yuvarlak) */
.loyalty-bar__icon{
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background-size: 18px 18px;
  border-radius: 50%;

  /* yuvarlak arka plan */
  background-color: rgba(0,0,0,.35);

  /* PNG ikon */
  background-image: url("sadakat/sadakat.png"); /* <-- PNG yolunu buraya */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
}

/* SAĞ TARAF (0/0) */
.loyalty-bar__right{


  
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  white-space: nowrap;
}










/* =========================
   PANEL MENÜ (EKRANIN AYNISI)
========================= */

/* Menü bloğu (sadakat barı altından boşluk istersen) */
.panel-menu{
  margin-top: 10px;
}

/* Doğrulanmış Hesap satırı */
.panel-verified{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px 10px;
  color:#cfcfcf;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

/* Soldaki yeşil nokta / tik alanı */
.panel-verified__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71; /* yeşil */
  box-shadow: 0 0 0 2px rgba(0,0,0,.35);
}

/* Liste */
.panel-list{
  display:flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Tek satır (senin verdiğin özellikler) */
.panel-item{
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
  padding-inline-start: 10px;
  padding-inline-end: 15px;
  background: rgba(var(--b-sc), .15);

  text-decoration: none;
  color: #fff;

  /* küçük “bant” hissi */
  border-radius: 4px;
}

/* Satırlar arası ince çizgi */
.panel-item + .panel-item{
  margin-top: 1px; /* görseldeki boşluk */
}

/* Sol ikon kutusu */
.panel-ico{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-right: 10px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius: 4px;
  background: rgba(0,0,0,.35);
  color:#fff;

  font-size: 14px;
  line-height: 1;
}

/* Menü yazısı */
.panel-item__text{
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
  white-space: nowrap;
}

/* Sağ ok (>) */
.panel-item__chev{
  margin-left: auto;
  width: 16px;
  height: 16px;
  position: relative;
  opacity: .75;
}

.panel-item__chev::before{
  content:"";
  position:absolute;
  top:50%;
  right:0;
  width:7px;
  height:7px;
  border-right:2px solid rgba(255,255,255,.55);
  border-top:2px solid rgba(255,255,255,.55);
  transform: translateY(-50%) rotate(45deg);
}

/* Hover / Active (çok hafif) */
.panel-item:hover{
  filter: brightness(1.06);
}
.panel-item:active{
  transform: translateY(1px);
}

/* Badge tamamen kapalı (2 yazısı yok) */
.panel-badge{
  display:none !important;
}

/* Eğer --b-sc tanımlı değilse fallback */
:root{
  --b-sc: 255,255,255; /* yoksa satır arka planı hafif beyaz olur */
}






.bc-i-user::before { content: ""; }



.bc-i-balance-management::before {
    content: "";
}


/* Menüdeki BC ikonları düzgün çıksın */
.panel-ico{
  font-family: "BetConstruct-Icons" !important;
  font-weight: 400;
  font-style: normal;
}

.panel-ico::before{
  font-family: "BetConstruct-Icons" !important;
  font-size: 14px;
  line-height: 1;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.bc-i-journey::before { content: ""; }
.bc-i-promotion::before { content: ""; }
.bc-i-history::before { content: ""; }
.bc-i-message::before { content: ""; }
.bc-i-verified::before{content: "";}

.bc-i-verified{
  color:#4cad59;
}


/* Menü yazılarının HEPSİ */
.panel-item__text{
  flex: auto;
  font-size: 15px;
  margin: 0 10px;
  color: rgba(var(--b-sc), .9);
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .2px;
  white-space: nowrap;
}

.panel-verified .panel-item__text{
  margin: 0 !important;
}














/* ALT BLOK */
.panel-bottom{
  margin-top: 14px;
}

/* PROMO SATIRI */
.promo-row{
  display:flex;
  gap:-1px;
  align-items: center;
}

.promo-input{
  width: 100%;
  height: 55px;               /* satır yüksekliği sabit kalsın */
  box-sizing: border-box;

  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--b-sc), 1);

  border: none;
  outline: none;

  padding: 0 14px;
  background: rgba(var(--b-sc), .12);
  border-radius: 6px;
}

.promo-input::placeholder{
  color: rgba(var(--b-sc), .35);
}

/* UYGULA BUTONU */
.promo-btn{
  width: auto;
  min-width: 100px;
  margin-top: 0;
  margin-inline-start: 10px;

  height: 55px;
  padding: 0 18px;

  background: rgba(var(--b-sc), .12);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;

  color: rgba(var(--b-sc), .55);
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .3px;

  cursor: pointer;
}

.promo-btn:hover{ filter: brightness(1.08); }
.promo-btn:active{ transform: translateY(1px); }

/* ÇIKIŞ YAP SATIRI */
.logout-row{
  margin-top: 10px;

  width:100%;
  height: 44px;
  padding: 0 14px;

  display:flex;
  align-items:center;
  gap: 10px;

  background: rgba(var(--b-sc), .12);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;

  color: rgba(var(--b-sc), .9);
  cursor: pointer;
}

.logout-text{
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .2px;
}

/* Çıkış ikon alanı (BC icon font) */
.logout-ico,
.logout-ico::before{
  font-family: "BetConstruct-Icons" !important;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-size: 14px;
}

.bc-i-logout::before { content: ""; }



/* UYGULA: Roboto 400 + büyük font */
.panel-bottom .promo-btn{
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 12px !important;  /* 12 / 14 / 16 dene */
 color: rgba(var(--b-sc), .30) !important; 
}


































