/* ===== BONUS KUTUSU - Amber/Altın Tema ===== */

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #252830; border-radius: 3px; }

/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-light: #fbbf24;
  --primary-subtle: rgba(245, 158, 11, 0.12);
  --primary-glow: rgba(245, 158, 11, 0.15);
  --bg-body: #0a0c10;
  --bg-card: #141518;
  --bg-card-hover: #1a1c20;
  --bg-input: #16181c;
  --bg-alt: #0f1116;
  --border: #252830;
  --border-light: #2a2d35;
  --text-primary: #eff1f3;
  --text-secondary: #b0b5bd;
  --text-muted: #8b929d;
  --success: #22c55e;
  --danger: #ef4444;
}

/* ===== BODY ===== */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-hover); }

img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.bk-navbar {
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
}

.bk-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.bk-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}
.bk-navbar-brand i {
  font-size: 22px;
  color: var(--primary);
}
.bk-navbar-brand:hover { color: var(--text-primary); }

.bk-navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bk-nav-item { position: relative; }
.bk-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.bk-nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.bk-nav-badge {
  background: var(--primary-subtle);
  color: var(--primary) !important;
  gap: 6px;
}

/* Dropdown */
.dropdown-hover:hover .bk-dropdown-menu {
  display: block;
}
.dropdown-toggle-custom { cursor: default; }

.bk-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 100;
  margin-top: 4px;
}

.bk-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.15s;
}
.bk-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

/* Hamburger */
.bk-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.bk-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.bk-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.bk-hamburger.active span:nth-child(2) { opacity: 0; }
.bk-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.bk-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.bk-mobile-menu.open { right: 0; }
.bk-mobile-menu-inner { padding: 80px 20px 40px; }

.bk-mobile-section { margin-bottom: 24px; }
.bk-mobile-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bk-mobile-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s;
}
.bk-mobile-link:hover { background: rgba(255,255,255,0.04); color: var(--text-primary); }
.bk-mobile-link i { color: var(--primary); }

.bk-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}
.bk-mobile-overlay.show { display: block; }

/* ===== HERO ===== */
.bk-hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}

.bk-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -60%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -60%) scale(1.1); }
}

.bk-hero-content { position: relative; z-index: 2; }

.bk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid rgba(245, 158, 11, 0.2);
  margin-bottom: 24px;
}

.bk-hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bk-hero-highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 40%, #fde68a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bk-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.bk-hero-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 48px;
}
.bk-hero-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
}
.bk-hero-search-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.bk-hero-search-input:focus { border-color: var(--primary); }
.bk-hero-search-input::placeholder { color: var(--text-muted); }

.bk-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.bk-hero-stat { text-align: center; }
.bk-hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.bk-hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== KATEGORİ BAR ===== */
.bk-categories-bar {
  padding: 0 0 20px;
}

.bk-categories-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bk-categories-scroll::-webkit-scrollbar { display: none; }

.bk-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.bk-cat-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-subtle);
}
.bk-cat-featured {
  background: var(--primary-subtle);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--primary);
}

/* ===== SECTION ===== */
.bk-section { padding: 60px 0; }
.bk-section-alt { background: var(--bg-alt); }
.bk-section-sm { padding: 20px 0; }

.bk-section-header { text-align: center; margin-bottom: 40px; }

.bk-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid rgba(245, 158, 11, 0.15);
  margin-bottom: 16px;
}

.bk-badge-secondary {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
}

.bk-section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bk-section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SİTE KARTI ===== */
.bk-site-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bk-site-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.08);
}

.bk-site-card-featured {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.03) 100%);
}

.bk-site-card-ribbon {
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--primary);
  color: #0a0c10;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  z-index: 2;
  letter-spacing: 0.04em;
}

.bk-site-card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 16px;
  min-height: 110px;
  text-decoration: none;
}

.bk-site-card-logo {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
}

.bk-site-card-logo-fallback {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-muted);
}

.bk-site-card-body {
  padding: 0 18px 16px;
  text-align: center;
  flex: 1;
}

.bk-site-card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bk-site-card-name a {
  color: var(--text-primary);
  text-decoration: none;
}
.bk-site-card-name a:hover { color: var(--primary); }

.bk-site-card-bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-subtle);
  margin-bottom: 8px;
  max-width: 100%;
  overflow: hidden;
}
.bk-site-card-bonus-tag span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bk-site-card-bonus-count {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.bk-site-card-actions {
  display: flex;
  gap: 8px;
  padding: 0 18px 18px;
}

/* ===== BUTTONS ===== */
.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.4;
}

.bk-btn-primary {
  background: var(--primary);
  color: #0a0c10;
  flex: 1;
}
.bk-btn-primary:hover {
  background: var(--primary-hover);
  color: #0a0c10;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.bk-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  flex: 1;
}
.bk-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.bk-btn-sm { padding: 8px 14px; font-size: 12px; border-radius: 8px; }
.bk-btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 12px; }
.bk-btn-block { width: 100%; }

/* ===== SAYFA HERO ===== */
.bk-page-hero {
  padding: 48px 0 32px;
  text-align: center;
}

.bk-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.bk-breadcrumb a { color: var(--text-muted); }
.bk-breadcrumb a:hover { color: var(--primary); }
.bk-breadcrumb span { color: var(--text-muted); }

.bk-page-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bk-page-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ARAMA ===== */
.bk-search-bar {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.bk-search-bar i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}
.bk-search-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.bk-search-input:focus { border-color: var(--primary); }
.bk-search-input::placeholder { color: var(--text-muted); }

.bk-no-results {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}
.bk-no-results i {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.4;
  color: var(--primary);
}
.bk-no-results h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 18px;
}
.bk-no-results p { font-size: 14px; }

