/* ── CasinoRehberi — Açık & Profesyonel Tema ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0f2044;
  --navy2:      #1a3260;
  --navy3:      #243f7a;
  --gold:       #c9a84c;
  --gold2:      #e8c96a;
  --gold3:      #f5e0a0;
  --white:      #ffffff;
  --bg:         #f4f6fb;
  --bg2:        #eef1f8;
  --text1:      #0f2044;
  --text2:      #3a4a6b;
  --text3:      #6b7a9b;
  --border:     #dce3f0;
  --border2:    #c5d0e8;
  --red:        #e03c3c;
  --green:      #1a9e5c;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 2px 12px rgba(15,32,68,.08);
  --shadow-lg:  0 8px 32px rgba(15,32,68,.14);
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }

html { scroll-behavior:smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text1);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
/* banner ve kart img'leri global override'dan etkilenmesin */
.banner-item img,
.banner-item-728 img { max-width: none; }
ul, ol { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TOP BAR ───────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  padding: .4rem 0;
  letter-spacing: .3px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--gold2); font-weight: 600; }
.topbar-links { display: flex; gap: 1.5rem; align-items: center; }

/* ── HEADER ────────────────────────────────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0;            /* boşluk yok */
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.logo span { color: var(--gold); }
.logo-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  padding: .1rem .4rem;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-left: .35rem;  /* sadece badge'e sol boşluk */
}
nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
nav a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text2);
  padding: .5rem .85rem;
  border-radius: 8px;
  transition: all .2s;
}
nav a:hover, nav a.active { background: var(--bg2); color: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: .5rem 1.1rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy2) !important; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy3) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold2);
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold2); }
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .85rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.3);
  transition: all .2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 130px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}
.hero-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
  font-weight: 500;
}

