/* jetonsepetim.com.tr — Ortak Site Stili
   Kullanım: /varlik/css/site.css
   Alt sayfa body arka planı index.html kart rengi (#1e3a5f) ile eşleştirildi.
*/

:root {
  --bg: #1e3a5f;
  --bg-deep: #0f172a;
  --card-bg: #141418;
  --card-border: #2a2a2a;
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted-2: #d4d4d8;
  --primary: #ff0050;
  --primary-2: #ff3366;
  --accent: #f472b6;
  --accent-2: #f97316;
  --success: #22c55e;
  --info: #38bdf8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: none;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.logo { height: 48px; width: auto; display: block; }
.desktop-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.desktop-nav a { color: var(--muted); font-weight: 500; font-size: .92rem; transition: color .25s; }
.desktop-nav a:hover { color: var(--primary); }

/* Hamburger */
.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hb:hover { background: rgba(255,255,255,0.05); }
.hb span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hb.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hb.is-open span:nth-child(2) { opacity: 0; }
.hb.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  top: 86px;
  right: -70vw;
  width: 70vw;
  max-width: 320px;
  height: calc(100vh - 86px);
  background: #111318;
  border-left: 1px solid var(--card-border);
  z-index: 150;
  padding: 22px;
  box-shadow: -8px 0 30px rgba(0,0,0,0.4);
  transition: right .35s ease;
  overflow-y: auto;
}
.drawer.active { right: 0; }
.drawer a {
  display: block;
  padding: 12px 4px;
  color: var(--muted-2);
  border-bottom: 1px solid var(--card-border);
  font-weight: 500;
}
.drawer a:hover { color: var(--primary-2); }
.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 4px 10px;
  line-height: 1;
}
.drawer-backdrop {
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}
.drawer-backdrop.active { opacity: 1; visibility: visible; }

/* ---------- Breadcrumb ---------- */
.breadcrumb-nav {
  max-width: 1400px;
  margin: 12px auto 0;
  padding: 0 24px;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb-item.current { color: var(--text); }
.breadcrumb-item a { color: var(--muted); border-bottom: 1px dashed transparent; }
.breadcrumb-item a:hover { color: var(--primary); border-bottom-color: currentColor; }
.breadcrumb-sep { color: var(--muted); margin: 0 4px; }

/* ---------- Page header ---------- */
.page-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a10 50%, #0a0a0a 100%);
  padding: 60px 20px 50px;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}
.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ---------- Cards ---------- */
.cards {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 32px;
}
.card > h2, .card > h3 {
  font-size: 1.4rem;
  margin: 0 0 14px;
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}
.card h3, .card h4 { font-size: 1.1rem; margin: 20px 0 8px; color: var(--accent); }
.card p { color: var(--muted-2); margin-bottom: 12px; }
.card ul, .card ol { color: var(--muted-2); margin: 0 0 16px 22px; }
.card ul li, .card ol li { margin-bottom: 6px; }
.card strong { color: #fff; }
.card a { color: var(--primary); border-bottom: 1px dashed rgba(255,0,80,0.4); }
.card a:hover { color: #fff; border-bottom-color: #fff; }

/* h7 & h8 fallback */
.h7 { display: block; font-size: .95rem; font-weight: 600; color: #e5e5e5; margin: 14px 0 6px; }
.h8 { display: block; font-size: .9rem; font-weight: 600; color: #d4d4d8; margin: 12px 0 6px; }

/* FAQ */
.faq details {
  background: #0f0f13;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq details[open] { border-color: var(--accent-2); }
.faq details summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-2);
  font-size: 1.4rem;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p, .faq details ul {
  margin-top: 10px;
  color: var(--muted-2);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--card-border);
  padding: 32px 16px 24px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}
/* ----- Footer trust badges + payment logos ----- */
.footer-badges { max-width: 1500px; margin: 0 auto 22px; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 14px 20px; margin-bottom: 18px; }
.trust-item { width: 100px; text-align: center; }
.trust-item img { width: 56px; height: 56px; display: inline-block; }
.trust-item span { display: block; font-size: .68rem; letter-spacing: .4px; color: #94a3b8; margin-top: 6px; font-weight: 600; }
.pay-logos { display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center; gap: 10px; }
.pay-logos img { height: 38px; width: auto; border-radius: 6px; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
/* ----- Footer links (full-width, dense) ----- */
.footer-2col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 26px;
  max-width: 1040px;
  margin: 0 auto 18px;
  padding: 0 14px;
}
.footer-2col .col { display: contents; }
.footer-2col a {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 2px;
  font-size: .9rem;
  white-space: nowrap;
  transition: color .2s;
}
.footer-2col a:hover { color: var(--primary); }
.footer-copy {
  color: #666;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
  max-width: 820px;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .hb { display: flex; }
}
@media (max-width: 768px) {
  .card { padding: 22px 20px; }
  .page-header h1 { font-size: 1.75rem; }
  .header-inner { padding: 6px 16px; }
  .logo { height: 42px; }
  .trust-badges { flex-wrap: nowrap; gap: 8px; }
  .trust-item { width: 52px; }
  .trust-item img { width: 37px; height: 37px; }
  .trust-item span { font-size: .5rem; }
  .pay-logos { flex-wrap: nowrap; gap: 4px; }
  .pay-logos img { height: 18px; }
}
@media (max-width: 520px) {
  .logo { height: 30px; }
  .footer-2col {
    gap: 4px 18px;
    max-width: 100%;
    padding: 0 10px;
  }
  .footer-2col a { font-size: .82rem; padding: 4px 2px; }
  .trust-badges { gap: 6px; }
  .trust-item { width: 44px; }
  .trust-item img { width: 30px; height: 30px; }
  .trust-item span { font-size: .46rem; }
  .pay-logos { gap: 3px; }
  .pay-logos img { height: 15px; }
  .footer-copy { font-size: .8rem; }
  .site-footer { padding: 26px 12px 22px; }
}