/* ===== SİTE DETAY ===== */
.bk-site-hero {
  padding: 36px 0;
}

.bk-site-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.bk-site-hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bk-site-hero-logo img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.bk-site-hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.bk-site-hero-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.bk-site-hero-rating i {
  color: var(--primary);
  font-size: 16px;
}
.bk-site-hero-rating span {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 6px;
}

.bk-site-hero-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bk-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-input);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ===== BONUS KARTI ===== */
.bk-bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bk-bonus-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.bk-bonus-card-img {
  height: 140px;
  overflow: hidden;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-bonus-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bk-bonus-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bk-bonus-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bk-bonus-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* ===== İNCELEME ===== */
.bk-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition: all 0.2s;
}
.bk-review-card:hover { border-color: var(--primary); }

.bk-review-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 14px;
}

.bk-review-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bk-review-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== FAQ ===== */
.bk-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}

.bk-faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.bk-faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== STATİK SAYFA İÇERİK ===== */
.bk-static-content {
  max-width: 740px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.bk-static-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}

.bk-static-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 12px;
}

.bk-static-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== 404 ===== */
.bk-404-icon {
  font-size: 80px;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.bk-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 0;
}

.bk-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.bk-footer-brand i { color: var(--primary); font-size: 22px; }

.bk-footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.bk-footer-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bk-footer-link {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.15s;
}
.bk-footer-link:hover { color: var(--primary); }

.bk-footer-social {
  display: flex;
  gap: 12px;
}
.bk-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.2s;
}
.bk-footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-subtle);
}

.bk-footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.bk-footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.bk-footer-disclaimer {
  opacity: 0.6;
  font-size: 12px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .bk-hero-title { font-size: 2.2rem; }
  .bk-section-title { font-size: 1.6rem; }
  .bk-page-title { font-size: 1.8rem; }
  .bk-hero-stats { gap: 32px; }
  .bk-hero-stat-num { font-size: 1.6rem; }
  .bk-site-hero-card { padding: 24px; }
  .bk-site-hero-title { font-size: 1.3rem; }
}

@media (max-width: 767px) {
  .bk-hero { padding: 48px 0 40px; }
  .bk-hero-title { font-size: 1.7rem; }
  .bk-hero-desc { font-size: 0.95rem; padding: 0 10px; }
  .bk-hero-stats { gap: 20px; }
  .bk-hero-stat-num { font-size: 1.3rem; }
  .bk-section { padding: 40px 0; }
  .bk-section-title { font-size: 1.3rem; }
  .bk-section-header { margin-bottom: 28px; }
  .bk-page-title { font-size: 1.4rem; }
  .bk-page-desc { font-size: 0.9rem; }
  .bk-page-hero { padding: 32px 0 24px; }
  .bk-site-hero-card { padding: 20px; text-align: center; }
  .bk-site-hero-title { font-size: 1.1rem; }
  .bk-site-hero-rating { justify-content: center; }
  .bk-site-hero-meta { justify-content: center; }
  .bk-bonus-card-img { height: 120px; }
  .bk-bonus-card-body { padding: 14px; }
  .bk-bonus-card-title { font-size: 14px; }
  .bk-review-card { padding: 18px; }
  .bk-static-content { padding: 24px 18px; }
  .bk-footer { padding: 40px 0 24px; }
}

@media (max-width: 575px) {
  .bk-hero-title { font-size: 1.4rem; }
  .bk-hero-desc { font-size: 0.85rem; }
  .bk-hero-badge { font-size: 12px; padding: 5px 12px; }
  .bk-hero-search-input { font-size: 14px; padding: 12px 12px 12px 42px; }
  .bk-hero-stats { gap: 16px; }
  .bk-hero-stat-num { font-size: 1.1rem; }
  .bk-hero-stat-label { font-size: 0.75rem; }
  .bk-cat-chip { font-size: 12px; padding: 6px 12px; }
  .bk-section-title { font-size: 1.15rem; }
  .bk-sextion-desc { font-size: 0.85rem; }
  .bk-site-card-logo-wrap { padding: 20px 14px 12px; min-height: 90px; }
  .bk-site-card-logo { max-height: 48px; max-width: 110px; }
  .bk-site-card-body { padding: 0 12px 12px; }
  .bk-site-card-name { font-size: 14px; }
  .bk-site-card-actions { padding: 0 12px 12px; flex-direction: column; }
  .bk-btn { font-size: 12px; padding: 8px 14px; }
  .bk-site-hero-logo { width: 60px; height: 60px; }
  .bk-site-hero-logo img { max-width: 48px; max-height: 48px; }
  .bk-section-badge { font-size: 11px; }
  .bk-faq-item { padding: 18px; }
  .bk-faq-item h3 { font-size: 14px; }
  .bk-footer-bottom { margin-top: 28px; }
}

/* ===== SITE-CARD HIDDEN ===== */
[data-site-card].hidden { display: none !important; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.bk-site-card { animation: fadeInUp 0.4s ease-out both; }

/* ===== BETZULA POPUP ===== */
.bk-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: popupFadeIn 0.3s ease-out;
}
.bk-popup-overlay.show { display: flex; }

@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popupScaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.bk-popup-container {
  position: relative;
  animation: popupScaleIn 0.35s ease-out;
  max-width: 320px;
  margin: 20px;
}

.bk-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #0a0c10;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
  line-height: 1;
}
.bk-popup-close:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

.bk-popup-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
  transition: box-shadow 0.3s;
  text-decoration: none;
}
.bk-popup-link:hover {
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.5);
}

.bk-popup-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

@media (max-width: 480px) {
  .bk-popup-container {
    max-width: 280px;
  }
  .bk-popup-close {
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