/* ── KATEGORİ ŞERIDI ───────────────────────────────────────────────────────── */
.cat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.cat-strip-inner {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: .78rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── SECTION ───────────────────────────────────────────────────────────────── */
.section { padding: 3rem 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.4rem;
  background: var(--gold);
  border-radius: 2px;
}
.section-count {
  background: var(--bg2);
  color: var(--text3);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 20px;
}
.view-all {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.view-all:hover { color: var(--gold); }

/* ── BANNER ────────────────────────────────────────────────────────────────── */
.banner-section {
  padding: .5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* sabit 2 kolon */
  gap: .6rem;
}
.banner-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.banner-item {
  display: block;
  width: 100%;
  height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: opacity .2s, box-shadow .2s;
  background: var(--white);
  position: relative;
}
.banner-item:hover { opacity: .93; box-shadow: var(--shadow-lg); }
.banner-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;      /* tam doldur, aspect ratio koru */
  object-position: left center;  /* sol taraf kesilmez */
  padding: 0 !important;
  display: block;
}
/* 728x90 banner alias */
.banner-item-728 {
  display: block;
  width: 100%;
  height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: opacity .2s, box-shadow .2s;
  background: var(--white);
  position: relative;
}
.banner-item-728:hover { opacity: .93; box-shadow: var(--shadow-lg); }
.banner-item-728 img {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: left center;
  padding: 0 !important;
  display: block;
}
.banner-fallback {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}
@media (max-width: 768px) {
  .banner-grid, .banner-grid-2col { grid-template-columns: 1fr; }
  .banner-item, .banner-item-728 { height: 70px; }
}

/* ── SİTE KARTI ────────────────────────────────────────────────────────────── */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.site-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.site-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0;
  transition: opacity .2s;
}
.site-card:hover { border-color: var(--border2); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.site-card:hover::before { opacity: 1; }
.site-card.sponsor { border-color: var(--gold3); }
.site-card.sponsor::before { opacity: 1; }

.card-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.card-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 2px;          /* minimum padding */
  background: #fff;
  flex-shrink: 0;
  /* PNG'lerin kendi iç boşluğunu ezdirmek için */
  display: block;
}
.card-logo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.card-info { flex: 1; min-width: 0; }
.card-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.card-badges { display: flex; gap: .3rem; flex-wrap: wrap; }
.badge {
  font-size: .62rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.badge-gold { background: rgba(201,168,76,.15); color: #8a6a10; border: 1px solid rgba(201,168,76,.3); }
.badge-blue { background: rgba(15,32,68,.08); color: var(--navy); border: 1px solid rgba(15,32,68,.15); }
.badge-green { background: rgba(26,158,92,.1); color: #0d6e3f; border: 1px solid rgba(26,158,92,.2); }
.badge-red { background: rgba(224,60,60,.1); color: #a02020; border: 1px solid rgba(224,60,60,.2); }

.card-rating {
  display: flex;
  align-items: center;
  gap: .25rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  margin-left: auto;
}

.card-bonus {
  background: var(--bg);
  border-radius: var(--radius);
  padding: .75rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.card-bonus-label { font-size: .72rem; color: var(--text3); font-weight: 500; }
.card-bonus-type {
  font-size: .72rem;
  color: var(--text2);
  font-weight: 600;
  text-align: right;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.card-btn {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .6rem;
  border-radius: 8px;
  text-align: center;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.card-btn:hover { background: var(--navy2); }
.card-btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: .78rem;
  font-weight: 600;
  padding: .6rem .9rem;
  border-radius: 8px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}
.card-btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* ── KATEGORİ KARTLARI ─────────────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.cat-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.cat-card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto .75rem;
}
.cat-card-name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.cat-card-count { font-size: .72rem; color: var(--text3); }

/* ── RTP TABLOSU ───────────────────────────────────────────────────────────── */
.rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rtp-table th {
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: .75rem 1rem;
  text-align: left;
  letter-spacing: .3px;
}
.rtp-table td {
  padding: .75rem 1rem;
  font-size: .82rem;
  border-bottom: 1px solid var(--border);
  color: var(--text1);
}
.rtp-table tr:last-child td { border-bottom: none; }
.rtp-table tr:hover td { background: var(--bg); }
.rtp-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.rtp-bar-fill {
  height: 6px;
  background: var(--navy);
  border-radius: 3px;
  min-width: 4px;
}
.rtp-val { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ── BLOG GRID ─────────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s;
  display: block;
  text-decoration: none;
}
.blog-card:hover { border-color: var(--border2); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-img {
  height: 140px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.blog-cat-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.blog-body { padding: 1rem; }
.blog-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: .4rem;
  line-height: 1.4;
}
.blog-excerpt { font-size: .78rem; color: var(--text3); line-height: 1.5; margin-bottom: .75rem; }
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: var(--text3);
}
.blog-read-more { color: var(--navy); font-weight: 600; }

/* ── SEO TEXT BOX ──────────────────────────────────────────────────────────── */
.seo-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
}
.seo-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
}
.seo-box h2:first-child { margin-top: 0; }
.seo-box h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy2);
  margin: 1.2rem 0 .5rem;
}
.seo-box p { color: var(--text2); font-size: .88rem; line-height: 1.8; margin-bottom: .75rem; }
.seo-box a { color: var(--navy); text-decoration: underline; }

/* ── BREADCRUMB ────────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: .75rem;
  color: var(--text3);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--navy); font-weight: 600; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: .75rem; }
.footer-brand p { font-size: .78rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: .75rem;
}
.footer-col a {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .4rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .72rem;
}
.footer-disclaimer {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-disclaimer a { color: var(--gold2); }

/* ── MODAL ─────────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,32,68,.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(15,32,68,.3);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--border2); }

/* ── UTILITIES ─────────────────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.hidden { display: none; }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .sites-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: .5rem; }
}
@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════
   FINAL FIX — bahisflix10.site referans alınarak
   ══════════════════════════════════════════════════════ */

/* LOGO: 120x50, contain, koyu arka plan — görsel 4 gibi */
.card-logo {
  width: 120px !important;
  height: 50px !important;
  min-width: 120px !important;
  object-fit: contain !important;
  padding: 6px !important;
  background: rgba(15, 32, 68, 0.08) !important;
  border-radius: 8px !important;
  border: 1px solid var(--border) !important;
  flex-shrink: 0 !important;
  display: block !important;
}

/* BANNER: fill — tam doldur, kesme yok — görsel 2 gibi */
.banner-item,
.banner-item-728 {
  display: block !important;
  width: 100% !important;
  height: 90px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 1px solid var(--border) !important;
  background: #000 !important;
}
.banner-item img,
.banner-item-728 img {
  width: 100% !important;
  height: 90px !important;
  object-fit: fill !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  max-width: 100% !important;
  position: static !important;
}
.banner-grid,
.banner-grid-2col {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: .75rem !important;
}
@media (max-width: 768px) {
  .banner-grid, .banner-grid-2col {
    grid-template-columns: 1fr !important;
  }
  .banner-item, .banner-item-728 { height: 70px !important; }
  .banner-item img, .banner-item-728 img { height: 70px !important; }
}

/* KART TOP: logo geniş olduğu için flex ayarla */
.card-top {
  display: flex !important;
  align-items: center !important;
  gap: .75rem !important;
  margin-bottom: 1rem !important;
}