/* ====================================================================
   BahisHero · tema stil katmanı
   --------------------------------------------------------------------
   Tüm seçiciler "bx-" ön ekiyle ad alanına alınmıştır; harici CSS
   çerçevesi veya satır içi stil kullanılmaz. Renk, boşluk ve yarıçap
   değerleri :root altındaki değişkenlerden beslenir.
   ==================================================================== */

/* ---------- 1. Tema değişkenleri (custom properties) ---------- */
:root {
  --bg: #0d1117;            /* koyu zemin */
  --bg-soft: #161b22;       /* kart zemini */
  --bg-soft-2: #1c2330;     /* ikincil kart zemini */
  --border: #2a3340;        /* ince kenarlık */
  --text: #e6edf3;          /* ana metin */
  --text-muted: #9aa7b4;    /* soluk metin */
  --primary: #E35201;       /* turuncu vurgu */
  --primary-2: #049F9E;     /* turkuaz vurgu */
  --accent: #2ecc71;        /* yeşil (kazanç) */
  --danger: #ff4d4f;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-hover: 0 12px 32px rgba(227, 82, 1, .18);
  --max-width: 1200px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 2. Sıfırlama / Temel ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--primary-2);
}

ul {
  list-style: none;
}

/* Erişilebilirlik: klavye odak halkası */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Ekran okuyucular için gizli başlık */
.bx-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. Yerleşim Yardımcıları ---------- */
.bx-container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.bx-section {
  padding-block: 56px;
}

.bx-section--tight {
  padding-block: 36px;
}

.bx-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.bx-section-head h2 {
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.bx-section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.bx-eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- 4. Başlık / Navigasyon ---------- */
.bx-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.bx-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.bx-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
}

.bx-nav__brand img {
  height: 38px;
  width: auto;
}

.bx-nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bx-nav__menu a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.bx-nav__menu a:hover,
.bx-nav__menu a[aria-current="page"] {
  color: var(--primary);
  background: var(--bg-soft);
}

.bx-nav__toggle {
  display: none;
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* CSS ile çizilen hamburger (3 çizgi); açıkken X'e döner */
.bx-nav__toggle-bar,
.bx-nav__toggle-bar::before,
.bx-nav__toggle-bar::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.bx-nav__toggle-bar {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color .15s ease;
}

.bx-nav__toggle-bar::before,
.bx-nav__toggle-bar::after {
  content: "";
  left: 0;
  transition: transform .25s ease;
}

.bx-nav__toggle-bar::before { top: -7px; }
.bx-nav__toggle-bar::after  { top: 7px; }

.bx-nav__toggle[aria-expanded="true"] .bx-nav__toggle-bar {
  background: transparent;
}

.bx-nav__toggle[aria-expanded="true"] .bx-nav__toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.bx-nav__toggle[aria-expanded="true"] .bx-nav__toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes bxMenuReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 5. Butonlar ---------- */
.bx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .98rem;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  line-height: 1.2;
}

.bx-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #1a1205;
}

.bx-btn--primary:hover {
  color: #1a1205;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.bx-btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.bx-btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.bx-btn--block {
  width: 100%;
}

/* ---------- 6. Hero ---------- */
.bx-hero {
  position: relative;
  padding-block: 64px 48px;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(227, 82, 1, .14), transparent 60%),
    radial-gradient(700px 380px at 0% 10%, rgba(4, 159, 158, .10), transparent 55%);
}

.bx-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.bx-hero h1 {
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.bx-hero h1 span {
  color: var(--primary);
}

.bx-hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 26px;
}

.bx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bx-hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.bx-hero__stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary);
  line-height: 1.1;
}

.bx-hero__stat span {
  font-size: .85rem;
  color: var(--text-muted);
}

.bx-hero__art {
  display: flex;
  justify-content: center;
}

.bx-hero__art img {
  width: min(360px, 80%);
  filter: drop-shadow(0 18px 40px rgba(227, 82, 1, .25));
}

/* ---------- 7. Genel Kart Izgarası ---------- */
.bx-grid {
  display: grid;
  gap: 20px;
}

.bx-grid--brands {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.bx-grid--bonus {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ---------- 8. Marka Kartları ---------- */
.bx-brand-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bx-brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.bx-brand-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
}

.bx-brand-card__logo img {
  max-height: 56px;
  width: auto;
}

.bx-brand-card h2,
.bx-brand-card h3 {
  font-size: 1.2rem;
}

.bx-brand-card p {
  color: var(--text-muted);
  font-size: .94rem;
  flex-grow: 1;
}

.bx-brand-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bx-tag {
  font-size: .74rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(227, 82, 1, .1);
  border: 1px solid rgba(227, 82, 1, .25);
  padding: 3px 9px;
  border-radius: 50px;
}

.bx-brand-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.bx-brand-card__actions .bx-btn {
  flex: 1;
  padding-inline: 12px;
}

/* ---------- 9. Bonus Kartları ---------- */
.bx-bonus-card {
  position: relative;
  display: block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bx-bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.bx-bonus-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft-2);
}

