/* ═══════════════════════════════════════
   BahisFlix – Ana CSS
   Altın/Koyu Tema, Elite Tasarım
═══════════════════════════════════════ */

:root {
  --gold: #c9a227;
  --gold2: #a07d19;
  --gold-light: #f0c040;
  --bg: #08080f;
  --bg2: #0f0f1c;
  --bg3: #15151f;
  --bg4: #1c1c2a;
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(201,162,39,0.2);
  --text: #e8e8e8;
  --text2: #9ca3af;
  --text3: #4b5563;
  --green: #00c853;
  --red: #e53935;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

a { color: inherit; text-decoration: none; }
img { max-width:100%; display:block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 3px; }

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

/* ── TOPBAR ── */
.topbar {
  background: #06060e;
  border-bottom: 1px solid rgba(201,162,39,0.08);
  height: 34px;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.topbar-links, .topbar-tg { display: flex; gap: 1.2rem; align-items: center; }
.topbar-links a {
  color: var(--text3); font-size: 0.7rem; font-weight: 600;
  transition: color 0.2s; display: flex; align-items: center; gap: 0.3rem;
}
.topbar-links a:hover { color: var(--gold); }
.topbar-tg a {
  background: rgba(29,155,209,0.1); border: 1px solid rgba(29,155,209,0.2);
  color: #60a5fa; font-size: 0.68rem; font-weight: 700;
  padding: 0.18rem 0.6rem; border-radius: 3px;
  display: flex; align-items: center; gap: 0.3rem;
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,16,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,162,39,0.1);
  height: 60px;
}
.header-inner {
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; letter-spacing: 3px; line-height: 1; flex-shrink: 0;
}
.logo-bahis { color: var(--gold); }
.logo-flix { color: #f0f0f0; }

/* MAIN NAV */
.main-nav {
  display: flex; align-items: center; gap: 0.2rem; flex: 1;
}
.main-nav > a, .nav-dropdown > a {
  color: var(--text2); font-size: 0.85rem; font-weight: 700;
  padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: all 0.18s; display: flex; align-items: center; gap: 0.3rem;
}
.main-nav > a:hover, .nav-dropdown > a:hover,
.main-nav > a.active, .nav-dropdown > a.active {
  color: var(--gold); background: rgba(201,162,39,0.07);
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: #0d0d1c; border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 1.5rem;
  min-width: 560px; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s; z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dropdown-col .dropdown-title {
  color: var(--gold); font-size: 0.62rem; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 0.7rem; padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-gold);
}
.dropdown-col a {
  display: block; color: var(--text3); font-size: 0.78rem;
  font-weight: 600; padding: 0.3rem 0; transition: color 0.15s;
}
.dropdown-col a:hover { color: var(--text); }

/* HEADER RIGHT */
.header-right { display: flex; align-items: center; gap: 0.8rem; margin-left: auto; }
.search-wrap { position: relative; }
.search-wrap form { display: flex; align-items: center; }
.search-input {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 0.38rem 0.75rem 0.38rem 0.75rem;
  border-radius: 6px; font-size: 0.78rem; width: 160px; outline: none;
  font-family: 'Nunito', sans-serif; transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--border-gold); }
.search-wrap button {
  background: var(--gold); border: none; color: #000;
  padding: 0.4rem 0.7rem; border-radius: 0 6px 6px 0;
  cursor: pointer; font-size: 0.78rem; margin-left: -1px;
}
.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.3rem; cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(8,8,16,0.98);
  z-index: 300; display: none; flex-direction: column;
  justify-content: center; padding: 2rem 2.5rem; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-weight: 800; color: var(--text2); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; color: var(--text);
  font-size: 1.8rem; cursor: pointer;
}
.mobile-tg { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.btn-tg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(29,155,209,0.1); border: 1px solid rgba(29,155,209,0.25);
  color: #60a5fa; padding: 0.6rem 1rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700;
}

