
.featured-events { margin-top: 8px; }

.featured-events__title{
  font-weight: 900; font-size: 12px; letter-spacing: .4px;
  padding: 10px 12px; color:#fff; background:#000;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.featured-events__wrap{ background:#000; padding:10px 0 14px; }

/* JS translate ile kaydıracağız => viewport overflow hidden */
.featured-events__viewport{
  overflow: hidden;
  padding: 0 12px;
}

.featured-events__track{
  display:flex;
  gap:12px;
  will-change: transform;
  transform: translateX(0px);
  user-select: none;
}

.event-card{
  flex: 0 0 86vw;          /* biri ekranda, diğeri yanda görünür */
  background: linear-gradient(180deg,#1a1a1a 0%,#0f0f0f 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:10px 10px 12px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.event-card__league{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:10px;
  border-bottom:1px dashed rgba(255,255,255,.10);
}

.league-left{ display:flex; align-items:center; gap:10px; min-width:0; }

.league-ball{
  width: 32;height: 32x; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); color:#fff; font: size 32px;;
  flex-shrink:0;
}

.league-flag{
  width:18px; height:12px; border-radius:2px; overflow:hidden;
  background:rgba(255,255,255,.06); flex-shrink:0;
}
.league-flag img{ width:100%; height:100%; object-fit:cover; display:block; }

.league-name{
  font-size:12px; color:#d9d9d9;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

.event-card__match{
  display:grid; grid-template-columns: 1fr auto 1fr;
  align-items:center; gap:10px;
  padding:14px 2px 12px;
}

.team{ display:flex; align-items:center; gap:8px; min-width:0; }
.team-logo{
  width:18px; height:18px; border-radius:4px;
  object-fit:cover; background:rgba(255,255,255,.08); flex-shrink:0;
}
.team-name{
  font-size:13px; color:#fff;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.team--away{ justify-content:flex-end; flex-direction:row-reverse; text-align:right; }

.match-time{ text-align:center; min-width:72px; }
.match-date{ font-size:13px; font-weight:900; color:#e6e6e6; line-height:1.1; }
.match-hour{ font-size:12px; color:rgba(255,255,255,.70); margin-top:2px; }

.event-card__odds{
  display:grid; grid-template-columns:repeat(3,1fr); gap:10px;
  padding:10px; border-radius:10px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
}
.odd-box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.06);
  border-radius:10px;
  padding:10px 6px;
  text-align:center;
}
.odd-label{ font-size:11px; color:rgba(255,255,255,.70); }
.odd-value{ margin-top:3px; font-size:14px; font-weight:900; letter-spacing:.2px; }
.odd-green{ color:#38e06a; }
.odd-orange{ color:#ffb100; }







.event-card{
  flex: 0 0 86vw;   /* mobil: iyi */
}
@media (min-width: 900px){
  .event-card{
    flex: 0 0 calc(100% - 140px); /* masaüstü: kart alanı doldurur, sağda 140px diğer kart görünür */
  }
}


/* Sol takımı (HOME) merkeze doğru yasla */
.event-card__match .team.team--home{
  justify-content: flex-end !important; /* sol kolonun SAĞI = merkeze yakın */
  text-align: right;
}

/* Sağ takım zaten merkeze yakın kalsın (sende varsa dursun) */
.event-card__match .team.team--away{
  justify-content: flex-end; /* row-reverse ile merkez tarafına gelir */
}













/* ===========================
   RAIL HOVER UI (Screenshot gibi) - ribbon bozmayan sürüm
=========================== */

.rail__card{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.rail__card img{
  display:block;
  width:100%;
  height:auto;
  transform: scale(1);
  transition: transform .22s ease;
}

/* ÖZEL/EN YENİ ribbon'un konumunu EZME! Sadece blur altında kalsın */
.rail__card .rail__badge{
  z-index: 2; /* overlay 5'te olacak, bu blur'un arkasında kalır */
}

/* Hover blur overlay */
.rail__overlay{
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity .16s ease;
  pointer-events: none;
}

/* hafif blur + hafif karartma */
.rail__overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.18);
  -webkit-backdrop-filter: blur(3px) saturate(1.08);
  backdrop-filter: blur(3px) saturate(1.08);
}

/* üst ikonlar */
.rail__top-icons{
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  z-index: 6;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.rail__fav{
  width: 18px;
  height: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
  font-size: 14px;
}

.rail__info{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background: rgba(72, 173, 92, .95);
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}

/* ortadaki başlık + alttaki buton bar */
.rail__hud{
  position:absolute;
  inset: 0;
  z-index: 6;
  display:flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 10px 10px;
}

.rail__spacer{ flex: 1; }

.rail__title{
  max-width: 90%;
  text-align: center;

  font-family: 'Roboto', sans-serif;
  font-weight: 600;      /* 900 -> 600 (ince) */
  font-size: 11px;       /* 13 -> 11 (küçük) */
  letter-spacing: .1px;

  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.70);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* alt bar */
.rail__cta{
  display:flex;
  gap:8px;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
  border-radius:0;
}

.rail__btn{
  height: 24px;          /* 28 -> 24 (daha küçük) */
  padding: 0 10px;       /* daha ince */
  border-radius: 7px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-family: 'Roboto', sans-serif;
  font-weight: 600;      /* 900 -> 600 (ince) */
  font-size: 10px;       /* 12 -> 10 (küçük) */
  letter-spacing: .1px;  /* daha sakin */

  box-shadow: 0 6px 14px rgba(0,0,0,.35);
  pointer-events: none;
}

.rail__btn--play{
  background: #f5a300;
  color: #000;
  border: 1px solid rgba(0,0,0,.25);
}

.rail__btn--demo{
  background: rgba(0,0,0,.18);
  color:#fff;
  border: 1px solid rgba(255,255,255,.28);
}

.rail__card:hover .rail__overlay,
.rail__card:focus-visible .rail__overlay,
.rail__card.is-open .rail__overlay{
  opacity: 1;
}

.rail__card:hover img{
  transform: scale(1.02);
}



/* OYNA/DEMO'yu alta sabitle (bottom ile ayarla) */
.rail__hud{
  position: absolute; /* zaten var ama garanti */
}

.rail__cta{
  position: absolute;
  left: 50%;
  bottom: 6px;                 /* ↓ bunu 2px / 4px / 8px diye oynat */
  transform: translateX(-50%);
  margin: 0 !important;
}


.rail__title{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  text-align: center;
}



/* OYNA / DEMO yazı stili (2. resim gibi: ince + yumuşak renk) */
.rail__btn{
  font-weight: 500;              /* 600 -> 500 (daha ince) */
  font-size: 10px;
  letter-spacing: .15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  box-shadow: 0 4px 10px rgba(0,0,0,.22); /* biraz daha hafif gölge */
}

/* OYNA yazısı: yoğun siyah olmasın */
.rail__btn--play{
  color: rgba(0,0,0,.78);        /* #000 yerine yumuşak siyah */
}

/* DEMO yazısı: yoğun beyaz olmasın + arka planı biraz daha hafif */
.rail__btn--demo{
  color: rgba(255,255,255,.82);  /* #fff yerine yumuşak beyaz */
  background: rgba(0,0,0,.10);   /* daha açık */
  border: 1px solid rgba(255,255,255,.22);
}







/* ===========================
   YAKLAŞAN MAÇLAR (UPCOMING)
=========================== */

.upcoming{
  background:#000;
  margin-top: 8px;
}

.upcoming__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.upcoming__title{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .4px;
  color:#fff;
}

.upcoming__more{
  font-size: 11px;
  color: rgba(255,255,255,.75);
  text-decoration:none;
  letter-spacing: .2px;
}
.upcoming__arrow{ margin-left:6px; }

/* Range bar */
.upcoming__ranges{
  display:flex;
  gap: 10px;
  padding: 8px 12px;
}

.upcoming__range{
  flex: 1;
  height: 30px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.20);
  background: transparent;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2px;
}

.upcoming__range.is-active{
  background:#fff;
  color:#000;
  border-color: rgba(255,255,255,.85);
}

/* Sports row (yatay kayar) */
.upcoming__sports{
  display:flex;
  gap: 8px;
  padding: 6px 12px 10px;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.upcoming__sports::-webkit-scrollbar{ display:none; }

.upcoming__sport{
  width: 72px;
  height: 54px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.upcoming__sport i.bc{
  font-size: 18px; /* senin icon font boyutu */
  line-height: 1;
}

.upcoming__sport span{
  font-size: 10px;
  letter-spacing: .1px;
  white-space: nowrap;
}

.upcoming__sport.is-active{
  background: #1aa24a;
  border-color: rgba(0,0,0,.25);
  color: #fff;
}

.upcoming__count{
  position:absolute;
  top: 3px;
  right: 6px;
  font-size: 10px;
  font-style: normal;
  color: rgba(255,255,255,.85);
}

/* Market tabs */
.upcoming__markets{
  display:flex;
  gap: 18px;
  padding: 10px 12px 12px;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  scrollbar-width:none;
}
.upcoming__markets::-webkit-scrollbar{ display:none; }

.upcoming__market{
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .25px;
  white-space: nowrap;
}

.upcoming__market.is-active{
  color:#fff;
  position: relative;
  font-weight: 800;
}

.upcoming__market.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:#fff;
  opacity:.95;
}


html, body{
  height: auto !important;
  overflow-y: auto !important;
}

body{
  overflow-x: hidden !important;  /* sadece yatayı kapat */
  min-height: 100vh;
}

/* fixed alt menü altta kapatmasın */
main{
  padding-bottom: 110px; /* bottom-nav 70px ise 100-110 iyi */
}

.bc-i-Basketball::before,
.bc-i-basketball::before{
  content:"";
}

.bc-i-CounterStrike::before,
.bc-i-counterstrike::before{
  content: "!";
}

/* ===========================
   UPCOMING spor ikon mapping (alias'lı)
=========================== */

.bc-i-Soccer::before,
.bc-i-soccer::before{ content: ""; }

.bc-i-Basketball::before,
.bc-i-basketball::before{ content: ""; }

.bc-i-Baseball::before,
.bc-i-baseball::before{ content: ""; }

.bc-i-Cricket::before,
.bc-i-cricket::before{ content: ""; }

.bc-i-TableTennis::before,
.bc-i-tabletennis::before{ content: ""; }

.bc-i-Snooker::before,
.bc-i-snooker::before{ content: ""; }

.bc-i-Squash::before,
.bc-i-squash::before{ content: ""; }

.bc-i-CounterStrike::before,
.bc-i-counterstrike::before{ content: "!"; }

.bc-i-Volleyball::before,
.bc-i-volleyball::before{
  content: "";
}

.bc-i-Dota2::before,
.bc-i-dota2::before{
  content: "$";
}

.bc-i-Tennis::before,
.bc-i-tennis::before{
  content: "";
}


/* ===========================
   MATCH LIST (screenshot tarzı)
=========================== */

.matchlist{
  background:#000;
  padding: 8px 0 14px;
}

/* her satır */
.matchrow{
  display:grid;
  grid-template-columns: 1fr 170px 110px; /* sol | 3 odds | sağ meta */
  align-items: stretch;

  margin: 0 12px 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}

/* sol alan */
.matchrow__main{
  padding: 10px 10px;
  min-width:0;
}

.matchrow__teams{
  display:flex;
  flex-direction:column;
  gap: 4px;
}

.teamline{
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.teamline--home{
  color:#fff;
  font-weight: 800;
}

.teamline--away{
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.matchrow__meta{
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  display:flex;
  align-items:center;
  gap: 6px;
}

.meta-clock i{
  font-size: 12px;
  opacity: .85;
}

/* odds blok */
.matchrow__odds{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255,255,255,.10);
}

.oddcell{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15px;
  background: rgba(0,0,0,.18);
  border-left: 1px solid rgba(255,255,255,.10);
}

.oddcell:first-child{ border-left: 0; }

.oddcell--green{ color:#38e06a; }
.oddcell--orange{ color:#ffb100; }
.oddcell--dash{ color: rgba(255,255,255,.35); font-weight: 700; }

/* sağ meta */
.matchrow__more{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 8px;

  padding: 0 10px;
  border-left: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);

  font-size: 11px;
  color: rgba(255,255,255,.75);
}

.more-bb{
  font-weight: 900;
  color: rgba(255,255,255,.55);
}

.matchrow__more i{
  font-size: 13px;
  opacity: .9;
}

.more-plus{
  font-weight: 800;
  color: rgba(255,255,255,.70);
}

/* ince ayraç */
.more-sep{
  width:1px;
  height: 14px;
  background: rgba(255,255,255,.15);
  display:inline-block;
}

/* responsive: dar ekranda sağ meta küçülsün */
@media (max-width: 520px){
  .matchrow{ grid-template-columns: 1fr 156px 92px; }
}
@media (max-width: 420px){
  .matchrow{ grid-template-columns: 1fr 144px 84px; }
  .oddcell{ font-size: 11px; }
}


























/* =========================
   POPÜLER MAÇLAR
========================= */
.popular-matches{
  background:#0b0b0b;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.popular-matches__head{
  padding: 10px 12px 0;
}

.popular-matches__title{
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
}

/* Spor kutucukları */
.pm-sports{
  display:flex;
  gap:8px;
  padding: 8px 0 10px;
}

.pm-sport{
  width: 68px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.06);
  background: #2a2a2a;
  border-radius: 6px;
  padding: 6px 6px 5px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:6px;
  color:#fff;
  position:relative;
  cursor:pointer;
}

.pm-sport.is-active{
  background: #2cab2c;
  border-color: rgba(0,0,0,.2);
}

.pm-sport__badge{
  position:absolute;
  top: 4px;
  right: 5px;
  background:#111;
  color:#fff;
  font-size:10px;
  padding: 1px 5px;
  border-radius: 10px;
  line-height: 14px;
}

.pm-sport__icon{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pm-sport__label{
  font-size:11px;
  line-height: 1;
  opacity:.95;
}

/* wolf2 ikonları (burayı wolf2 kodlarınla çalışacak şekilde hazırladım) */
.pm-wolf2{
  display:inline-block;
  width: 18px;
  height: 18px;
  position: relative;
}
.pm-wolf2::before{
  font-family: "wolf2";         /* wolf2 font-family adın farklıysa bunu değiştir */
  font-size: 18px;
  line-height: 18px;
  display:block;
  color:#111;
}

/* >>> AŞAĞIDAKİ content'leri wolf2.css içinden kopyalayıp yapıştıracaksın <<< */
/* wolf2.css içinde futbol/basket/tenis hangi class ise onun content değerini buraya koy */
.pm-wolf2--football::before{ content: ""; }     /* örnek: wolf2'deki FUTBOL codepoint */
.pm-wolf2--basketball::before{ content: ""; }   /* örnek: wolf2'deki BASKET codepoint */
.pm-wolf2--tennis::before{ content: ""; }       /* örnek */

/* Piyasa sekmeleri */
.pm-markets{
  display:flex;
  gap: 18px;
  padding: 10px 12px;
  background:#0a0a0a;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  overflow-x:auto;
  white-space:nowrap;
  scrollbar-width:none;
}
.pm-markets::-webkit-scrollbar{ display:none; }

.pm-market{
  background:transparent;
  border:0;
  padding: 0;
  font-size:10px;
  text-transform:uppercase;
  color:#22d0c5;
  opacity:.95;
  cursor:pointer;
}
.pm-market.is-active{
  color:#fff;
  font-weight:800;
}

/* Lig başlıkları */
.pm-league__head{
  background:#050505;
  color:#fff;
  font-size:12px;
  font-weight:800;
  padding: 8px 12px;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* Maç satırı */
.pm-match{
  display:flex;
  background: linear-gradient(#2a2a2a, #222);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(0,0,0,.55);
  min-height: 64px;
}

.pm-left{
  flex: 1 1 auto;
  padding: 10px 12px;
  display:flex;
  flex-direction:column;
  gap: 4px;
  min-width: 0;
}

.pm-team{
  color:#fff;
  font-size:12px;
  font-weight:700;
  line-height: 1.15;
}

.pm-sub{
  margin-top: 4px;
  display:flex;
  align-items:center;
  gap:6px;
  color: rgba(255,255,255,.75);
  font-size:11px;
  line-height:1.1;
}
.pm-sub-sep{ opacity:.55; }

.pm-live-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:#e11;
  box-shadow: 0 0 0 2px rgba(0,0,0,.35);
}

.pm-sub--time i{
  font-size: 12px;
  opacity:.9;
}

/* Sağ blok */
.pm-right{
  flex: 0 0 auto;
  border-left: 1px solid rgba(0,0,0,.65);
  background:#121212;
}

.pm-odds{
  display:grid;
  grid-template-columns: repeat(3, 64px);
}

.pm-odd{
  position:relative;
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  color:#f0a000; /* turuncu oran */
  background:#0e0e0e;
  border-left: 1px solid rgba(255,255,255,.06);
}

/* yeşil küçük üçgen (oran hareketi) */
.pm-odd::after{
  content:"";
  position:absolute;
  top: 6px;
  right: 6px;
  width:0; height:0;
  border-left: 6px solid transparent;
  border-top: 6px solid #2cab2c;
  opacity:.95;
}

/* LIVE tipinde: skor + odds + meta yan yana */
.pm-right--live{
  display:flex;
  align-items:stretch;
}

.pm-score{
  width: 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap: 6px;
  background:#141414;
  border-right: 1px solid rgba(255,255,255,.06);
  color:#f0a000;
  font-weight:900;
  font-size:12px;
}

.pm-meta{
  width: 118px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  padding: 0 10px;
  background:#121212;
  border-left: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  font-size:11px;
}

/* SCHED tipinde: odds üstte, meta altta */
.pm-right--sched{
  display:flex;
  flex-direction:column;
}

.pm-metaRow{
  height: 24px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  padding: 0 10px;
  background:#0f0f0f;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  font-size:11px;
}

.pm-flag{
  width: 18px;
  height: 12px;
  object-fit:cover;
  border-radius: 2px;
  display:block;
}

.pm-tag{
  font-weight:800;
  letter-spacing:.2px;
  opacity:.9;
}

.pm-plus{
  font-weight:900;
  opacity:.95;
}

/* Alttaki “Daha fazla” */
.pm-moreBtn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 0 16px;
  color: rgba(255,255,255,.85);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 6px;
  cursor:pointer;
}
.pm-moreBtn i{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}
.pm-moreBtn span{
  font-size: 11px;
  opacity:.9;
}



/* Sekme yazıları renk düzeltme */
.pm-market{
  color: rgba(255,255,255,.70) !important;  /* pasif */
}

.pm-market.is-active{
  color: #fff !important;                   /* aktif */
}













/* Popüler maçlar: ikon taşıyıcı beyaz daireyi tamamen kaldır */
.popular-matches .pm-sport__icon{
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: block !important;
}





@font-face{
  font-family: "BetConstruct-Icons";
  src:
    url("icons/bc-icons.woff2") format("woff2"),
    url("icons/BetConstruct-Icons.BkRYNre.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



.pm-bc::before{
  font-family: "BetConstruct-Icons" !important;
  font-style: normal;
  font-weight: normal;
  display: block;
  font-size: 18px;
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}





.bc-i-Soccer::before {
    content: "";
}


.bc-i-Basketball::before { content: ""; }

.bc-i-Tennis::before {
    content: "";
}





/* =========================
   DESTEK + SOSYAL + DİL ŞERİDİ
========================= */
.support-strip{
  background: #070707;
  padding: 16px 12px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Üstteki uzun buton */
.support-strip__cta{
  width: 100%;
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: rgba(255,255,255,.92);
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Alt satır: sosyal + dil */
.support-strip__row{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Sosyal ikonlar */
.support-strip__social{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ss-ico{
  width: 34px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* BetConstruct icon font base (zaten @font-face bağlı olmalı) */
.ss-icon::before{
  font-family: "BetConstruct-Icons";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: rgba(255,255,255,.85);
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Dil seçimi */
.support-strip__lang{
  height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(0,0,0,.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(255,255,255,.9);
}

.ss-flag{
  display:block;
  border-radius: 2px;
  object-fit: cover;
}

.ss-langText{
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .2px;
}

.ss-caret{
  font-size: 12px;
  opacity: .85;
}


/* 1) "Daha Fazla Maç Göster" ile alttaki şerit arasındaki boşluğu sıfırla */
.pm-moreBtn{
  margin: 0 !important;
  padding-bottom: 0 !important;
}

/* Butonun altındaki ekstra boşluğu da kes (bazı tarayıcılar) */
.popular-matches{
  padding-bottom: 0 !important;
}

/* 2) Şerit alanı TAM siyah */
.support-strip{
  margin-top: 0 !important;
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;     /* istersen 10 yap */
}

/* Üstteki "Destek" butonu şeride daha yapışık dursun */
.support-strip__cta{
  margin-top: 0 !important;
}


.bc-i-twitter::before { content: ""; }
.bc-i-telegram::before {
    content: "";
}

.bc-i-instagram::before {
    content: "";
}

.bc-i-facebook:before {
    content: "";
}

.bc-i-pinterest:before {
    content: "";
}


.bc-i-youtube:before {
    content: "";
}

.bc-i-medium:before {
    content: "";
}







/* İkonların altına ince çizgi */
.footer-sep{
  height: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: transparent;
}

/* Footer */
.ultra-footer{
  background:#000;
  padding: 18px 12px 26px;
}

.uf-wrap{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.uf-group{
  margin: 18px 0 22px;
}

.uf-title{
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .6px;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.uf-links{
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  line-height: 1.9;
}

.uf-links a{
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 0 2px;
}

.uf-links a:hover{
  color: rgba(255,255,255,.85);
}

.uf-dot{
  color: rgba(255,255,255,.25);
  padding: 0 6px;
}






/* =========================
   UYGULAMALAR & LİSANS
========================= */
.apps-lic{
  background:#000;
  padding: 14px 12px 16px;
  text-align:center;
}

/* ince çizgi (üst/alt) */
.apps-lic__sep{
  height: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin: 0 0 14px;
}
.apps-lic__sep--bottom{
  margin: 14px 0 0;
}

.apps-lic__title{
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .6px;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Badge satırı */
.apps-lic__badges{
  gap: 14px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Badge */
.al-badge{
  
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  min-width: 220px;
}

.al-icoImg{
  width: 30px;
  height: 30px;
  display:block;
  object-fit: contain;
}

.al-badge__txt{
  text-align:left;
  line-height: 1.1;
}

.al-sub{
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.al-main{
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,.92);
}

/* Alt logolar */
.apps-lic__logos{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 28px;
  flex-wrap: wrap;
}

.al-logo{
  height: 22px;
  width: auto;
  display:block;
  object-fit: contain;
  opacity: .95;
}


/* Sadece badge içindeki PNG ikonları büyüt */
.apps-lic .al-badge img.al-icoImg[src$=".png"]{
  width: 200px !important;
  height: 200px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}


/* Sadece görseller kalsın (kutusuz, yazısız) */
.apps-lic__badges--logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* link kutusu yok */
.al-logoLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding: 0;
  border: 0;
  background: transparent;
}

/* üstteki 3 görsel boyutu */
.al-logoImg{
  height: 44px;          /* büyüklük buradan */
  width: auto;
  display:block;
  object-fit: contain;
  opacity: .98;
}

/* alttaki tether/iron biraz daha küçük/büyük ayarı */
.al-logo--big{
  height: 22px;          /* istersen 24-26 yap */
  width: auto;
}


/* PNG + SVG hepsi aynı boy */
.apps-lic .al-logoImg,
.apps-lic .al-logo,
.apps-lic .al-logo--big{
  height: 44px !important;   /* PNG ile aynı */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}



/* Legal alan: FULL WIDTH siyah şerit */
.apps-lic__legalWrap{
  width: 100%;
  background: #000 !important;
  padding: 18px 0 22px;
}

/* Yazının arkası kutu olmasın */
.apps-lic__legal{
  background: transparent !important;
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 12px;

  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,.35);
  text-align: center;
}



/* =========================
   ÖDEMELER ŞERİDİ
========================= */
.payments-strip{
  background:#000;
  padding: 10px 12px 12px;
  text-align:center;
}

.payments-strip__title{
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin: 6px 0 10px;
}

/* ince çizgi */
.payments-strip__sep{
  height: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin: 0;
}
.payments-strip__sep--bottom{
  margin-top: 10px;
}

/* kaydırmalı ikon şeridi */
.payments-strip__scroller{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 0;
}
.payments-strip__scroller::-webkit-scrollbar{ display:none; }

.payments-strip__track{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:flex-start;
  width: max-content;
  margin: 0 auto;
}

/* PNG ikonlar */
.pay-ico{
  height: 44px;              /* ikon boyutu buradan */
  width: auto;
  display:block;
  object-fit: contain;
  background: rgba(255,255,255,.06); /* ikon arkası hafif */
  border-radius: 6px;
  padding: 6px 8px;
}





.footer-mini{
  background:#000;
  padding: 14px 12px 18px;
  text-align:center;
}

.footer-mini__badge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #ff2aa6;          /* pembe halka */
  color: #ff2aa6;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}

.footer-mini__copy{
  margin-top: 10px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}


/* Sayfanın en altı komple siyah */
html, body{
  background: #000 !important;
}

/* Footer bloklarının bulunduğu alan (legal, ödemeler, 18+) siyah kalsın */
.ultra-footer,
.apps-lic,
.apps-lic__legalWrap,
.payments-strip,
.footer-mini{
  background: #000 !important;
}

/* Alt menü (fixed bar) da siyah olsun */
.bottom-nav{
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Eğer alt menüde gradient / pseudo element varsa onu da kapat */
.bottom-nav::before,
.bottom-nav::after{
  content: none !important;
}

/* Bazı temalarda en altta wrapper/section gri oluyor — güvenlik için */
.footer,
.site-footer,
.page-footer,
main{
  background: transparent;
}




/* ✅ FIX: rail__head içindeki H3 başlıklar asla absolute olmasın */
.rail__head .rail__title{
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
  text-align: left !important;
}

/* ✅ Overlay içindeki title ortada kalsın (sadece overlay'e özel) */
.rail__overlay .rail__title{
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 92% !important;
  text-align: center !important;
}




.top-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999999;
  background:#000;
}

/* barın yüksekliği kadar içerik aşağı insin */
body{ padding-top: 56px; } 








.top-header::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:0;
  height:1px;
  background: #2a2a2a; 
  transform: scaleY(.5);
  transform-origin: bottom;
  pointer-events:none;
}