.bx-bonus-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.bx-bonus-card:hover .bx-bonus-card__media img {
  transform: scale(1.05);
}

.bx-bonus-card__body {
  padding: 14px 16px 18px;
}

.bx-bonus-card__brand {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  font-weight: 700;
}

.bx-bonus-card__body h3 {
  font-size: 1rem;
  margin: 4px 0 10px;
  color: var(--text);
}

.bx-bonus-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--primary);
}

/* ---------- 10. Mini Logo Kartları (bet-group) ---------- */
.bx-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.bx-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 78px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.bx-logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: var(--bg-soft-2);
}

.bx-logo-card img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* ---------- 10b. Bonuslu Mini Site Kartları (promo) ---------- */
.bx-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.bx-promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.bx-promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

/* Öne çıkan 6 ana marka kartı */
.bx-promo-card--featured {
  border-color: rgba(227, 82, 1, .55);
  background: linear-gradient(160deg, rgba(227, 82, 1, .12), var(--bg-soft) 60%);
}

.bx-promo-card__logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bx-promo-card__logo img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.bx-promo-card__bonus {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.bx-promo-card__cta {
  font-size: .76rem;
  font-weight: 800;
  color: #1a1205;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: .01em;
}

.bx-promo-card__name {
  font-weight: 700;
  font-size: .94rem;
  color: var(--text);
}

.bx-promo-card__stars {
  color: var(--primary);
  font-size: .8rem;
  letter-spacing: 1px;
}

.bx-promo-card__badge {
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(46, 204, 113, .12);
  border: 1px solid rgba(46, 204, 113, .3);
  padding: 2px 8px;
  border-radius: 50px;
}

/* ---------- 10c. Sıralı Liste (En İyi Siteler) ---------- */
.bx-searchbar {
  display: flex;
  max-width: 520px;
  margin: 22px auto 0;
  gap: 8px;
}

.bx-searchbar input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-size: .95rem;
}

.bx-searchbar input::placeholder {
  color: var(--text-muted);
}

.bx-searchbar input:focus {
  outline: none;
  border-color: var(--primary);
}

.bx-search-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
  display: none;
}

.bx-rank-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bx-rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.bx-rank-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.bx-rank-item--top {
  border-color: rgba(227, 82, 1, .5);
  background: linear-gradient(160deg, rgba(227, 82, 1, .1), var(--bg-soft) 55%);
}

