:root {
  --bg: #0b0e13;
  --bg2: #12171f;
  --bg3: #1a2130;
  --card: #161c28;
  --border: #253046;
  --text: #e8edf5;
  --muted: #8b98ad;
  --gold: #f5c518;
  --gold2: #e0a800;
  --green: #1ec46a;
  --red: #ff4d4f;
  --blue: #3b82f6;
  --header-h: 64px;
  --topbar-h: 36px;
  --radius: 10px;
  --shadow: 0 8px 28px rgba(0,0,0,.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1280px, 96%); margin: 0 auto; }
.hidden { display: none !important; }

/* TOP BAR */
.topbar {
  height: var(--topbar-h);
  background: #080b10;
  border-bottom: 1px solid #1a1f2a;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar strong { color: var(--gold); }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11,14,19,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .5px;
  white-space: nowrap;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #ff8a00);
  display: grid; place-items: center;
  color: #111;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(245,197,24,.35);
}
.logo span { color: var(--gold); }
.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: .15s;
}
.nav a:hover, .nav a.active {
  color: #fff;
  background: var(--bg3);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.balance-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.balance-box b { color: var(--green); }
.btn {
  border: 0;
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: linear-gradient(180deg, var(--gold), var(--gold2)); color: #111; }
.btn-dark { background: var(--bg3); color: #fff; border: 1px solid var(--border); }
.btn-green { background: linear-gradient(180deg, #27d879, #129a4e); color: #fff; }
.btn-blue { background: linear-gradient(180deg, #4f8cff, #2563eb); color: #fff; }
.btn-red { background: linear-gradient(180deg, #ff6b6b, #e03131); color: #fff; }
.btn-sm { padding: 7px 12px; font-size: 12px; }
.btn-block { width: 100%; }
.user-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px 5px 5px;
  font-size: 13px;
}
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg,#3b82f6,#8b5cf6);
  display: grid; place-items: center; font-weight: 800; font-size: 12px;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 8px;
  cursor: pointer;
}

/* HERO SLIDER */
.hero { margin-top: 16px; position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.slides { position: relative; height: 340px; background: #000; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,.55) 100%);
  display: flex; align-items: center;
  padding: 40px;
}
.slide-content { max-width: 520px; }
.slide-content .tag {
  display: inline-block;
  background: rgba(245,197,24,.15);
  color: var(--gold);
  border: 1px solid rgba(245,197,24,.35);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.slide-content h1 { font-size: 34px; line-height: 1.15; margin-bottom: 10px; }
.slide-content p { color: #d0d7e2; margin-bottom: 18px; }
.slide-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.slide-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.35); cursor: pointer;
}
.slide-dots button.active { background: var(--gold); width: 28px; border-radius: 999px; }

/* SECTIONS */
.section { margin: 28px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 10px;
}
.section-head h2 {
  font-size: 20px;
  display: flex; align-items: center; gap: 8px;
}
.section-head h2 em {
  font-style: normal;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--muted); border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; cursor: pointer;
}
.chip.active, .chip:hover { color: #fff; border-color: var(--gold); color: var(--gold); }

/* GRID CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: .2s;
  cursor: pointer;
}
.card:hover { transform: translateY(-3px); border-color: #3a4d6d; box-shadow: var(--shadow); }
.card-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  position: relative;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.7); color: var(--gold);
  font-size: 10px; font-weight: 800; padding: 3px 7px; border-radius: 6px;
}
.card-body { padding: 10px; }
.card-body h3 { font-size: 13px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-body p { font-size: 11px; color: var(--muted); }

/* MATCH LIST */
.match-list { display: grid; gap: 10px; }
.match {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1.15fr;
  gap: 12px;
  align-items: center;
}
.match .league { color: var(--muted); font-size: 12px; }
.match .teams { font-weight: 700; }
.match .live {
  color: var(--red); font-weight: 800; font-size: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.match .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px var(--red); animation: pulse 1.2s infinite;
}
@keyframes pulse { 50% { opacity: .4; } }
.odds { display: flex; gap: 8px; }
.odd-btn {
  flex: 1; min-width: 70px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 6px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: .15s;
}
.odd-btn:hover, .odd-btn.selected {
  border-color: var(--gold);
  background: rgba(245,197,24,.12);
}
.odd-btn small { display: block; color: var(--muted); font-size: 10px; }
.odd-btn b { color: var(--gold); font-size: 14px; }

/* PROVIDERS */
.providers {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px;
}
.provider {
  min-width: 120px; height: 54px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--muted); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}

/* FOOTER */
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: #080b10;
  padding: 28px 0 18px;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}
.footer h4 { color: #fff; margin-bottom: 10px; }
.footer a { display: block; margin: 6px 0; color: var(--muted); }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #1a1f2a;
  padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.license-row { display: flex; gap: 10px; align-items: center; }
.license-row img { height: 28px; opacity: .85; }

/* MODAL */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: grid; place-items: center;
  padding: 16px;
}
.modal {
  width: min(440px, 100%);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal.wide { width: min(720px, 100%); }
.modal-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-head h3 { font-size: 18px; }
.modal-close {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg3);
  color: #fff; cursor: pointer; font-size: 18px;
}
.modal-body { padding: 18px; }
.tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.tab {
  flex: 1; padding: 10px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); font-weight: 700; cursor: pointer;
}
.tab.active { background: rgba(245,197,24,.12); color: var(--gold); border-color: var(--gold); }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  color: #fff;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.alert {
  padding: 10px 12px; border-radius: 8px; font-size: 13px; margin-bottom: 12px;
}
.alert-ok { background: rgba(30,196,106,.12); border: 1px solid rgba(30,196,106,.35); color: #7dffb3; }
.alert-err { background: rgba(255,77,79,.12); border: 1px solid rgba(255,77,79,.35); color: #ffb4b4; }
.alert-info { background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.35); color: #93c5fd; }

/* DEPOSIT */
.deposit-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
}
.pay-methods { display: grid; gap: 8px; }
.pay-method {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 10px;
  padding: 12px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.pay-method.active { border-color: var(--gold); background: rgba(245,197,24,.08); }
.pay-method .ico {
  width: 40px; height: 40px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 900; font-size: 12px; color: #111;
}
.pay-method .ico.havale { background: linear-gradient(135deg,#60a5fa,#2563eb); color:#fff; }
.pay-method .ico.kripto { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.pay-method .ico.papara { background: linear-gradient(135deg,#a78bfa,#7c3aed); color:#fff; }
.pay-method h4 { font-size: 14px; }
.pay-method p { font-size: 11px; color: var(--muted); }
.deposit-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 10px 0; }
.amount-grid button {
  background: var(--bg3); border: 1px solid var(--border); color: #fff;
  border-radius: 8px; padding: 10px; cursor: pointer; font-weight: 700;
}
.amount-grid button.active { border-color: var(--gold); color: var(--gold); }
/* EDITABLE NOTICE BLOCKS - change text below in HTML */
.notice-box {
  border-radius: 10px;
  padding: 12px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
}
.notice-box.bank {
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.35);
  color: #bfdbfe;
}
.notice-box.crypto {
  background: rgba(245,197,24,.08);
  border: 1px solid rgba(245,197,24,.3);
  color: #fde68a;
}
.notice-box.warning {
  background: rgba(255,77,79,.08);
  border: 1px solid rgba(255,77,79,.3);
  color: #fecaca;
}
.notice-box strong { color: #fff; display: block; margin-bottom: 4px; }
.copy-row {
  display: flex; gap: 8px; align-items: center; margin: 8px 0;
}
.copy-row code {
  flex: 1;
  background: #0a0d12;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  color: var(--gold);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* BET SLIP */
.betslip {
  position: fixed;
  right: 16px; bottom: 16px;
  width: 320px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 90;
  overflow: hidden;
}
.betslip-head {
  padding: 12px 14px;
  background: var(--bg3);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.betslip-body { padding: 12px 14px; max-height: 360px; overflow: auto; }
.bet-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  font-size: 12px;
}
.bet-item .rm { float: right; background: transparent; border: 0; color: var(--red); cursor: pointer; font-size: 16px; }
.bet-footer { border-top: 1px solid var(--border); padding: 12px 14px; }
.potential { display: flex; justify-content: space-between; margin: 8px 0 12px; font-size: 13px; }
.potential b { color: var(--green); }

/* TOAST */
.toast-wrap {
  position: fixed; top: 80px; right: 16px; z-index: 300;
  display: grid; gap: 8px;
}
.toast {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 12px 14px;
  min-width: 260px;
  box-shadow: var(--shadow);
  animation: slideIn .25s ease;
}
.toast.err { border-left-color: var(--red); }
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } }

/* DASHBOARD MINI */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.stat span { color: var(--muted); font-size: 12px; }
.stat b { display: block; margin-top: 4px; font-size: 20px; }
.stat b.g { color: var(--green); }
.stat b.y { color: var(--gold); }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .match { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .deposit-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border); flex-direction: column; padding: 10px; }
  .nav.open { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .slides { height: 240px; }
  .slide-content h1 { font-size: 22px; }
  .slide-overlay { padding: 20px; }
  .betslip { left: 12px; right: 12px; width: auto; }
  .header-actions .btn span-hide { display: none; }
}


/* MATCH DATE / TIME */
.match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.match-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.match-meta .match-time {
  color: var(--gold);
  border-color: rgba(245,197,24,.35);
  font-weight: 700;
}
.match-meta .match-min {
  color: var(--red);
  border-color: rgba(255,77,79,.35);
  font-weight: 700;
}
.match-meta .match-score {
  color: var(--green);
  border-color: rgba(30,196,106,.35);
  font-weight: 800;
}
.match-center {
  text-align: center;
  min-width: 110px;
}
.score-big {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}
.score-min {
  font-size: 12px;
  color: var(--red);
  font-weight: 800;
  margin-top: 2px;
}
.kickoff {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.15;
}
.kickoff small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0;
}
.league-name { color: var(--muted); }

/* GAME IMAGES */
.card-img {
  background: #0a0d12 !important;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card:hover .card-img img {
  transform: scale(1.06);
}


/* Match date/time */
.match-when {
  margin-top: 6px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.match-when .dot { color: var(--muted); }
.match-when b { color: #fff; font-size: 13px; }
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.card-img { position: relative; }

.ico-cal, .ico-clk {
  display: inline-block;
  width: 10px; height: 10px;
  margin-right: 5px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  position: relative;
  top: 0;
  opacity: .9;
}
.ico-cal::after {
  content: "";
  position: absolute;
  left: 1px; right: 1px; top: 3px;
  border-top: 1.5px solid currentColor;
}
.ico-clk { border-radius: 50%; }
.ico-clk::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 1.5px; height: 3px;
  background: currentColor;
  transform: translate(-50%, -90%);
}
.ico-clk::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 3px; height: 1.5px;
  background: currentColor;
  transform: translate(-10%, -50%);
}

/* Match date/time pills + kickoff */
.match-when {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.match-when .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  color: var(--muted);
}
.match-when .time-pill {
  border-color: rgba(245,197,24,.4);
  color: var(--gold);
  background: rgba(245,197,24,.08);
}
.match-when .time-pill b {
  color: #fff;
  font-size: 13px;
  letter-spacing: .3px;
}
.kickoff-box {
  text-align: center;
  padding: 6px 8px;
  background: rgba(245,197,24,.06);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 12px;
}
.kick-time {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.kick-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.ico-cal, .ico-clk {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}
.ico-cal::after {
  content: "";
  position: absolute;
  left: 1px; right: 1px; top: 3px;
  border-top: 1.5px solid currentColor;
}
.ico-clk { border-radius: 50%; }
.ico-clk::before {
  content: "";
  position: absolute;
  left: 50%; top: 2px;
  width: 1.5px; height: 3.5px;
  background: currentColor;
  transform: translateX(-50%);
}
.ico-clk::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 3px; height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.card-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: #0a0d12;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.card:hover .card-img img { transform: scale(1.07); }
.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.card-title-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px #000;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Logo image (real CDN brand) */
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-text { align-items: center; gap: 8px; font-weight: 900; font-size: 20px; color: #fff; }
.logo-text span { color: var(--gold); }

/* Category buttons from real site */
.cat-btns { margin-top: 12px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
.cat-btn {
  border: 0; padding: 0; background: transparent; cursor: pointer;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  transition: .2s;
}
.cat-btn:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow); }
.cat-btn img { width: 100%; height: auto; display: block; vertical-align: middle; }

/* =========================================================
   GAME TILES — portrait kapaklar (slot / canlı casino)
   ========================================================= */
.game-tile .card-img {
  aspect-ratio: 2 / 3 !important;
  background: #0a0d12 !important;
  border-radius: 10px;
}
.game-tile .card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-tile .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  background: rgba(220, 38, 38, .92);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.game-tile .maxx-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  background: rgba(0,0,0,.75);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
}
.game-tile .card-namebar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 10px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 75%);
  z-index: 2;
}
.game-tile .card-name {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-tile .card-play-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 4;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.game-tile:hover .card-play-hint { opacity: 1; }
.game-tile:hover .card-img img { transform: scale(1.05); }
.game-tile {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.game-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,.55);
  box-shadow: 0 12px 32px rgba(0,0,0,.55);
}


/* ===== PROVIDER LOGOS (real CDN assets) ===== */
.providers-section { margin-top: 8px; }
.providers-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media (max-width: 1100px) {
  .providers-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 760px) {
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
}
.provider-logo {
  background: #0d121b;
  border: 1px solid #2a3650;
  border-radius: 10px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 6px 8px;
  transition: .2s;
  overflow: hidden;
}
.provider-logo:hover {
  border-color: rgba(245,197,24,.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.provider-logo img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

/* ===== WHY / TESTIMONIALS ===== */
.why-section { margin-top: 18px; }
.why-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, #0b1220 0%, #1a2740 40%, #0b1220 100%);
  border: 1px solid #2a3a55;
  border-radius: 999px;
  padding: 12px 22px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.why-banner::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,.18));
  pointer-events: none;
}
.why-banner h2 {
  font-size: 22px;
  font-weight: 900;
  color: #f5c518;
  letter-spacing: .3px;
  margin: 0;
  white-space: nowrap;
}
.why-bolt { color: #f5c518; font-size: 18px; }
.testimonials {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}
.testimonials::-webkit-scrollbar { height: 6px; }
.testimonials::-webkit-scrollbar-thumb { background: #2a3a55; border-radius: 99px; }
.t-card {
  background: #0f1624;
  border: 1px solid #22314a;
  border-radius: 14px;
  padding: 16px;
  scroll-snap-align: start;
  min-height: 170px;
}
.t-head { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #f5c518, #e0a800);
  color: #111; font-weight: 900; font-size: 12px;
  display: grid; place-items: center; flex-shrink: 0;
}
.t-name { font-weight: 800; font-size: 14px; color: #fff; }
.t-date { font-size: 11px; color: var(--muted); }
.t-stars { color: #f5c518; letter-spacing: 2px; font-size: 13px; margin-bottom: 8px; }
.t-card p { font-size: 13px; color: #c5d0e0; line-height: 1.45; }

/* 8-col game grid on large screens like real site */
@media (min-width: 1200px) {
  .grid { grid-template-columns: repeat(8, 1fr); }
}
