/* ===== Bonus Postasi - Dark Emerald Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #1e2230; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2a2f3d; }

/* ===== CSS VARIABLES ===== */
:root {
  --accent: #10b981;
  --accent-hover: #059669;
  --accent-subtle: rgba(16, 185, 129, 0.12);
  --accent-glow: rgba(16, 185, 129, 0.25);
  --bg-body: #0a0c10;
  --bg-card: #111318;
  --bg-card-hover: #181b22;
  --bg-surface: #0f1117;
  --bg-nav: rgba(10, 12, 16, 0.95);
  --bg-input: #16181e;
  --border-color: #1e2230;
  --border-light: #2a2f3d;
  --text-primary: #f0f2f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --gold: #f59e0b;
  --gold-subtle: rgba(245, 158, 11, 0.12);
  --gold-border: rgba(245, 158, 11, 0.4);
  --gold-glow: rgba(245, 158, 11, 0.15);
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== BODY ===== */
body {
  font-family: var(--font-family);
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 14px;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ===== TEXT HELPERS ===== */
.text-accent { color: var(--accent) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-accent { background: var(--accent) !important; color: #000 !important; font-weight: 600; }
.bg-gold { background: var(--gold) !important; color: #000 !important; font-weight: 600; }
.bg-accent-subtle { background: var(--accent-subtle) !important; color: var(--accent) !important; }
.bg-surface { background: var(--bg-surface); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-size: 1.1rem;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem !important;
  border-radius: 6px;
  transition: all 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.04);
}

.navbar-dark .navbar-toggler {
  border-color: var(--border-color);
}

.dropdown-menu-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown-menu-dark .dropdown-item {
  color: var(--text-secondary);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  transition: all 0.15s;
}

.dropdown-menu-dark .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.dropdown-menu-dark .dropdown-divider {
  border-color: var(--border-color);
  margin: 0.375rem 0;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.search-input-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
  z-index: 2;
}

.search-input-wrap .form-control {
  padding-left: 48px;
  padding-right: 48px;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  height: 52px;
}

.search-input-wrap .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.search-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
  z-index: 2;
  padding: 4px 8px;
  border: none;
  background: transparent;
}

.search-results {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  max-height: 350px;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.search-results-inner {
  padding: 0.5rem;
}

.search-results-count {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.25rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.15s;
}

.search-result-item:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}

.search-no-result {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg-surface);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q 150 120 300 60 Q 450 0 600 60 Q 750 120 900 60 Q 1050 0 1200 60 L 1200 120 L 0 120 Z' fill='%230f1117'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q 150 120 300 60 Q 450 0 600 60 Q 750 120 900 60 Q 1050 0 1200 60 L 1200 120 L 0 120 Z' fill='%230f1117'/%3E%3C/svg%3E");
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
}

.hero-search-input-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.hero-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.3rem;
  z-index: 2;
}

.hero-search-input {
  padding-left: 52px !important;
  height: 56px !important;
  background: var(--bg-input) !important;
  border: 2px solid var(--border-color) !important;
  border-radius: 14px !important;
  color: var(--text-primary) !important;
  font-size: 1rem !important;
}

.hero-search-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px var(--accent-subtle) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeInUp 0.6s ease-out both; }
.animate-fade-in-delay-1 { animation: fadeInUp 0.6s ease-out 0.1s both; }
.animate-fade-in-delay-2 { animation: fadeInUp 0.6s ease-out 0.2s both; }
.animate-fade-in-delay-3 { animation: fadeInUp 0.6s ease-out 0.3s both; }

/* ===== CATEGORY QUICK LINKS ===== */
.category-links-section {
  padding: 2rem 0;
  background: var(--bg-surface);
}

.category-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.category-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.9rem;
  font-weight: 500;
}

.category-link-card:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

.cat-link-icon {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 2rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 1rem;
}

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

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

/* ===== SITES GRID ===== */
.sites-section {
  padding: 3rem 0;
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ===== SITE CARD ===== */
.site-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.site-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.site-card-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 1;
}

.site-card-logo-wrap {
  padding: 1.5rem 1.5rem 0.5rem;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-card-logo {
  max-width: 130px;
  max-height: 50px;
  object-fit: contain;
}

.site-card-body {
  padding: 0 1.25rem 1rem;
  text-align: center;
  flex: 1;
}

.site-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.site-card-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.site-card-link:hover {
  color: var(--accent);
}

.site-card-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.bonus-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-subtle);
  color: var(--accent);
}

.infra-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.site-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.site-card-footer {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.site-card-footer .btn {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-align: center;
}

.site-review-btn {
  border-color: var(--border-light) !important;
  color: var(--text-secondary) !important;
}

.site-review-btn:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: var(--accent-subtle) !important;
}

/* ===== BUTTONS ===== */
.btn-accent {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000 !important;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s;
}

.btn-accent:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-outline-accent {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  font-weight: 500;
  border-radius: 8px;
  background: transparent;
}

.btn-outline-accent:hover {
  background: var(--accent-subtle) !important;
  color: var(--accent) !important;
}

.hero-cta-btn {
  padding: 0.875rem 2.5rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
}

