/* ================================
   BonusPedi — Premium Açık Tema
   ================================ */
/* Inter font loaded via <link> in head.ejs */

:root {
  --primary: #34d399;
  --primary-light: #6ee7b7;
  --primary-dark: #021608;
  --accent: #10b981;
  --accent-light: #34d399;
  --gold: #f59e0b;
  --bg: #052316;
  --bg-card: #073d24;
  --bg-secondary: #042018;
  --text: #f0fdf4;
  --text-secondary: #bbf7d0;
  --text-muted: #6ee7b7;
  --border: rgba(52,211,153,0.15);
  --border-light: rgba(52,211,153,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.35);
  --shadow: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --navbar-height: 64px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }
.flex-1 { flex: 1; }

/* ---- NAVBAR ---- */
.navbar-bonuspedi {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar-bonuspedi .navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-bonuspedi .navbar-brand .brand-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.navbar-bonuspedi .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.navbar-bonuspedi .nav-link:hover,
.navbar-bonuspedi .nav-link.active {
  color: var(--primary) !important;
  background: var(--bg-secondary);
}

/* ---- BANNER ---- */
.site-banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(135deg, #021608 0%, #042f1e 50%, #064e3b 100%);
  padding: 80px 0 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.hero-stat-item { text-align: center; }
.hero-stat-number { font-size: 1.8rem; font-weight: 800; color: #fbbf24; }
.hero-stat-label { font-size: 0.8rem; opacity: 0.7; }

/* ---- SECTION ---- */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-badge {
  display: inline-block;
  background: rgba(52,211,153,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.section-desc { color: var(--text-secondary); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ---- SITE KARTLARI ---- */
.site-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.site-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.site-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.site-card:hover::before { opacity: 1; }
.site-card-logo {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  padding: 6px;
  flex-shrink: 0;
}
.site-card-logo-placeholder {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.3rem;
  flex-shrink: 0;
}
.site-card-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-featured { background: rgba(245,158,11,0.12); color: var(--gold); border: 1px solid rgba(245,158,11,0.2); }
.badge-new { background: rgba(22,163,74,0.12); color: var(--accent); border: 1px solid rgba(22,163,74,0.2); }
.badge-recommended { background: rgba(52,211,153,0.12); color: var(--primary); border: 1px solid rgba(52,211,153,0.2); }
.badge-popular { background: rgba(139,92,246,0.1); color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); }

.site-card-name { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 14px 0 6px; }
.site-card-info { font-size: 0.875rem; color: var(--text-secondary); flex: 1; line-height: 1.55; }
.site-card-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; display: flex; align-items: center; gap: 4px; }
.site-card-actions { margin-top: 18px; display: flex; gap: 8px; }

/* ---- BONUS KARTLARI ---- */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.bonus-card-img {
  width: 100%; height: 160px;
  object-fit: cover;
  background: var(--bg-secondary);
}
.bonus-card-img-placeholder {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, var(--accent) 0%, #15803d 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem;
}
.bonus-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.bonus-card-site { font-size: 0.78rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.bonus-card-name { font-size: 1rem; font-weight: 700; color: var(--text); margin: 6px 0; }
.bonus-card-desc { font-size: 0.85rem; color: var(--text-secondary); flex: 1; }
.bonus-card-actions { margin-top: 14px; }

/* ---- BUTONLAR ---- */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-primary-custom:hover { background: var(--primary-light); color: #fff; transform: translateY(-1px); }
.btn-accent-custom {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-accent-custom:hover { background: var(--accent-light); color: #fff; }
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

/* ---- DENEME BONUSU BLOĞU ---- */
.content-block {
  background: rgba(52,211,153,0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
}
.content-block p { color: var(--text-secondary); margin-bottom: 8px; }

/* ---- SSS ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.faq-answer.open { max-height: 300px; padding: 16px 20px; }

/* ---- POPUP ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: popupFadeIn 0.35s ease forwards;
}
.popup-overlay.popup-hidden { display: none; }
.popup-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  max-width: 300px;
  width: 88%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: popupSlideUp 0.35s ease forwards;
}
.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.popup-close:hover { background: rgba(0,0,0,0.9); transform: scale(1.1); }
.popup-img { display: block; width: 100%; height: auto; }
@keyframes popupFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}
.footer-brand { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-tagline { font-size: 0.85rem; opacity: 0.6; margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-heading { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 32px; padding-top: 20px; font-size: 0.82rem; opacity: 0.5; }
.footer-warning { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.78rem; margin-top: 16px; opacity: 0.6; }

/* ---- KATEGORİ KARTLARI ---- */
.bonus-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s;
  height: 100%;
}
.bonus-cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bonus-cat-emoji { font-size: 2.2rem; margin-bottom: 10px; line-height: 1; }
.bonus-cat-label { font-weight: 700; color: var(--text); font-size: 0.92rem; margin-bottom: 5px; }
.bonus-cat-count { font-size: 0.78rem; color: var(--text-muted); }

/* ---- ADMIN PANEL ---- */
.admin-sidebar {
  width: 240px;
  background: #064e3b;
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.admin-sidebar-header span { color: #f59e0b; }
.admin-sidebar-nav { padding: 12px 0; flex: 1; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(245,158,11,0.1);
  color: #fff;
  border-left: 3px solid #f59e0b;
}
.admin-nav-item i { width: 18px; text-align: center; }
.admin-nav-section {
  padding: 16px 20px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.admin-main { margin-left: 240px; min-height: 100vh; background: var(--bg); }
.admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid #059669;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-content { padding: 24px; }
.admin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid #059669;
  padding: 20px;
  margin-bottom: 20px;
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.95rem;
  color: #064e3b;
}
.admin-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.admin-stat-icon.blue { background: rgba(5,150,105,0.1); color: #059669; }
.admin-stat-icon.green { background: rgba(5,150,105,0.15); color: #047857; }
.admin-stat-value { font-size: 1.6rem; font-weight: 800; line-height: 1; color: #d97706; }
.admin-stat-label { font-size: 0.8rem; color: var(--text-muted); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-secondary); }

/* Toggle switch */
.toggle-switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: #cbd5e1; border-radius: 100px;
  transition: 0.3s;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(18px); }

.sync-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.sync-badge.success { background: rgba(22,163,74,0.1); color: var(--accent); }
.sync-badge.error { background: rgba(239,68,68,0.1); color: #ef4444; }
.sync-badge.running { background: rgba(245,158,11,0.1); color: var(--gold); }

/* ---- FİLTRE ---- */
.filter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: calc(var(--navbar-height) + 16px);
}
.filter-title { font-weight: 700; margin-bottom: 14px; font-size: 0.9rem; }
.filter-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 4px; cursor: pointer;
  font-size: 0.88rem; color: var(--text-secondary);
  transition: color 0.15s;
  min-height: 44px;
}
.filter-option:hover { color: var(--primary); }

/* ---- SİTE DETAY ---- */
.site-detail-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.site-detail-logo {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  object-fit: contain;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 4px;
  flex-shrink: 0;
}
.site-social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.site-social-link {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}
.site-social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.goto-site-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem;
  transition: all 0.2s; border: none; text-decoration: none;
}
.goto-site-btn:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(22,163,74,0.3); }

/* ---- BREADCRUMB ---- */
.breadcrumb-custom { padding: 12px 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb-custom a { color: var(--text-muted); }
.breadcrumb-custom a:hover { color: var(--primary); }
.breadcrumb-custom span { color: var(--text-secondary); }
.breadcrumb-custom a + a::before,
.breadcrumb-custom span::before { content: ' › '; }

/* ---- FORM ---- */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.12);
}
.form-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }

/* ---- ADMIN EMERALD OVERRIDES ---- */
.admin-main {
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-secondary: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  background: #f8fafc;
}
.admin-main .form-control:focus,
.admin-main .form-select:focus,
.admin-main textarea:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.admin-main .btn-primary {
  background: #059669;
  border-color: #059669;
}
.admin-main .btn-primary:hover {
  background: #047857;
  border-color: #047857;
}
.admin-main a { color: #059669; }
.admin-main a:hover { color: #047857; }
.admin-topbar .text-primary,
.admin-topbar .fw-bold { color: #064e3b !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .filter-card { position: static; }
}

@media (max-width: 767px) {
  body { padding-bottom: 68px; font-size: 15px; }

  /* Hero */
  .hero-section { padding: 40px 0 28px; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-stats { gap: 16px; margin-top: 24px; }
  .hero-stat-number { font-size: 1.4rem; }
  .hero-badge { font-size: 0.75rem; }

  /* Sections */
  .section { padding: 32px 0; }
  .section-header { margin-bottom: 24px; }
  .section-title { font-size: clamp(1.2rem, 4vw, 1.6rem); }

  /* Cards */
  .site-card, .bonus-card { border-radius: var(--radius); }
  .site-card { padding: 14px; }
  .bonus-cat-card { padding: 14px 8px; }
  .bonus-cat-emoji { font-size: 1.8rem; }
  .bonus-cat-label { font-size: 0.85rem; }
  .bonus-card-body { padding: 12px; }

  /* Buttons */
  .goto-site-btn { width: 100%; justify-content: center; }
  .site-card-actions { flex-direction: column; }
  .site-card-actions .btn-outline-custom,
  .site-card-actions .btn-accent-custom { justify-content: center; min-height: 44px; }
  .btn-accent-custom, .btn-outline-custom, .btn-primary-custom { min-height: 44px; }

  /* Site detail */
  .site-detail-header { padding: 16px; }

  /* Footer */
  .site-footer { padding: 32px 0 16px; }
  .footer-links a { font-size: 0.9rem; padding: 4px 0; display: block; }
  .footer-links li { margin-bottom: 10px; }

  /* Content */
  .content-block { padding: 20px 16px; }
  .faq-question { padding: 14px 16px; font-size: 0.9rem; }
  .faq-answer { font-size: 0.88rem; }
}

@media (max-width: 575px) {
  body { font-size: 15px; }

  /* Hero - small phones */
  .hero-section { padding: 32px 0 24px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero-stat-item { min-width: 80px; }

  /* Logo banner */
  .d-flex.gap-3.flex-wrap { gap: 10px !important; }

  /* Site card - single column on tiny screens */
  .site-card { padding: 12px; }
  .site-card-logo { width: 52px; height: 52px; }
  .site-card-name { font-size: 1rem; }
  .site-card-meta { font-size: 0.78rem; }

  /* Bonus card */
  .bonus-card-img { height: 130px; }

  /* Sections */
  .section { padding: 24px 0; }
  .section-header { margin-bottom: 20px; }

  /* Buttons - full width */
  .btn-accent-custom, .btn-outline-custom { padding: 11px 16px; font-size: 0.85rem; }

  /* FAQ */
  .faq-question { padding: 12px 14px; font-size: 0.88rem; }

  /* Content block */
  .content-block { padding: 16px 14px; font-size: 0.9rem; }
}

/* ---- MOBILE BOTTOM NAV ---- */
.mob-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
@media (max-width: 767px) {
  .mob-bottom-nav { display: flex; }
}
.mob-nav-item, .mob-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px 0;
  min-height: 48px;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-item i, .mob-nav-btn i {
  font-size: 20px;
  line-height: 1;
}
.mob-nav-item:hover, .mob-nav-btn:hover,
.mob-nav-item.active, .mob-nav-btn.active {
  color: var(--gold);
}
.mob-nav-item.active i, .mob-nav-btn.active i {
  filter: drop-shadow(0 0 4px rgba(245,158,11,0.5));
}

/* ---- MOBILE BOTTOM SHEETS ---- */
.mob-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
}
.mob-sheet.open {
  display: block;
}
.mob-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.mob-sheet-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-radius: 20px 20px 0 0;
  border-top: 1px solid var(--border);
  padding: 12px 20px 24px;
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.32,0.72,0,1);
  max-height: 80vh;
  overflow-y: auto;
}
.mob-sheet.open .mob-sheet-panel {
  transform: translateY(0);
}
.mob-sheet-handle {
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.mob-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.mob-sheet-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text-muted);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.mob-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mob-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  min-height: 72px;
}
.mob-cat-item:hover { color: var(--text); border-color: var(--primary); background: rgba(52,211,153,0.07); }
.mob-cat-item .mob-cat-emoji { font-size: 26px; line-height: 1; }
.mob-search-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mob-search-input {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
}
.mob-search-input:focus { border-color: var(--primary); }
.mob-search-input::placeholder { color: var(--text-muted); }
.mob-search-btn {
  background: var(--primary);
  border: none;
  color: var(--bg);
  width: 46px; height: 46px;
  border-radius: var(--radius);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