/* ── TICKER ── */
.ticker-wrap {
  background: #0a0a14; border-bottom: 1px solid rgba(201,162,39,0.1);
  padding: 0.42rem 0; overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 3.5rem; white-space: nowrap;
  animation: ticker 60s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 600;
}
.ticker-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0.5; }
.ticker-name { color: var(--text2); }
.ticker-sep { color: var(--text3); }
.ticker-bonus { color: var(--gold); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BANNER GRID ── */
.banner-section {
  background: #070710; border-bottom: 1px solid rgba(201,162,39,0.07);
  padding: 0.65rem 1.5rem;
}
.banner-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
.banner-item {
  display: block; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border-gold); background: var(--bg2);
  transition: border-color 0.2s; aspect-ratio: 728/90;
}
.banner-item:hover { border-color: rgba(201,162,39,0.4); }
.banner-item img { width: 100%; height: 100%; display: block; object-fit: fill; }
.banner-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 0 1.2rem;
  background: linear-gradient(135deg,#0d0d1c,#1a1500);
}
.banner-placeholder-title { font-family: 'Bebas Neue'; font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; }
.banner-placeholder-btn { background: var(--gold); color: #000; font-weight: 900; padding: 0.4rem 1rem; border-radius: 4px; font-size: 0.75rem; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #08080f 0%, #0c0820 45%, #08100c 100%);
  padding: 3rem 0 2.5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 65% 35%, rgba(201,162,39,0.07), transparent 55%),
              radial-gradient(ellipse at 10% 85%, rgba(0,160,80,0.05), transparent 50%);
}
.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid rgba(201,162,39,0.2); color: var(--gold);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 0.22rem 0.7rem;
  border-radius: 3px; margin-bottom: 0.9rem;
}
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
.hero h1 {
  font-family: 'Bebas Neue'; font-size: clamp(2rem,5vw,3.5rem);
  line-height: 1.06; letter-spacing: 2px; margin-bottom: 0.6rem; color: #f0f0f0;
}
.hero h1 span { color: var(--gold); }
.hero-desc { color: var(--text3); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.4rem; max-width: 430px; }
.hero-btns { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: #000; font-weight: 900; font-size: 0.82rem;
  letter-spacing: 1px; padding: 0.65rem 1.5rem; border: none;
  border-radius: 6px; cursor: pointer; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(201,162,39,0.28); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Nunito';
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.04); color: var(--text2); font-weight: 700;
  font-size: 0.82rem; padding: 0.65rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 6px;
  cursor: pointer; text-transform: uppercase; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Nunito';
}
.btn-outline:hover { border-color: var(--border-gold); color: var(--gold); }
.hero-stats { display: flex; flex-direction: column; gap: 0.8rem; }
.stat-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(201,162,39,0.08);
  border-radius: 10px; padding: 0.8rem 1.2rem; text-align: center;
  min-width: 110px;
}
.stat-num { font-family: 'Bebas Neue'; font-size: 1.7rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.58rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── TELEGRAM CARDS ── */
.tg-section { background: #070710; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.tg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.tg-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: linear-gradient(135deg,#0d1e2d,#091520);
  border: 1px solid rgba(29,155,209,0.15);
  border-radius: 12px; padding: 0.9rem 1.1rem;
  transition: all 0.2s;
}
.tg-card:hover { border-color: rgba(29,155,209,0.4); transform: translateY(-1px); }
.tg-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg,#1d9bd1,#0f6fa6);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.tg-info-name { color: var(--text); font-weight: 800; font-size: 0.84rem; margin-bottom: 0.12rem; }
.tg-info-desc { color: var(--text3); font-size: 0.7rem; }
.tg-arrow { color: var(--text3); margin-left: auto; font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 1.8rem 0 1rem; }
.section-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue'; font-size: 1.3rem; letter-spacing: 2px;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-title.gold { color: var(--gold); }
.badge-hot {
  font-family: 'Nunito'; font-size: 0.5rem; font-weight: 900;
  background: #b91c1c; color: #fff; padding: 0.12rem 0.4rem;
  border-radius: 2px; letter-spacing: 1px;
}
.section-count { color: var(--text3); font-size: 0.74rem; }

/* ── FILTER BAR ── */
.filter-bar { margin-bottom: 1rem; }
.filter-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.filter-btn {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  color: var(--text2); padding: 0.3rem 0.85rem; border-radius: 5px;
  font-size: 0.74rem; font-weight: 700; cursor: pointer;
  transition: all 0.15s; font-family: 'Nunito';
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); border-color: var(--gold); color: #000;
}
.sort-bar { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.sort-label { font-size: 0.68rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.sort-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.05);
  color: var(--text3); padding: 0.24rem 0.7rem; border-radius: 5px;
  font-size: 0.7rem; font-weight: 700; cursor: pointer; font-family: 'Nunito';
  transition: all 0.15s;
}
.sort-btn.active { background: rgba(201,162,39,0.12); border-color: rgba(201,162,39,0.35); color: var(--gold); }

/* ── SITE GRID ── */
.sites-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.65rem; }
.sponsor-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.65rem; }

