.cta-area {
  margin-top: 24px;
  min-height: 300px;
  border-radius: 16px;
  background: #151a2b url('../images/bann-bett-foot.jpg') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-list { 
  list-style: none; margin: 0; padding: 12px; 
  max-width: 520px;
}
.cta-item {
  display: block;
  border-radius: 12px;
  background: rgba(21, 26, 43, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.cta-item:hover {
  transform: scale(1.02);
  background: rgba(21, 26, 43, 0.85);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
}
.cta-item + .cta-item { margin-top: 10px; }

.cta-icon { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.cta-text { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.cta-title { font-weight: 800; color: #e6ebff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; }
.cta-sub { color: var(--bt-muted); font-size: 12px; margin-top: 1px; line-height: 1.2; }

.cta-dots { height: 1px; background-image: radial-gradient(#c0c6df 1px, transparent 1px); background-size: 6px 1px; background-repeat: repeat-x; opacity: 0.7; flex: 1; }

.cta-amount { font-weight: 800; color: #e6ebff; font-size: 14px; margin-left: 8px; }
/* Brand palette: Bettilt-inspired */
:root {
  --bt-bg-dark: #0b1023;
  --bt-bg-darker: #070b18;
  --bt-accent: #ffd600;
  --bt-accent-hover: #ffea66;
  --bt-text: #ffffff;
  --bt-muted: #a9b0c3;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  background: var(--bt-bg-dark);
  color: var(--bt-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

a {
  color: var(--bt-accent);
  text-decoration: none;
}

a:hover {
  color: var(--bt-accent-hover);
}

/* Layout */
header.site-header,
footer.site-footer {
  background: #222939;
}

/* Override header color per request */
.site-header {
  background: #222939;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* Mobile hamburger and menu */
.hamburger { display: none; }
.mobile-menu { display: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-weight: 600;
}

/* Fancy nav pill */
.nav-pill {
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 14px;
  border-radius: 28px;
  gap: 18px;
  backdrop-filter: saturate(130%) blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-item {
  position: relative;
  color: #c8cde0;
  letter-spacing: 0.3px;
}

.nav-item:hover { color: #e6ebff; }

.nav-item.has-caret { padding-right: 18px; }
.nav-item.has-caret::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid #7c86a6;
  border-bottom: 2px solid #7c86a6;
  transform: translateY(-60%) rotate(45deg);
}

.nav-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  margin: 0 4px;
}

.nav-item.tv {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d6dbf2;
}

.tv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: #bfc7e6;
  color: #222939;
  font-weight: 800;
  font-size: 12px;
}

.tv-label { font-weight: 800; letter-spacing: 0.3px; }

/* Auth actions */
.auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(180deg, #ffe049 0%, #ffbf00 100%);
  color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(255, 208, 0, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #fff06a 0%, #ffc933 100%);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid #2bdc8c;
  color: var(--bt-text);
  box-shadow: 0 0 0 2px rgba(43, 220, 140, 0.15) inset;
}

.btn-outline:hover {
  border-color: #34f09b;
  box-shadow: 0 0 0 2px rgba(52, 240, 155, 0.2) inset;
}

/* Main placeholder */
main.site-main {
  min-height: auto;
  display: block;
  padding: 16px 0 32px 0;
}

.placeholder {
  max-width: 720px;
  text-align: center;
  color: var(--bt-muted);
}

/* SEO Review block */
.seo-review {
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
}

.seo-review .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.seo-review h2 {
  margin: 0;
  font-size: 18px;
}

.seo-review .rating span {
  color: var(--bt-accent);
  font-weight: 800;
}

/* FAQ accordion */
.faq { 
  margin-top: 20px; 
  position: relative;
}
.faq::before {
  /* Accent top bar */
  content: '';
  position: absolute;
  left: 0; right: 0; top: -6px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bt-accent) 0%, #ffd60066 50%, transparent 100%);
}
.faq-title { 
  margin: 0 0 10px 0; 
  font-size: 20px; 
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Removed yellow dot after SSS title */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: linear-gradient(180deg, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.16) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.faq-item::before {
  /* left accent */
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(255, 214, 0, 0.25);
}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.12); }

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  position: relative;
  font-weight: 700;
  color: #e6ebff;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid #7c86a6;
  border-bottom: 2px solid #7c86a6;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] > summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item[open] { border-color: rgba(255, 214, 0, 0.35); }
.faq-item[open]::before { background: var(--bt-accent); }
.faq-answer { padding: 0 16px 14px 16px; color: var(--bt-muted); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto minmax(0, 1.6fr);
  column-gap: 48px;
  row-gap: 8px;
  align-items: start;
  padding: 20px 0 12px 0;
}

.footer-col {}

.footer-left {}

.footer-title {
  color: var(--bt-muted);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav a {
  display: block;
  padding: 6px 0;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}

.gcb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bt-muted);
  font-size: 14px;
}

.gcb img {
  height: 18px;
  width: auto;
  display: block;
}

.footer-gcb .gcb img {
  height: 56px;
}
/* removed footer-bottom; merged into footer-top */

.footer-legal {
  color: var(--bt-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-legal a {
  color: var(--bt-accent);
}

.legal-links {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
}

.legal-links li + li {
  margin-top: 6px;
}

@media (max-width: 768px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav, .footer-nav {
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .footer-gcb { margin-top: 0; }

  /* Hide left columns (Ana Menü, Bilgi) in mobile footer */
  .footer-top .footer-col:nth-child(1),
  .footer-top .footer-col:nth-child(2) { display: none; }

  /* Mobile header layout: logo left, auth buttons right */
  .header-inner { flex-direction: row; align-items: center; gap: 12px; }
  .brand img { height: 44px; }
  .nav.nav-pill { display: none; }
  .auth-actions { margin-left: auto; gap: 10px; }
  .btn { height: 42px; padding: 0 16px; border-radius: 22px; font-size: 14px; }
  .hamburger { 
    display: inline-flex; flex-direction: column; gap: 4px; 
    width: 40px; height: 40px; align-items: center; justify-content: center; 
    background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; 
  }
  .hamburger span { display: block; width: 18px; height: 2px; background: #c8cde0; border-radius: 2px; }

  .mobile-menu { 
    position: absolute; left: 0; right: 0; top: 64px; 
    background: #222939; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none; padding: 12px; z-index: 9;
  }
  .mobile-menu a { 
    display: block; padding: 12px 10px; border-radius: 10px; 
    color: #e6ebff; font-weight: 700;
  }
  .mobile-menu a:hover { background: rgba(255,255,255,0.06); }
}


