/* ============================================
   BONUS AMBARI - Ana Tema
   Renk: #ea580c turuncu/kehribar + #0a0c10 koyu
   Font: Inter
   ============================================ */

:root {
  --bg: #0a0c10;
  --bg-alt: #0f1218;
  --bg-card: #141820;
  --bg-card-hover: #1a1f2a;
  --accent: #ea580c;
  --accent-hover: #f97316;
  --accent-light: rgba(234, 88, 12, 0.12);
  --accent-glow: rgba(234, 88, 12, 0.25);
  --text: #e2e4e9;
  --text-secondary: #b0b4bd;
  --text-muted: #6b7280;
  --border: #1f2937;
  --border-light: #2a3040;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: 0.2s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ============ NAVBAR ============ */
.main-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;
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.navbar-logo {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.navbar-brand-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.text-accent { color: var(--accent); }

.navbar-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-item { position: relative; }

.nav-link {
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg-card);
}

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

.nav-item:hover .dropdown-menu { display: block; }

.dropdown-item {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.navbar-toggler {
  background: none;
  border: none;
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.navbar-toggler:hover { color: var(--accent); }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-menu-overlay.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-body { padding: 16px; }

.mobile-menu-section { margin-bottom: 20px; }

.mobile-menu-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding: 0 12px;
}

.mobile-menu-link {
  display: block;
  padding: 10px 12px;
  color: var(--text-secondary);
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-menu-link:hover, .mobile-menu-link.active {
  background: var(--accent-light);
  color: var(--accent);
}

/* ============ HERO SECTION ============ */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(234, 88, 12, 0.08), transparent);
  pointer-events: none;
}

.hero-content { text-align: center; max-width: 750px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* Search */
.hero-search {
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.search-box { position: relative; }

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

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.search-input::placeholder { color: var(--text-muted); }

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-height: 320px;
  overflow-y: auto;
  box-shadow: var(--shadow);
  z-index: 100;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition);
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--accent-light); }

.search-result-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.search-no-results {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ QUICKLINK CHIPS ============ */
.category-quicklinks { padding: 0 0 24px; }

.quicklinks-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-wrap: wrap;
  justify-content: center;
}

.quicklinks-scroll::-webkit-scrollbar { display: none; }

.quicklink-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition);
}

.quicklink-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ============ SECTIONS ============ */
.sites-section { padding: 40px 0; }

.sites-section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header { margin-bottom: 28px; }

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* ============ SITE CARDS ============ */
.site-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.site-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.site-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.site-card-featured {
  border-color: rgba(234, 88, 12, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(234, 88, 12, 0.04) 100%);
}

.site-card-featured:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(234, 88, 12, 0.15);
}

.site-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.site-card-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.site-card-logo-fallback {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.site-card-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.site-card-name a {
  color: var(--text);
  text-decoration: none;
}

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

.site-card-bonus { margin-bottom: 14px; }

.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bonus-tag-muted {
  background: var(--border);
  color: var(--text-muted);
}

.site-card-actions {
  display: flex;
  gap: 8px;
}

.btn-card {
  flex: 1;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-review {
  background: var(--bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-review:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-visit {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-visit:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-sm { padding: 24px 0; }

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav i { font-size: 10px; }

.page-hero-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ============ SITE DETAIL ============ */
.site-hero { padding: 32px 0 0; }

.site-hero-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.site-hero-logo {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.site-hero-logo-fallback {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.site-hero-info h1 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.site-hero-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.site-hero-rating i { color: var(--warning); font-size: 16px; }

.rating-text {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: 6px;
}

.site-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ============ BONUS CARDS ============ */
.bonuses-section { padding: 40px 0; }

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

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

.bonus-card-image {
  height: 140px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.bonus-card-body { padding: 16px; }

.bonus-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bonus-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.bonus-fallback {
  text-align: center;
  padding: 20px;
}

.fallback-card {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  max-width: 500px;
  margin: 0 auto;
}

.fallback-card i {
  font-size: 36px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.fallback-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ============ REVIEW SECTION ============ */
.review-section {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.review-content { max-width: 800px; }

.review-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}

.review-content h2:first-child { margin-top: 0; }

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

/* ============ FAQ ============ */
.faq-section { padding: 40px 0; }

.faq-list { max-width: 700px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: all var(--transition);
}

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

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============ CORPORATE ============ */
.corporate-section { padding: 40px 0; }

.corporate-content { max-width: 750px; }

.corporate-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}

.corporate-content h2:first-child { margin-top: 0; }

.corporate-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 10px;
}

.corporate-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.corporate-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.corporate-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ============ CTA ============ */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.06) 0%, rgba(234, 88, 12, 0.02) 100%);
  border-top: 1px solid var(--border);
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============ FOOTER ============ */
.main-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

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

.footer-brand i { color: var(--accent); font-size: 24px; }

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--warning);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

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

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

/* ============ EMPTY STATE ============ */
.empty-state { padding: 40px 0; }

.empty-state h3 { color: var(--text); }
.empty-state p { color: var(--text-muted); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .hero-section { padding: 50px 0 40px; }
  .site-hero-card { flex-direction: column; text-align: center; padding: 24px; }
  .site-hero-meta { justify-content: center; }
  .site-hero-rating { justify-content: center; }
  .site-cards-grid { grid-template-columns: 1fr; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 32px 0 24px; }
}

@media (max-width: 576px) {
  .navbar-brand-text { font-size: 17px; }
  .navbar-logo { width: 34px; height: 34px; font-size: 18px; }
  .hero-title { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand-col { text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-disclaimer { justify-content: center; }
  .site-cards-grid { grid-template-columns: 1fr; }
}