/* SITE CARD */
.site-card {
  background: linear-gradient(160deg,#0c0c1a,#090912);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: all 0.2s;
  display: flex; flex-direction: column;
}
.site-card:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-2px); }
.site-card.sponsor {
  background: linear-gradient(160deg,#0f0f1e,#0c0c18);
  border-color: rgba(201,162,39,0.12);
}
.site-card.sponsor:hover { border-color: rgba(201,162,39,0.4); }
.card-logo-wrap {
  height: 78px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); padding: 0.5rem; position: relative;
}
.card-logo-wrap img { max-width: 90%; max-height: 50px; object-fit: contain; }
.card-logo-name { font-family: 'Bebas Neue'; font-size: 0.85rem; color: var(--text3); text-align: center; }
.sponsor-badge {
  position: absolute; top: 4px; left: 4px;
  background: var(--gold); color: #000;
  font-size: 0.45rem; font-weight: 900; padding: 0.1rem 0.32rem;
  border-radius: 2px; letter-spacing: 1px;
}
.card-body { padding: 0.6rem; flex: 1; display: flex; flex-direction: column; }
.card-name { font-weight: 800; font-size: 0.76rem; color: var(--text2); margin-bottom: 0.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-card.sponsor .card-name { color: #d1d5db; }
.card-bonus { font-family: 'Bebas Neue'; font-size: 1.15rem; color: var(--gold); line-height: 1; margin-bottom: 0.08rem; }
.card-type { font-size: 0.58rem; color: var(--text3); margin-bottom: 0.45rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.45rem; }
.card-rating { font-size: 0.68rem; color: var(--gold); }
.card-votes { font-size: 0.6rem; color: var(--text3); }
.card-btn {
  display: block; width: 100%; padding: 0.4rem; font-weight: 900;
  font-size: 0.66rem; text-align: center; border-radius: 5px; cursor: pointer;
  text-transform: uppercase; transition: all 0.15s; font-family: 'Nunito';
  border: none;
}
.site-card.sponsor .card-btn { background: var(--gold); color: #000; }
.site-card:not(.sponsor) .card-btn {
  background: rgba(201,162,39,0.08); color: var(--gold);
  border: 1px solid rgba(201,162,39,0.15);
}
.card-btn:hover { background: var(--gold) !important; color: #000 !important; }

/* ── LOAD MORE ── */
.load-more-wrap { text-align: center; margin-top: 1.5rem; }
.btn-load-more {
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.2);
  color: var(--gold); font-weight: 800; font-size: 0.87rem;
  padding: 0.75rem 2.5rem; border-radius: 8px; cursor: pointer;
  font-family: 'Nunito'; transition: all 0.2s;
}
.btn-load-more:hover { background: var(--gold); color: #000; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.blog-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.2s;
}
.blog-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.blog-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg4); }
.blog-img-placeholder { width: 100%; height: 180px; background: linear-gradient(135deg,#0d0d1c,#1a1500); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.blog-body { padding: 1.1rem; }
.blog-cat { font-size: 0.62rem; font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
.blog-title { font-weight: 800; font-size: 0.95rem; line-height: 1.4; margin-bottom: 0.5rem; color: var(--text); }
.blog-excerpt { font-size: 0.78rem; color: var(--text3); line-height: 1.6; margin-bottom: 0.7rem; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.7rem; color: var(--text3); }
.blog-read-more { color: var(--gold); font-weight: 700; font-size: 0.75rem; }

/* ── SEO TEXT ── */
.seo-text-box {
  background: rgba(201,162,39,0.03); border: 1px solid rgba(201,162,39,0.07);
  border-radius: 10px; padding: 1.3rem; margin: 0.5rem 0 1.5rem;
}
.seo-text-box h2 { font-family: 'Bebas Neue'; font-size: 1.1rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 0.6rem; }
.seo-text-box p { color: var(--text3); font-size: 0.76rem; line-height: 1.8; }

/* ── FOOTER ── */
.site-footer { background: #06060e; border-top: 1px solid var(--border); margin-top: 2rem; }
.footer-top { padding: 2rem 0; display: flex; gap: 2rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.footer-brand { max-width: 260px; }
.footer-logo { margin-bottom: 0.8rem; display: inline-block; }
.footer-desc { color: var(--text3); font-size: 0.78rem; line-height: 1.6; margin-bottom: 0.8rem; }
.footer-badges { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.badge-18 { background: #b91c1c; color: #fff; font-size: 0.65rem; font-weight: 900; padding: 0.15rem 0.5rem; border-radius: 3px; }
.badge-premium { background: rgba(201,162,39,0.1); border: 1px solid var(--border-gold); color: var(--gold); font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 3px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 32px; height: 32px; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.9rem; transition: all 0.2s;
}
.footer-social a:hover { background: var(--border-gold); color: var(--gold); border-color: var(--gold); }
.footer-cols { flex: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.footer-col h4 { color: var(--gold); font-size: 0.68rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.8rem; }
.footer-col a { display: block; color: var(--text3); font-size: 0.78rem; padding: 0.25rem 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding: 1rem 0; }
.footer-warning { font-size: 0.7rem; color: var(--text3); margin-bottom: 0.4rem; }
.footer-copy { font-size: 0.7rem; color: var(--text3); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: all 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: #0f0f1e; border: 1px solid rgba(201,162,39,0.12);
  border-radius: 16px; padding: 2rem; max-width: 440px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: fadeInUp 0.25s ease;
}
.modal-close {
  position: absolute; right: 1rem; top: 1rem;
  background: rgba(255,255,255,0.05); border: none; color: var(--text3);
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.9rem;
}
.modal-logo { max-width: 140px; max-height: 60px; object-fit: contain; margin: 0 auto 1rem; }
.modal-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.3rem; text-align: center; }
.modal-bonus { font-family: 'Bebas Neue'; font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.2rem; text-align: center; }
.modal-type { color: var(--text3); font-size: 0.8rem; margin-bottom: 1rem; text-align: center; }
.modal-tags { display: flex; justify-content: center; gap: 0.4rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.modal-tag { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 5px; padding: 0.3rem 0.75rem; font-size: 0.72rem; color: var(--text2); }
.modal-cta {
  display: block; padding: 0.85rem; background: var(--gold); color: #000;
  font-weight: 900; text-align: center; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3); transition: all 0.2s;
}
.modal-cta:hover { background: var(--gold-light); }

/* ── WHEEL ── */
.wheel-btn-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none; cursor: pointer; font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(201,162,39,0.4);
  animation: spin-glow 3s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)} }
@keyframes spin-glow { 0%,100%{box-shadow:0 6px 20px rgba(201,162,39,0.4)}50%{box-shadow:0 6px 35px rgba(201,162,39,0.7)} }

/* ── GIF BANNER ── */
.gif-banner-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 220px; border: 1px solid rgba(255,255,255,0.06);
}
@media(min-width:768px){ .gif-banner-wrap { height: 300px; } }
.gif-banner-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
  transition: opacity 0.4s;
}
.gif-banner-wrap:hover .gif-banner-img { opacity: 0.7; }
.gif-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  display: flex; align-items: center;
}
.gif-banner-content { padding: 1.5rem 2rem; }
.gif-banner-sub {
  font-size: 0.6rem; font-weight: 900; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 0.4rem;
}
.gif-banner-title {
  font-family: 'Bebas Neue'; font-size: clamp(1.8rem,4vw,3rem);
  color: #fff; line-height: 1.05; letter-spacing: 2px; margin-bottom: 0.5rem;
}
.gif-banner-desc { color: #9ca3af; font-size: 0.82rem; margin-bottom: 1rem; max-width: 350px; }
.gif-banner-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #fff; font-weight: 800; font-size: 0.8rem;
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
  transition: color 0.2s;
}
.gif-banner-btn:hover { color: var(--gold); }

/* ── VIP TELEGRAM BANNER ── */
.vip-tg-banner {
  display: block; position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(29,155,209,0.3);
  box-shadow: 0 0 30px rgba(29,155,209,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vip-tg-banner:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(29,155,209,0.2); }
.vip-tg-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35;
}
.vip-tg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,136,204,0.85) 0%, rgba(0,80,150,0.7) 50%, rgba(0,136,204,0.4) 100%);
}
.vip-tg-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.5rem 2rem; flex-wrap: wrap;
}
.vip-tg-left { display: flex; align-items: center; gap: 1.2rem; flex: 1; min-width: 0; }
.vip-tg-icon {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white; backdrop-filter: blur(8px);
  transition: transform 0.3s;
}
.vip-tg-banner:hover .vip-tg-icon { transform: scale(1.1); }
.vip-tg-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: #fcd34d; font-size: 0.62rem; font-weight: 900;
  padding: 0.18rem 0.6rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.35rem;
}
.vip-tg-title {
  font-family: 'Bebas Neue'; font-size: clamp(1.1rem,2.5vw,1.8rem);
  color: #fff; letter-spacing: 1.5px; line-height: 1.1; margin-bottom: 0.3rem;
}
.vip-tg-desc { color: rgba(255,255,255,0.85); font-size: 0.78rem; line-height: 1.5; }
.vip-tg-desc strong { color: #fcd34d; }
.vip-tg-btn-wrap { flex-shrink: 0; }
.vip-tg-btn {
  display: inline-flex; align-items: center;
  background: #fff; color: #0088cc; font-weight: 900;
  font-size: 0.82rem; padding: 0.75rem 1.5rem; border-radius: 10px;
  transition: all 0.2s; white-space: nowrap;
}
.vip-tg-banner:hover .vip-tg-btn { background: var(--gold); color: #000; }

/* ── RESPONSIVE ── */
@media(min-width:560px) {
  .sites-grid { grid-template-columns: repeat(3,1fr) !important; }
  .sponsor-grid { grid-template-columns: repeat(3,1fr) !important; }
}
@media(min-width:900px) {
  .sponsor-grid { grid-template-columns: repeat(5,1fr) !important; }
  .sites-grid { grid-template-columns: repeat(4,1fr) !important; }
  .blog-grid { grid-template-columns: repeat(3,1fr); }
  .footer-cols { grid-template-columns: repeat(4,1fr); }
}
@media(min-width:1200px) {
  .sites-grid { grid-template-columns: repeat(5,1fr) !important; }
}
@media(max-width:900px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero-stats { display: none; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .tg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:560px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.gif-banner-wrap { background: linear-gradient(135deg, #1a1200, #3d2e00, #1a1200); }
.vip-tg-banner { background: linear-gradient(135deg, #003d6b, #0066aa, #003d6b); }

.gif-banner-wrap { 
  background: linear-gradient(135deg, #1a0f00 0%, #3d2a00 50%, #1a0f00 100%) !important; 
  min-height: 220px;
}
.vip-tg-banner { 
  background: linear-gradient(135deg, #003d6b 0%, #0066aa 50%, #003d6b 100%) !important; 
  min-height: 100px;
}

/* ELITE BANNER */
.elite-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #0f0a00 0%, #1e1500 40%, #0f0a00 100%);
  border: 1px solid rgba(201,162,39,0.25); border-radius: 16px;
  padding: 1.8rem 2.5rem; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 0 40px rgba(201,162,39,0.08);
}
.elite-banner-left { display: flex; align-items: center; gap: 1.5rem; }
.elite-banner-icon { font-size: 3rem; filter: drop-shadow(0 0 12px rgba(201,162,39,0.5)); }
.elite-banner-sub { font-size: 0.62rem; font-weight: 900; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.3rem; }
.elite-banner-title { font-family: 'Bebas Neue'; font-size: clamp(1.5rem,3vw,2.5rem); color: #fff; letter-spacing: 2px; line-height: 1; margin-bottom: 0.4rem; }
.elite-banner-desc { color: var(--text3); font-size: 0.78rem; }
.elite-banner-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; font-weight: 900; font-size: 0.85rem;
  padding: 0.85rem 2rem; border-radius: 10px;
  letter-spacing: 1px; white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201,162,39,0.3); transition: all 0.2s;
}
.elite-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.4); }

/* VIP TG FIX */
.vip-tg-banner { background: linear-gradient(135deg, #003d6b 0%, #0066aa 50%, #003d6b 100%) !important; }

/* STATS */
.stats-section { background:var(--bg3); border:1px solid var(--border); border-radius:16px; padding:1.5rem 2rem; }
.stats-title { text-align:center; font-size:0.8rem; font-weight:700; color:var(--text2); margin-bottom:1.2rem; display:flex; align-items:center; justify-content:center; gap:0.5rem; }
.stats-dot { width:8px; height:8px; background:var(--green); border-radius:50%; display:inline-block; animation:pulse 2s infinite; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.stats-card { background:var(--bg4); border:1px solid var(--border); border-radius:12px; padding:1rem 1.2rem; display:flex; align-items:center; gap:1rem; }
.stats-icon { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.stats-num { font-family:'Bebas Neue'; font-size:1.5rem; color:var(--gold); letter-spacing:1px; line-height:1; }
.stats-label { font-size:0.68rem; color:var(--text3); margin-top:0.2rem; }
@media(max-width:768px){ .stats-grid { grid-template-columns:repeat(2,1fr); } }

/* ── STATS SECTION ── */
.stats-section {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}
.stats-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.stats-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stats-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stats-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.stats-num {
  font-family: 'Bebas Neue';
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.stats-label {
  font-size: 0.68rem;
  color: var(--text3);
  margin-top: 0.2rem;
}
@media(max-width:768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── STATS SECTION YENİ ── */
.stats-section {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.stats-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
.stats-dot {
  width: 8px; height: 8px;
  background: #00c853;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #00c853;
  animation: pulse 2s infinite;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stats-card {
  background: #111120;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}
.stats-card:hover { border-color: rgba(201,162,39,0.2); }
.stats-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stats-num {
  font-family: 'Bebas Neue';
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}
.stats-label {
  font-size: 0.7rem;
  color: var(--text3);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media(max-width:768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ═══════════════════════════════════════════
   MOBİL TAM OPTİMİZASYON - iOS & Android
   ═══════════════════════════════════════════ */

/* Temel mobil fix */
* { -webkit-tap-highlight-color: transparent; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ── HEADER MOBİL ── */
@media(max-width:900px) {
  .site-header { padding: 0 1rem; height: 56px; }
  .logo { font-size: 1.3rem; }
  .header-actions { gap: 0.4rem; }
  .header-actions .btn-tg, .header-actions .btn-chat { font-size: 0.7rem; padding: 0.4rem 0.7rem; }
  .search-bar { display: none; }
  .mobile-toggle { display: flex !important; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; }
}

/* ── TICKER MOBİL ── */
@media(max-width:560px) {
  .ticker-wrap { font-size: 0.72rem; }
  .ticker-item { padding: 0 1rem; }
}

/* ── HERO MOBİL ── */
@media(max-width:900px) {
  .hero { padding: 2rem 0 1.5rem; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: 0.82rem; }
  .hero-btns { flex-wrap: wrap; gap: 0.6rem; }
  .hero-btns a, .hero-btns button { width: 100%; justify-content: center; text-align: center; font-size: 0.85rem; padding: 0.85rem 1rem; }
  .hero-stats { display: grid !important; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-top: 1.5rem; }
  .stat-card { padding: 0.8rem 0.5rem; text-align: center; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; }
}
@media(max-width:560px) {
  .hero { padding: 1.5rem 0 1rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}

/* ── ELİT BANNER MOBİL ── */
@media(max-width:768px) {
  .elite-banner { padding: 1.2rem 1.2rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .elite-banner-left { gap: 1rem; }
  .elite-banner-icon { font-size: 2rem; }
  .elite-banner-title { font-size: 1.4rem; }
  .elite-banner-btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── VIP TG BANNER MOBİL ── */
@media(max-width:768px) {
  .vip-tg-banner { flex-direction: column; padding: 1.2rem; gap: 1rem; }
  .vip-tg-banner > a { width: 100%; text-align: center; }
}

/* ── TELEGRAM GRID MOBİL ── */
@media(max-width:560px) {
  .tg-section { padding: 0.5rem 0; }
  .tg-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem; }
  .tg-card { padding: 0.9rem 1rem; }
}

/* ── SİTE KARTLARI MOBİL ── */
@media(max-width:900px) {
  .sites-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.7rem; }
  .sponsor-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.7rem; }
}
@media(max-width:400px) {
  .sites-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.5rem; }
  .sponsor-grid { grid-template-columns: repeat(2,1fr) !important; }
}
.site-card { touch-action: manipulation; }
.card-btn { min-height: 44px; font-size: 0.78rem; touch-action: manipulation; }
.card-logo-wrap { height: 80px; }
@media(max-width:560px) {
  .card-logo-wrap { height: 65px; }
  .card-body { padding: 0.6rem; }
  .card-name { font-size: 0.78rem; }
  .card-bonus { font-size: 1.1rem; }
  .card-type { font-size: 0.65rem; }
  .card-meta { font-size: 0.65rem; }
  .card-btn { font-size: 0.72rem; padding: 0.5rem; min-height: 40px; }
}

/* ── SECTION HEADER MOBİL ── */
@media(max-width:560px) {
  .section-header { flex-wrap: wrap; gap: 0.5rem; }
  .section-title { font-size: 0.9rem; }
  .filter-bar { flex-direction: column; gap: 0.6rem; }
  .filter-btns, .sort-bar { flex-wrap: wrap; gap: 0.4rem; }
  .filter-btn, .sort-btn { font-size: 0.72rem; padding: 0.4rem 0.7rem; }
}

/* ── STATS MOBİL ── */
@media(max-width:768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.7rem; }
  .stats-card { padding: 0.9rem 1rem; gap: 0.7rem; }
  .stats-num { font-size: 1.5rem; }
  .stats-icon { width: 40px; height: 40px; font-size: 1.2rem; }
}
@media(max-width:400px) {
  .stats-grid { grid-template-columns: repeat(2,1fr) !important; }
  .stats-num { font-size: 1.3rem; }
  .stats-label { font-size: 0.62rem; }
}

/* ── MAKALE LAYOUT MOBİL ── */
@media(max-width:900px) {
  .alay { grid-template-columns: 1fr !important; }
  .art h2 { font-size: 1.3rem; }
  .btable th, .btable td { padding: 0.5rem 0.6rem; font-size: 0.75rem; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 0.7rem; }
  .criteria-grid { grid-template-columns: repeat(2,1fr); }
  .sport-grid { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:560px) {
  .steps { grid-template-columns: repeat(2,1fr); }
  .sport-grid { grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
  .criteria-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── BLOG MOBİL ── */
@media(max-width:768px) {
  .blog-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.8rem; }
}
@media(max-width:500px) {
  .blog-grid { grid-template-columns: 1fr !important; }
}

/* ── FOOTER MOBİL ── */
@media(max-width:900px) {
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-cols { grid-template-columns: repeat(2,1fr) !important; gap: 1rem; }
  .footer-brand { max-width: 100%; }
}
@media(max-width:500px) {
  .footer-cols { grid-template-columns: repeat(2,1fr) !important; }
  .footer-col h4 { font-size: 0.75rem; }
  .footer-col a { font-size: 0.75rem; }
  .footer-warning { font-size: 0.72rem; }
  .footer-copy { font-size: 0.7rem; }
}

/* ── MODAL MOBİL ── */
@media(max-width:560px) {
  .modal-box { padding: 1.5rem 1rem; margin: 1rem; border-radius: 12px; }
  .modal-bonus { font-size: 2rem; }
  .modal-cta { font-size: 0.85rem; padding: 0.85rem; }
}

/* ── WHEEL MOBİL ── */
@media(max-width:560px) {
  #wheelCanvas { width: 260px !important; height: 260px !important; }
}

/* ── FAB BUTON MOBİL ── */
.wheel-btn-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; font-size: 1.4rem; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
  z-index: 999; transition: transform 0.2s;
  display: flex; align-items: center; justify-content: center;
  touch-action: manipulation;
}
.wheel-btn-float:hover { transform: scale(1.1); }
@media(max-width:560px) {
  .wheel-btn-float { bottom: 1rem; right: 1rem; width: 46px; height: 46px; font-size: 1.2rem; }
}

/* ── iOS SAFE AREA ── */
@supports(padding: max(0px)) {
  .site-header { padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
  .site-footer { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
  .wheel-btn-float { bottom: max(1.5rem, env(safe-area-inset-bottom)); right: max(1.5rem, env(safe-area-inset-right)); }
}

/* ── TOUCH DOSTU BUTONLAR ── */
button, a, .filter-btn, .sort-btn, .card-btn, .modal-cta {
  -webkit-touch-callout: none;
  touch-action: manipulation;
}
input, select, textarea {
  font-size: 16px !important; /* iOS zoom engelle */
  -webkit-appearance: none;
  border-radius: 0;
}

/* ── SCROLL PERFORMANS ── */
.sites-grid, .sponsor-grid, .blog-grid {
  -webkit-overflow-scrolling: touch;
}

/* ── DOKUNMA GERİBİLDİRİMİ ── */
.card-btn:active { transform: scale(0.97); }
.filter-btn:active { transform: scale(0.96); }
.btn-gold:active, .btn-outline:active { transform: scale(0.97); }

/* ── LOAD MORE MOBİL ── */
@media(max-width:560px) {
  .btn-load-more { width: 100%; font-size: 0.82rem; padding: 0.8rem; }
}

/* ── SEO TEXT BOX MOBİL ── */
@media(max-width:560px) {
  .seo-text-box { padding: 1rem; }
  .seo-text-box h2 { font-size: 1rem; }
  .seo-text-box p { font-size: 0.78rem; }
}

/* ── INFO BOX MOBİL ── */
@media(max-width:560px) {
  .ibox { padding: 0.9rem 1rem; }
}

/* ── BANNER GRID MOBİL ── */
@media(max-width:768px) {
  .banner-section { padding: 0.4rem 0.6rem; }
  .banner-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.4rem; }
}
@media(max-width:480px) {
  .banner-grid { grid-template-columns: 1fr !important; gap: 0.3rem; }
  .banner-item { aspect-ratio: auto !important; height: auto !important; }
  .banner-item img { width: 100% !important; height: auto !important; display: block !important; object-fit: contain !important; }
}

/* ── OVERFLOW FIX ── */
table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media(max-width:560px) {
  .btable { font-size: 0.72rem; }
  .btable th { padding: 0.5rem 0.5rem; }
  .btable td { padding: 0.45rem 0.5rem; }
}

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); background: var(--bg2);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 0.5rem; min-width: 220px; z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  grid-template-columns: 1fr 1fr; gap: 0.2rem;
}
.nav-dropdown:hover .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.8rem; border-radius: 8px;
  color: var(--text2); font-size: 0.8rem; font-weight: 700;
  transition: all 0.15s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(201,162,39,0.08); color: var(--gold); }
.nav-dropdown-menu a span { font-size: 1rem; }
.nav-bonus-link { color: var(--gold) !important; font-weight: 900 !important; }

/* ── MOBİL OVERLAY ── */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }

/* ── HEADER MOBİL FİX ── */
@media(max-width:900px) {
  .search-bar { display: none !important; }
  .top-bar { font-size: 0.7rem; }
  .top-bar .container { flex-wrap: wrap; gap: 0.3rem; }
  .top-bar-left, .top-bar-right { gap: 0.5rem; }
  .header-inner { height: 56px; padding: 0 1rem; }
}

/* Mobilde search gizle */
@media(max-width:1024px) {
  .search-bar { display: none !important; }
}

/* Nav kategoriler çok uzun - küçült */
@media(max-width:1100px) {
  .main-nav a { font-size: 0.78rem; padding: 0.4rem 0.5rem; }
  .nav-dropdown-menu { min-width: 340px; }
}

/* ═══════════════════════════════
   HEADER TAM YENİDEN
   ═══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 990;
  background: rgba(13,13,20,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}
.header-inner {
  display: flex; align-items: center;
  height: 60px; gap: 1.5rem;
}
.logo { flex-shrink: 0; font-size: 1.4rem; }
.main-nav {
  display: flex; align-items: center; gap: 0.2rem;
  flex: 1; flex-wrap: nowrap; overflow: visible;
}
.main-nav > a, .nav-dropdown > a {
  font-size: 0.78rem; font-weight: 700;
  padding: 0.4rem 0.6rem; border-radius: 6px;
  white-space: nowrap; color: var(--text2);
  transition: color 0.2s;
}
.main-nav > a:hover, .nav-dropdown > a:hover { color: var(--gold); }
.main-nav > a.active { color: var(--gold); }
.search-bar {
  display: flex; align-items: center;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  width: 160px; flex-shrink: 0;
}
.search-bar input {
  background: none; border: none; outline: none;
  color: var(--text1); font-size: 0.8rem;
  padding: 0.45rem 0.7rem; width: 100%;
}
.search-bar button {
  background: none; border: none; color: var(--text3);
  padding: 0.45rem 0.6rem; cursor: pointer;
}
.mobile-toggle { display: none; }

/* Masaüstü nav düzgün sığsın */
@media(min-width:901px) and (max-width:1200px) {
  .main-nav > a, .nav-dropdown > a { font-size: 0.72rem; padding: 0.35rem 0.45rem; }
  .search-bar { width: 130px; }
  .header-inner { gap: 0.8rem; }
  .logo { font-size: 1.2rem; }
}
@media(min-width:901px) and (max-width:1050px) {
  .search-bar { display: none !important; }
}

/* MOBİL HEADER */
@media(max-width:900px) {
  .site-header { height: 54px; }
  .header-inner { height: 54px; padding: 0 1rem; gap: 0; justify-content: space-between; }
  .logo { font-size: 1.25rem; }
  .main-nav { display: none !important; }
  .search-bar { display: none !important; }
  .header-actions { display: flex; align-items: center; gap: 0.5rem; }
  .mobile-toggle {
    display: flex !important; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: var(--bg3);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--text2); font-size: 1rem; cursor: pointer;
    flex-shrink: 0;
  }
}

/* TOP BAR MOBİL */
@media(max-width:900px) {
  .top-bar { font-size: 0.68rem; padding: 0.25rem 0; }
  .top-bar .container { flex-direction: column; gap: 0.15rem; align-items: flex-start; padding: 0.2rem 1rem; }
  .top-bar-left, .top-bar-right { gap: 0.6rem; }
  .top-tg-btn { padding: 0.2rem 0.5rem; font-size: 0.68rem; }
}
@media(max-width:400px) {
  .top-bar { display: none; }
}

/* MOBİL MENÜ */
.mobile-menu {
  position: fixed; top: 0; left: -100%;
  width: 80%; max-width: 320px; height: 100vh;
  background: var(--bg2); border-right: 1px solid var(--border);
  z-index: 9999; overflow-y: auto; padding: 1rem 0 2rem;
  transition: left 0.3s ease; display: flex;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { left: 0; }
.mobile-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.5rem; color: var(--text2);
  font-size: 0.9rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.15s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); background: rgba(201,162,39,0.05); }
.mobile-close {
  align-self: flex-end; margin: 0.5rem 1rem 0.5rem auto;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); width: 36px; height: 36px;
  border-radius: 8px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.mobile-tg { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 998;
}
.mobile-overlay.open { display: block; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.5rem;
  min-width: 300px; z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  grid-template-columns: 1fr 1fr; gap: 0.2rem;
}
.nav-dropdown:hover .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.7rem; border-radius: 8px;
  color: var(--text2); font-size: 0.78rem; font-weight: 700;
  transition: all 0.15s; white-space: nowrap;
  border-bottom: none;
}
.nav-dropdown-menu a:hover { background: rgba(201,162,39,0.08); color: var(--gold); }
.nav-bonus-link { color: var(--gold) !important; font-weight: 900 !important; }

/* ═══ MOBİL CONTENT FİX ═══ */
@media(max-width:860px){
  /* Genel overflow fix */
  body { overflow-x: hidden !important; }
  .container { padding: 0 0.9rem !important; }

  /* Hero düzelt */
  .hero { padding: 1.5rem 0 1rem !important; }
  .hero-content h1 { font-size: clamp(1.6rem,7vw,2.5rem) !important; line-height: 1.15 !important; }
  .hero-desc { font-size: 0.82rem !important; }
  .hero-btns { flex-direction: column !important; gap: 0.6rem !important; }
  .hero-btns a, .hero-btns button { width: 100% !important; justify-content: center !important; text-align: center !important; }
  .hero-stats { display: none !important; }

  /* Bannerlar */
  .elite-banner { flex-direction: column !important; padding: 1rem !important; gap: 0.8rem !important; }
  .elite-banner-btn { width: 100% !important; text-align: center !important; }
  .vip-tg-banner { flex-direction: column !important; padding: 1.2rem !important; gap: 0.8rem !important; align-items: flex-start !important; }
  .vip-tg-banner > a { width: 100% !important; text-align: center !important; justify-content: center !important; }

  /* Kartlar 2 kolon */
  .sponsor-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.6rem !important; }
  .sites-grid   { grid-template-columns: repeat(2,1fr) !important; gap: 0.6rem !important; }

  /* Kart içi */
  .card-logo-wrap { height: 70px !important; }
  .card-body { padding: 0.6rem !important; }
  .card-name { font-size: 0.78rem !important; }
  .card-bonus { font-size: 1.1rem !important; }
  .card-type { font-size: 0.65rem !important; }
  .card-meta { font-size: 0.65rem !important; }
  .card-btn { font-size: 0.75rem !important; padding: 0.55rem !important; min-height: 40px !important; }

  /* Section header */
  .section-header { flex-wrap: wrap !important; gap: 0.5rem !important; }
  .filter-bar { flex-direction: column !important; gap: 0.5rem !important; }
  .filter-btns, .sort-bar { flex-wrap: wrap !important; gap: 0.4rem !important; }
  .filter-btn, .sort-btn { font-size: 0.72rem !important; padding: 0.38rem 0.65rem !important; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.6rem !important; }
  .stats-card { padding: 0.8rem !important; gap: 0.6rem !important; }
  .stats-num { font-size: 1.4rem !important; }
  .stats-icon { width: 38px !important; height: 38px !important; font-size: 1.1rem !important; }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.7rem !important; }

  /* Footer */
  .footer-top { flex-direction: column !important; gap: 1.5rem !important; }
  .footer-cols { grid-template-columns: repeat(2,1fr) !important; gap: 1rem !important; }

  /* Makale sayfaları */
  .alay { grid-template-columns: 1fr !important; }
  .art h2 { font-size: 1.2rem !important; }
  .ibox { padding: 0.9rem 1rem !important; }

  /* Ticker */
  .ticker-wrap { font-size: 0.7rem !important; }

  /* Tg kanalları */
  .tg-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media(max-width:480px){
  .sponsor-grid { grid-template-columns: repeat(2,1fr) !important; }
  .sites-grid   { grid-template-columns: repeat(2,1fr) !important; }
  .blog-grid    { grid-template-columns: 1fr !important; }
  .card-logo-wrap { height: 60px !important; }
  .footer-cols  { grid-template-columns: repeat(2,1fr) !important; }
}

/* Tablo overflow */
.btable-wrap, .overflow-x-auto { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }
@media(max-width:860px){
  table { display: block !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; width: 100% !important; }
  .btable th, .btable td { padding: 0.45rem 0.5rem !important; font-size: 0.72rem !important; white-space: nowrap !important; }
}

/* iOS input zoom engelle */
input, select, textarea { font-size: 16px !important; }
/* Geri al sadece search için */
.hdr-search input { font-size: 14px !important; }

/* Touch feedback */
.card-btn:active { opacity: 0.85 !important; transform: scale(0.98) !important; }

/* iOS safe area */
@supports(padding: max(0px)){
  .site-header { padding-top: env(safe-area-inset-top); }
  footer { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
}

/* ═══ ANA SAYFA MOBİL FİX ═══ */
@media(max-width:860px){
  /* Hero inner - tek kolon */
  .hero-inner { display:block !important; }
  .hero-content { max-width:100% !important; width:100% !important; }
  .hero-stats { display:grid !important; grid-template-columns:repeat(3,1fr) !important; gap:0.5rem !important; margin-top:1.2rem !important; }
  .stat-card { padding:0.7rem 0.5rem !important; text-align:center !important; }
  .stat-num { font-size:1.3rem !important; }
  .stat-label { font-size:0.6rem !important; }

  /* Banner section */
  .banner-section { padding:0.5rem 0.9rem !important; }
  .banner-grid { grid-template-columns:1fr 1fr !important; gap:0.5rem !important; }
  .banner-item { aspect-ratio:728/90 !important; height:auto !important; }
  .banner-item img { object-fit:fill !important; }

  /* Elite banner */
  .elite-banner { flex-direction:column !important; padding:1rem !important; gap:0.8rem !important; }
  .elite-banner-left { flex-direction:row !important; gap:0.8rem !important; }
  .elite-banner-icon { font-size:2rem !important; }
  .elite-banner-title { font-size:1.3rem !important; }
  .elite-banner-desc { font-size:0.72rem !important; }
  .elite-banner-btn { width:100% !important; text-align:center !important; padding:0.8rem !important; }

  /* VIP Banner */
  .vip-tg-banner { flex-direction:column !important; padding:1rem 1.2rem !important; gap:0.8rem !important; }
  .vip-tg-content { flex-direction:row !important; align-items:center !important; gap:0.8rem !important; }
  .vip-tg-btn { width:100% !important; text-align:center !important; justify-content:center !important; }

  /* Telegram kanalları */
  .tg-grid { grid-template-columns:repeat(2,1fr) !important; gap:0.5rem !important; }

  /* Stats ana sayfa */
  .stats-grid { grid-template-columns:repeat(2,1fr) !important; }

  /* Seo text ve diğer containerlar */
  .seo-text-box { padding:1rem !important; }
  .seo-text-box h2 { font-size:1rem !important; }

  /* 4 kolonlu grid → 2 kolona */
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns:repeat(2,1fr) !important; }
}

@media(max-width:480px){
  .hero-content h1 { font-size:1.7rem !important; }
  .hero-btns { gap:0.5rem !important; }
  .hero-btns a, .hero-btns button { padding:0.75rem 1rem !important; font-size:0.82rem !important; }
  .banner-grid { grid-template-columns:1fr !important; }
  .banner-item { aspect-ratio:auto !important; height:auto !important; }
  .banner-item img { width:100% !important; height:auto !important; object-fit:contain !important; }
  .tg-card { padding:0.8rem 1rem !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns:repeat(2,1fr) !important; }
}

/* ═══ FINAL MOBİL FIX - OVERRIDE ALL ═══ */
@media(max-width:860px){
  html,body{overflow-x:hidden!important;max-width:100vw!important}
  .hero-inner{display:flex!important;flex-direction:column!important;gap:1rem!important}
  .hero-content{max-width:100%!important;width:100%!important}
  .hero-stats{display:none!important}
  .mob-drawer{position:fixed!important;top:0!important;left:-100%!important;width:80%!important;max-width:290px!important;height:100%!important;z-index:9999!important;transition:left 0.28s ease!important;overflow-y:auto!important;background:#0f0f1c!important}
  .mob-drawer.on{left:0!important}
  .mob-overlay{display:none!important;position:fixed!important;inset:0!important;z-index:9998!important;background:rgba(0,0,0,0.8)!important}
  .mob-overlay.on{display:block!important}
}

/* ═══ DRAWER KESIN FIX ═══ */
.mob-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.8); z-index:9998; }
.mob-overlay.on { display:block !important; }
.mob-drawer { position:fixed; top:0; left:-100%; width:80%; max-width:290px; height:100vh; background:#0f0f1c; border-right:1px solid rgba(255,255,255,0.07); z-index:9999; overflow-y:auto; display:flex; flex-direction:column; transition:left 0.28s ease; }
.mob-drawer.on { left:0 !important; }


/* Son Eklenenler */
.new-sites-scroll {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold2) transparent;
}
.new-sites-scroll::-webkit-scrollbar { height: 4px; }
.new-sites-scroll::-webkit-scrollbar-track { background: transparent; }
.new-sites-scroll::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 2px; }
.new-sites-scroll .site-card {
  min-width: 160px;
  max-width: 160px;
  flex-shrink: 0;
}
.new-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: #e53935;
  color: #fff;
  font-size: 0.45rem;
  font-weight: 900;
  padding: 0.1rem 0.32rem;
  border-radius: 2px;
  letter-spacing: 1px;
}
/* ================================
   KATEGORİ SAYFALARI - MOBİL FIX
   ================================ */

/* Art (article) içerik taşma engeli */
.art { max-width: 100%; overflow-x: hidden; word-break: break-word; overflow-wrap: break-word; }
.art p, .art ul, .art ol, .art h1, .art h2, .art h3 { max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
.art img { max-width: 100%; height: auto; }

/* Sidebar layout - mobilde düzgün */
.alay { overflow: hidden; }

@media(max-width:860px){
  /* 2 kolon grid -> tek kolon */
  .alay { grid-template-columns: 1fr !important; gap: 1rem !important; }

  /* H1 taşma engeli - Bebas Neue geniş font */
  .art h1, h1 {
    font-size: 1.5rem !important;
    letter-spacing: 1px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.2 !important;
  }

  /* H2 küçült */
  .art h2 { font-size: 1.2rem !important; letter-spacing: 1px !important; }

  /* Paragraf taşma */
  .art p {
    font-size: 0.84rem !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }

  /* Tablo responsive */
  .btable { font-size: 0.7rem !important; }
  .btable th, .btable td { padding: 0.4rem 0.5rem !important; }
  .btable .gb { padding: 0.2rem 0.4rem !important; font-size: 0.62rem !important; }

  /* SEO text box */
  .seo-text-box { padding: 1rem !important; }
  .seo-text-box h2 { font-size: 1.1rem !important; }
  .seo-text-box p { font-size: 0.82rem !important; }

  /* Info box */
  .ibox { padding: 0.8rem 1rem !important; }

  /* Steps grid */
  .steps { grid-template-columns: 1fr 1fr !important; gap: 0.6rem !important; }

  /* FAQ responsive */
  .faq-q { font-size: 0.82rem !important; padding: 0.8rem 1rem !important; }
  .faq-a { font-size: 0.78rem !important; padding: 0 1rem 0.8rem !important; }

  /* Sidebar sticky kaldır */
  [style*="position:sticky"] { position: static !important; }
}

@media(max-width:480px){
  .art h1, h1 {
    font-size: 1.2rem !important;
    letter-spacing: 0.5px !important;
  }

  .steps { grid-template-columns: 1fr !important; }

  /* Kartlar her zaman 2'li */
  .sponsor-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.4rem !important; }
  .sites-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.4rem !important; }

  .hero-badge, [style*="hero-badge"] {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.6rem !important;
  }
}