/* ===== WHY US ===== */
.why-us-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq-wrapper {
  padding: 4rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.1rem 1.25rem;
  box-shadow: none;
  border-radius: 12px !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-card);
  color: var(--accent);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: invert(1) brightness(2);
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.faq-accordion .accordion-body {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0 1.25rem 1.25rem;
  line-height: 1.7;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 0.6rem 0;
}

.breadcrumb {
  margin-bottom: 0;
  font-size: 0.8rem;
  background: transparent;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.active {
  color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
  content: "›";
  font-size: 1.2rem;
  line-height: 1;
}

/* ===== CATEGORY HERO ===== */
.category-hero {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, transparent 100%);
  text-align: center;
}

.category-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.category-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

.category-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.category-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-stats {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* ===== SEO CONTENT ===== */
.seo-content {
  padding: 2rem 0 3rem;
}

.seo-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
}

.seo-content-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.seo-content-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.seo-content-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.seo-content-card ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.seo-content-card li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.seo-content-card li strong {
  color: var(--text-primary);
}

/* ===== SITE DETAIL ===== */
.site-detail-hero {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, transparent 100%);
}

.site-detail-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.site-detail-logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem;
}

.site-detail-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-detail-info {
  flex: 1;
}

.site-detail-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.site-detail-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.site-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rating-stars {
  display: flex;
  gap: 0.15rem;
}

.rating-stars i {
  font-size: 1.1rem;
}

.rating-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-cta .cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== BONUS LIST ===== */
.bonuses-section {
  padding: 2rem 0;
  background: var(--bg-surface);
}

.bonus-list {
  max-width: 800px;
  margin: 0 auto;
}

.bonus-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}

.bonus-item:hover {
  border-color: var(--border-light);
}

.bonus-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-input);
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-content {
  flex: 1;
}

.bonus-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.bonus-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* ===== SITE REVIEW ===== */
.site-review {
  padding: 2rem 0;
}

/* ===== DETAIL CTA ===== */
.detail-cta {
  padding: 3rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.03) 100%);
  border-top: 1px solid var(--border-color);
}

.detail-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ===== STATIC PAGES ===== */
.static-page-section {
  padding: 3rem 0;
  min-height: 60vh;
}

.static-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  max-width: 850px;
  margin: 0 auto;
}

.static-page-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.static-page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.static-page-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.static-page-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.static-page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.static-page-content li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.static-page-content strong {
  color: var(--text-primary);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-logo i {
  color: var(--accent);
}

.footer-trust {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-divider {
  border-color: var(--border-color);
  margin: 2rem 0 1.5rem;
  opacity: 0.5;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  opacity: 0.6;
  max-width: 700px;
  margin: 0.75rem auto 0 !important;
  line-height: 1.6;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1020;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.empty-state h3 {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 0.95rem;
}

/* ===== BOOTSTRAP DARK OVERRIDES ===== */
.dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.bg-secondary { background: #374151 !important; }

/* ===== RESPONSIVE ===== */

/* Tablet - 3 columns */
@media (max-width: 1200px) {
  .sites-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet small - 2 columns */
@media (max-width: 992px) {
  .sites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .site-detail-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-rating {
    justify-content: center;
  }
  .site-detail-logo {
    width: 100px;
    height: 100px;
  }
  .static-page-card {
    padding: 2rem;
  }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }
  .hero-search-input {
    height: 48px !important;
    font-size: 0.9rem !important;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .category-title {
    font-size: 1.5rem;
  }
  .sites-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .category-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .category-link-card {
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
  }
  .site-card-logo-wrap {
    padding: 1rem 1rem 0;
    min-height: 60px;
  }
  .site-card-body {
    padding: 0 0.75rem 0.75rem;
  }
  .site-card-name {
    font-size: 0.9rem;
  }
  .site-card-footer {
    padding: 0.5rem 0.75rem 0.75rem;
    flex-direction: column;
  }
  .site-card-footer .btn {
    font-size: 0.72rem;
    padding: 0.4rem 0.5rem;
  }
  .site-detail-title {
    font-size: 1.3rem;
  }
  .static-page-card {
    padding: 1.5rem;
    border-radius: 12px;
  }
  .static-page-title {
    font-size: 1.5rem;
  }
  .seo-content-card {
    padding: 1.5rem;
  }
  .footer-divider {
    margin: 1.5rem 0 1rem;
  }
  .detail-cta {
    padding: 2rem 0;
  }
}

/* Very small mobile */
@media (max-width: 480px) {
  .sites-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .category-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-section {
    padding: 3rem 0 2rem;
  }
  .site-card {
    flex-direction: row;
    align-items: center;
  }
  .site-card-logo-wrap {
    padding: 0.75rem;
    min-height: auto;
    width: 70px;
    flex-shrink: 0;
  }
  .site-card-logo {
    max-width: 60px;
    max-height: 35px;
  }
  .site-card-body {
    padding: 0.75rem 0.5rem;
    text-align: left;
  }
  .site-card-badges {
    justify-content: flex-start;
  }
  .site-card-footer {
    padding: 0.5rem;
    flex-shrink: 0;
  }
  .site-detail-hero {
    padding: 1.5rem 0;
  }
  .bonus-item {
    flex-direction: column;
  }
  .bonus-image {
    width: 100%;
    height: 100px;
  }
}
