/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --accent: #0ea5e9;
  --bg: #ffffff;
  --bg-alt: #f0fdf4;
  --surface: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--text); line-height: 1.25; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }

/* === TELEGRAM BANNER === */
.tg-banner {
  background: linear-gradient(90deg, #0088cc, #0066aa);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.tg-banner a { color: #fff; font-weight: 700; text-decoration: underline; }
.tg-banner a:hover { opacity: 0.85; }

/* === HEADER/NAV === */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 38px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(16,185,129,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--text); }
.logo svg { width: 36px; height: 36px; }
.logo span { color: var(--primary); }
nav { display: flex; align-items: center; gap: 4px; }
nav a { padding: 8px 12px; border-radius: var(--radius); font-size: 14px; font-weight: 500; color: var(--text); transition: background 0.2s; }
nav a:hover, nav a.active { background: var(--bg-alt); color: var(--primary); text-decoration: none; }
.nav-cta { background: var(--primary) !important; color: #fff !important; border-radius: var(--radius-full) !important; padding: 8px 18px !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; transition: 0.3s; }
@media (max-width: 768px) {
  .hamburger { display: block; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; border-bottom: 2px solid var(--border); box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { width: 100%; padding: 10px 16px; }
}

/* === HERO === */
.hero { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); padding: 60px 0 50px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-block; background: var(--primary); color: #fff; padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { font-size: clamp(28px, 4vw, 46px); line-height: 1.15; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-lead { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.2s; border: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-secondary { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--bg-alt); text-decoration: none; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.hero-stat { background: #fff; padding: 16px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); }
.hero-stat strong { display: block; font-size: 26px; font-family: var(--font-heading); color: var(--primary); }
.hero-stat span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-visual { position: relative; }
.hero-card-preview { background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); border: 2px solid var(--primary); }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* === BETZULA POPUP === */
.betzula-popup-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:9999; align-items:center; justify-content:center; }
.betzula-popup-overlay.show { display:flex; }
.betzula-popup { background:#fff; border-radius:20px; max-width:440px; width:94%; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,0.3); animation:popIn 0.3s ease; }
@keyframes popIn { from { transform:scale(0.85); opacity:0; } to { transform:scale(1); opacity:1; } }
.betzula-popup-header { background:linear-gradient(135deg,#10b981,#059669); padding:28px 24px 20px; text-align:center; }
.betzula-popup-header .popup-badge { background:rgba(255,255,255,0.25); color:#fff; border-radius:20px; display:inline-block; padding:4px 14px; font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:10px; }
.betzula-popup-header h2 { color:#fff; font-size:28px; margin-bottom:4px; }
.betzula-popup-header .popup-sub { color:rgba(255,255,255,0.9); font-size:14px; }
.betzula-popup-body { padding:24px; }
.popup-amount { text-align:center; margin-bottom:20px; }
.popup-amount strong { font-size:52px; font-family:var(--font-heading); color:var(--primary); line-height:1; }
.popup-amount span { display:block; font-size:14px; color:var(--text-muted); }
.popup-features { list-style:none; margin-bottom:20px; }
.popup-features li { padding:8px 0; border-bottom:1px solid var(--border); font-size:14px; display:flex; align-items:center; gap:8px; }
.popup-features li::before { content:"✓"; color:var(--primary); font-weight:700; }
.popup-cta { display:block; width:100%; padding:16px; background:var(--primary); color:#fff; text-align:center; border-radius:var(--radius-full); font-weight:800; font-size:16px; text-transform:uppercase; letter-spacing:1px; }
.popup-cta:hover { background:var(--primary-dark); text-decoration:none; }
.popup-close { position:absolute; top:12px; right:16px; background:none; border:none; font-size:24px; cursor:pointer; color:#fff; line-height:1; }
.betzula-popup-header { position:relative; }
.popup-disclaimer { text-align:center; margin-top:10px; font-size:11px; color:var(--text-muted); }

/* === BREADCRUMB === */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* === BONUS TABLE === */
.bonus-table-section { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(22px,3vw,34px); margin-bottom: 10px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.bonus-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.bonus-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.bonus-table thead { background: linear-gradient(90deg,var(--primary),var(--primary-dark)); }
.bonus-table th { padding: 14px 16px; text-align: left; color: #fff; font-family: var(--font-heading); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.bonus-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 14px; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: var(--bg-alt); }
.bonus-row-featured td { background: #fffbeb; }
.bonus-row-featured:hover td { background: #fef9c3 !important; }
.site-cell { display: flex; align-items: center; gap: 12px; min-width: 160px; }
.site-logo-wrap { width: 60px; height: 32px; background: #f8fafc; border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.site-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.site-logo-placeholder { width: 60px; height: 32px; background: var(--bg-alt); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--primary); border: 1px solid var(--border); }
.site-name { font-weight: 700; font-size: 14px; }
.site-name a { color: var(--text); }
.site-name a:hover { color: var(--primary); }
.amount-cell strong { font-family: var(--font-heading); font-size: 16px; color: var(--primary); }
.featured-badge { display: inline-block; background: #fbbf24; color: #78350f; padding: 2px 8px; border-radius: var(--radius-full); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-left: 6px; }
.cta-btn { display: inline-block; padding: 8px 20px; background: var(--primary); color: #fff; border-radius: var(--radius-full); font-size: 13px; font-weight: 700; white-space: nowrap; transition: background 0.2s; }
.cta-btn:hover { background: var(--primary-dark); text-decoration: none; }
.cta-btn-featured { background: #f59e0b; }
.cta-btn-featured:hover { background: #d97706; }

/* === CONTENT SECTIONS === */
.content-section { padding: 48px 0; }
.content-section h2 { font-size: clamp(20px,2.5vw,28px); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 3px solid var(--primary); display: inline-block; }
.content-section p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.content-section ul, .content-section ol { padding-left: 24px; margin-bottom: 16px; }
.content-section li { margin-bottom: 8px; color: var(--text-muted); line-height: 1.65; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 28px 0; }
.info-card { background: var(--bg-alt); padding: 24px; border-radius: var(--radius-lg); border-left: 4px solid var(--primary); }
.info-card h3 { font-size: 17px; margin-bottom: 8px; }
.info-card p { font-size: 14px; margin: 0; }
.step-list { counter-reset: steps; list-style: none; padding: 0; }
.step-list li { counter-increment: steps; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.step-list li:last-child { border-bottom: none; }
.step-num { background: var(--primary); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.step-content h4 { font-size: 16px; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* === FAQ BLOCK === */
.faq-section { padding: 48px 0; background: var(--bg-alt); }
.faq-section h2 { font-size: clamp(20px,2.5vw,30px); margin-bottom: 24px; }
.faq-item { background: #fff; border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; border: 1px solid var(--border); }
.faq-item summary { padding: 18px 20px; cursor: pointer; font-weight: 600; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--primary); line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 18px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* === INTERNAL LINKS === */
.internal-links-section { padding: 40px 0; }
.internal-links-section h3 { font-size: 18px; margin-bottom: 16px; }
.internal-links-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.internal-link-item { padding: 10px 18px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 14px; font-weight: 500; color: var(--text); transition: all 0.2s; }
.internal-link-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }

/* === DISCLAIMER === */
.disclaimer { background: #f1f5f9; padding: 20px 0; text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); }
.disclaimer a { color: var(--text-muted); }

/* === FOOTER === */
.site-footer { background: #0f172a; color: #94a3b8; padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === SITE DETAIL === */
.site-detail-hero { background: linear-gradient(135deg,#f0fdf4,#dcfce7); padding: 48px 0; }
.site-detail-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.site-detail-logo { width: 120px; height: 60px; object-fit: contain; }
.site-detail-meta h1 { font-size: clamp(22px,3vw,32px); margin-bottom: 6px; }
.site-detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag { padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; }
.tag-green { background: #dcfce7; color: #15803d; }
.tag-blue { background: #dbeafe; color: #1d4ed8; }
.tag-amber { background: #fef3c7; color: #92400e; }
.bonus-card { background: #fff; border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--border); margin-bottom: 16px; transition: box-shadow 0.2s; }
.bonus-card:hover { box-shadow: var(--shadow); }
.bonus-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.bonus-card-title { font-weight: 700; font-size: 15px; flex: 1; }
.bonus-card-img { width: 100%; border-radius: var(--radius); margin-bottom: 12px; max-height: 160px; object-fit: cover; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-title { font-size: 18px; font-family: var(--font-heading); margin-bottom: 8px; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--primary); text-decoration: none; }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--surface-alt); }
.blog-card-img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-img-placeholder { height: 200px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
.blog-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.blog-date { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-cat { font-size: 11px; background: var(--primary); color: #fff; padding: 2px 8px; border-radius: 20px; }
.blog-title { font-size: 18px; font-family: var(--font-heading); margin-bottom: 8px; }
.blog-title a { color: var(--text); }
.blog-title a:hover { color: var(--primary); text-decoration: none; }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-post-body h2 { margin: 32px 0 16px; font-size: clamp(19px,2vw,24px); }
.blog-post-body h3 { margin: 24px 0 12px; font-size: clamp(16px,1.8vw,20px); }
.blog-post-body p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.blog-post-body ul, .blog-post-body ol { padding-left: 24px; margin-bottom: 16px; }
.blog-post-body li { margin-bottom: 8px; color: var(--text-muted); }
.blog-post-body table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.blog-post-body table th, .blog-post-body table td { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; }
.blog-post-body table th { background: var(--surface); font-weight: 600; }
.blog-content h2 { margin: 32px 0 16px; font-size: clamp(19px,2vw,24px); }
.blog-content p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 16px; }
.blog-content li { margin-bottom: 8px; color: var(--text-muted); }

/* === MISC === */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.font-heading { font-family: var(--font-heading); }
.w-full { width: 100%; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 600px) {
  .section, .content-section, .bonus-table-section { padding: 32px 0; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .site-detail-card { grid-template-columns: 1fr; }
}

/* #2105 — #6899: Betzula kampanya kartları, marka bilgi kutuları, sticky bar, tarih damgası */
.bz-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:16px}
.bz-kart{background:#fff;border:1px solid #d1fae5;border-radius:14px;padding:14px;display:flex;flex-direction:column;gap:8px}
.bz-kart img{width:100%;height:auto;border-radius:10px;aspect-ratio:2/1;object-fit:cover}
.bz-kart h3{font-size:15px;line-height:1.3;margin:0}
.bz-kart p{font-size:13px;color:#475569;margin:0;flex:1}
.bz-rozet{align-self:flex-start;font-size:10px;font-weight:700;letter-spacing:.06em;background:#10b981;color:#fff;border-radius:99px;padding:3px 9px}
.bz-cta{display:block;text-align:center;background:#059669;color:#fff;border-radius:10px;padding:9px;font-weight:700;font-size:14px;text-decoration:none}
.bz-alt{margin-top:14px;text-align:center}
.mk-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px}
.mk-kart{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:14px;display:flex;flex-direction:column;gap:6px}
.mk-ust{display:flex;align-items:center;justify-content:space-between;gap:8px;text-decoration:none}
.mk-ust img{width:120px;height:48px;border-radius:8px}
.mk-rozet{font-size:10px;font-weight:700;letter-spacing:.05em;border-radius:99px;padding:3px 8px;white-space:nowrap}
.mk-deneme{background:#d1fae5;color:#065f46}.mk-yatirim{background:#e0f2fe;color:#075985}
.mk-kart h3{font-size:16px;margin:4px 0 0}.mk-kart h3 a{color:inherit;text-decoration:none}
.mk-tutar{font-weight:800;color:#059669;font-size:18px}.mk-tip,.mk-cevrim{font-size:13px;color:#334155}
.mk-not{font-size:13px;color:#475569;margin:4px 0 0;line-height:1.5}.mk-bilgi{font-size:11px;color:#94a3b8}
.bz-sticky{position:fixed;left:12px;bottom:12px;z-index:9990;display:flex;align-items:center;gap:10px;background:#064e3b;color:#fff;border-radius:14px;padding:10px 12px;box-shadow:0 8px 24px rgba(0,0,0,.25);font-size:14px;max-width:calc(100vw - 24px)}
.bz-sticky a{background:#34d399;color:#053b2c;font-weight:800;border-radius:10px;padding:7px 12px;text-decoration:none;white-space:nowrap}
.bz-sticky button{background:none;border:0;color:#a7f3d0;font-size:20px;cursor:pointer;line-height:1}
@media(max-width:640px){.bz-sticky{left:8px;right:8px;bottom:84px;font-size:13px}}
.guncelleme{font-size:13px;color:#64748b;padding:6px 0;border-bottom:1px solid #e2e8f0;background:#f8fafc}
.mk-tablo{width:100%;border-collapse:collapse;margin:12px 0}.mk-tablo th,.mk-tablo td{border:1px solid #e2e8f0;padding:8px 10px;text-align:left;font-size:14px}.mk-tablo th{background:#f1f5f9;width:34%}
.tg-embed{max-width:560px;margin:20px auto}