.bx-rank-item__logo {
  width: 96px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bx-rank-item__logo img {
  max-height: 42px;
  max-width: 96px;
  width: auto;
  object-fit: contain;
}

.bx-rank-item__info {
  flex: 1;
  min-width: 0;
}

.bx-rank-item__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.bx-rank-item__bonus {
  color: var(--text-muted);
  font-size: .86rem;
}

.bx-rank-item__stars {
  color: var(--primary);
  font-size: .8rem;
  letter-spacing: 1px;
}

.bx-rank-item__cta {
  flex-shrink: 0;
  padding: 10px 22px;
}

/* ---------- 10e. Puan Kartı Izgarası (masaüstünde 3'lü) ---------- */
.bx-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bx-rank-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bx-rank-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.bx-rank-card--top {
  border-color: rgba(227, 82, 1, .5);
  background: linear-gradient(160deg, rgba(227, 82, 1, .12), var(--bg-soft) 60%);
}

.bx-rank-card__rank {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--bg-soft-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 2px 10px;
}

.bx-rank-card--top .bx-rank-card__rank {
  color: #1a1205;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
}

.bx-rank-card__logo {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.bx-rank-card__logo img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

.bx-rank-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.bx-rank-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.bx-rank-card__score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.bx-rank-card__score::after {
  content: " / 10";
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bx-rank-card__stars {
  color: var(--primary);
  font-size: .82rem;
  letter-spacing: 1px;
}

.bx-rank-card__bonus {
  width: 100%;
  font-size: .92rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(227, 82, 1, .1);
  border: 1px solid rgba(227, 82, 1, .25);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  min-height: 3.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bx-rank-card__cta {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 900px) {
  .bx-rank-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .bx-rank-grid { grid-template-columns: 1fr; }
}

/* ---------- Hero öne çıkan seçimler kartı ---------- */
.bx-hero__picks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.bx-hero__picks-head {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
}

.bx-hero__pick {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease;
}

.bx-hero__pick:hover {
  transform: translateX(3px);
  border-color: var(--primary);
}

.bx-hero__pick img {
  max-height: 34px;
  max-width: 54px;
  width: auto;
  object-fit: contain;
}

.bx-hero__pick-name {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
}

.bx-hero__pick-bonus {
  display: block;
  font-size: .76rem;
  color: var(--text-muted);
}

.bx-hero__pick-score {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

/* ---------- 11. Oyun Sağlayıcı / Ödül Kartları ---------- */
.bx-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.bx-game-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.bx-game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bx-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- 12. Özellik / Avantaj Kutuları ---------- */
.bx-features {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.bx-feature {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

a.bx-feature {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

a.bx-feature:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

a.bx-feature h3 {
  color: var(--text);
}

.bx-feature__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(227, 82, 1, .12);
  color: var(--primary);
  font-size: 1.5rem;
}

.bx-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bx-feature p {
  color: var(--text-muted);
  font-size: .92rem;
}

/* ---------- 13. İçerik / Makale Metni ---------- */
.bx-prose {
  max-width: 820px;
  margin-inline: auto;
}

.bx-prose h2 {
  font-size: 1.55rem;
  margin: 32px 0 14px;
}

.bx-prose h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: var(--primary);
}

.bx-prose p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.bx-prose ul.bx-bullets {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.bx-prose ul.bx-bullets li {
  margin-bottom: 6px;
}

.bx-prose a {
  text-decoration: underline;
}

/* ---------- 14. Tablo ---------- */
.bx-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table.bx-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

table.bx-compare th,
table.bx-compare td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}

table.bx-compare th {
  background: var(--bg-soft);
  color: var(--primary);
}

table.bx-compare tr:last-child td {
  border-bottom: none;
}

/* ---------- 15. SSS / FAQ Accordion ---------- */
.bx-faq {
  max-width: 820px;
  margin-inline: auto;
}

.bx-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  margin-bottom: 12px;
  overflow: hidden;
}

.bx-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.bx-faq__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.bx-faq__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.bx-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.bx-faq__a-inner {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: .95rem;
}

/* ---------- 16. CTA Şeridi ---------- */
.bx-cta-band {
  background: linear-gradient(135deg, rgba(227, 82, 1, .12), rgba(4, 159, 158, .08));
  border: 1px solid rgba(227, 82, 1, .25);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.bx-cta-band h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.bx-cta-band p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* ---------- 17. Footer ---------- */
.bx-site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding-block: 44px 24px;
  margin-top: 40px;
}

.bx-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.bx-footer__brand img {
  height: 40px;
  margin-bottom: 12px;
}

.bx-footer__brand p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 320px;
}

.bx-footer__col h4 {
  font-size: .95rem;
  margin-bottom: 14px;
  color: var(--text);
}

.bx-footer__col li {
  margin-bottom: 8px;
}

.bx-footer__col a {
  color: var(--text-muted);
  font-size: .9rem;
}

.bx-footer__col a:hover {
  color: var(--primary);
}

.bx-footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: .82rem;
}

.bx-footer__age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bx-footer__age span {
  background: var(--danger);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: .8rem;
}

/* ---------- 18. Breadcrumb ---------- */
.bx-breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  padding-block: 16px 0;
}

.bx-breadcrumb a {
  color: var(--text-muted);
}

.bx-breadcrumb a:hover {
  color: var(--primary);
}

.bx-breadcrumb span {
  color: var(--primary);
}

/* ---------- 19. Uyarı / Bilgi Kutusu ---------- */
.bx-notice {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--text-muted);
  font-size: .9rem;
  margin-block: 20px;
}

/* ---------- 20. Responsive ---------- */
@media (max-width: 900px) {
  .bx-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bx-hero p {
    margin-inline: auto;
  }

  .bx-hero__cta,
  .bx-hero__stats {
    justify-content: center;
  }

  .bx-hero__art {
    order: -1;
  }

  .bx-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .bx-nav__toggle {
    display: inline-flex;
  }

  .bx-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 12px 16px;
    display: none;
  }

  .bx-nav__menu.bx-is-open {
    display: flex;
    animation: bxMenuReveal .22s ease;
  }

  .bx-nav__menu li {
    width: 100%;
  }

  .bx-nav__menu a {
    display: block;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .bx-nav__menu a:hover,
  .bx-nav__menu a[aria-current="page"] {
    background: var(--bg-soft-2);
    color: var(--primary);
  }

  .bx-section {
    padding-block: 40px;
  }

  /* Sıralı liste tablet/mobil: tek sütun */
  .bx-rank-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bx-footer__grid {
    grid-template-columns: 1fr;
  }

  .bx-hero__stats {
    gap: 18px;
  }

  .bx-cta-band {
    padding: 26px 20px;
  }

  /* Sıralı liste mobil düzeni */
  .bx-rank-item {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 14px;
  }

  .bx-rank-item__logo {
    width: 70px;
    height: 38px;
  }

  .bx-rank-item__logo img {
    max-width: 70px;
    max-height: 34px;
  }

  .bx-rank-item__info {
    flex: 1 1 50%;
  }

  .bx-rank-item__cta {
    flex: 1 1 100%;
    text-align: center;
    padding: 11px 18px;
  }
}

/* ---------- 21. Yardımcı Sınıflar ---------- */
.bx-mt-lg {
  margin-top: 40px;
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
