/* ---------- THEME TOKENS ---------- */
    :root{
      --bg: #0d0d16;
      --bg-soft:#121224;
      --bg-softer:#0f1022;
      --text:#E9ECF1;
      --muted:#9aa3b2;
      --card:#16172b;
      --border:#262742;

      --brand:#ff00c8;
      --brand-2:#00ffff;
      --brand-3:#7a5cff;

      --radius:16px;
      --shadow:0 10px 30px rgba(0,0,0,.35);
      --glow:0 0 14px rgba(255,0,200,.35), 0 0 28px rgba(0,255,255,.2);
    }
    [data-theme="light"]{
      --bg:#f7f8fc;
      --bg-soft:#ffffff;
      --bg-softer:#f2f4fb;
      --text:#1b1e2a;
      --muted:#677085;
      --card:#ffffff;
      --border:#e7e9f3;

      --glow:0 0 12px rgba(255,0,200,.25), 0 0 18px rgba(0,255,255,.15);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
      color:var(--text);
      background: radial-gradient(1200px 800px at 10% -10%, rgba(122,92,255,.25), transparent 40%),
              radial-gradient(1000px 700px at 110% 10%, rgba(0,255,255,.18), transparent 45%),
              var(--bg);
  background-attachment: fixed; /* 🟢 Eklendi: arka plan sabit kalır */
  background-repeat: no-repeat; /* 🟢 Eklendi: tekrar etmez */
  background-size: cover;       /* 🟢 Eklendi: ekranı kaplar */
  background-position: center top; /* 🟢 Dilersen pozisyonu ayarlayabilirsin */
  line-height: 1.45;
    }

    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}

    .container{max-width:1280px;margin:0 auto;padding:16px;}

/* ---------- STICKY HEADER ---------- */
    .header{
      position:sticky; top:0; z-index:1000;
      backdrop-filter: blur(8px);
      background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0)) ;
    }
    .header-inner{
      display:flex; align-items:center; gap:14px;
      padding:12px 16px;
      border-bottom:1px solid var(--border);
      background:var(--bg-soft);
      box-shadow:var(--shadow);
    }
    .logo{
      display:flex; align-items:center; gap:10px; white-space:nowrap;
      font-weight:700; font-size:22px; letter-spacing:.3px;
      color:var(--text);
      text-shadow:
        0 0 1px #fff2,
        0 0 12px color-mix(in oklab, var(--brand) 70%, transparent),
        0 0 22px color-mix(in oklab, var(--brand-2) 45%, transparent);
    }
    .logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: url("/img/logo.png") center center / cover no-repeat;
border-radius: 8px;
  box-shadow: 0 0 8px rgba(255,0,200,.4), 0 0 12px rgba(0,255,255,.25);
  border: 1px solid var(--border);
}


    .search{
      flex:1; display:flex; align-items:center; gap:10px;
      background:var(--bg-softer);
      border:1px solid var(--border);
      border-radius:999px; padding:8px 12px 8px 14px;
    }
    .search input{
      width:100%; border:none; outline:none; background:transparent; color:var(--text);
      font-size:14px;
    }
    .search button{
      border:none; cursor:pointer; border-radius:999px; padding:10px 14px; font-weight:600;
      color:#0a0a0a; background:
        linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 6px 18px rgba(255,0,200,.25);
    }

    .header-actions{display:flex; align-items:center; gap:10px;}
    .toggle{
      display:inline-flex; align-items:center; gap:8px; cursor:pointer;
      border:1px solid var(--border); border-radius:999px; padding:8px 12px;
      background:var(--bg-softer);
    }
    .toggle .dot{
      width:10px; height:10px; border-radius:999px;
      background:linear-gradient(135deg,var(--brand-2),var(--brand));
      box-shadow:var(--glow);
    }

/* ---------- NAV ---------- */
    .nav{
      background:var(--bg-soft);
      border-bottom:1px solid var(--border);
    }
    .nav-wrap{display:flex; align-items:center; gap:12px; padding:10px 16px;}
    .menu{display:flex; gap:6px; flex-wrap:wrap}
    .menu a{
      padding:10px 14px; border-radius:12px; font-weight:600; font-size:14px;
      background:var(--bg-softer); border:1px solid var(--border);
      transition:.2s ease; position:relative; overflow:hidden;
    }
    .menu a:hover{ transform:translateY(-1px); box-shadow:var(--glow) }
    .menu a.is-active{
      background:linear-gradient(135deg, color-mix(in oklab, var(--brand) 28%, var(--bg-softer)),
                                         color-mix(in oklab, var(--brand-2) 28%, var(--bg-softer)));
      border-color: color-mix(in oklab, var(--brand) 60%, var(--border));
      box-shadow:var(--glow);
    }

    .burger{
      display:none; margin-left:auto;
      width:42px; height:42px; border-radius:12px; border:1px solid var(--border);
      background:var(--bg-softer); cursor:pointer; position:relative;
    }
    .burger span, .burger:before, .burger:after{
      content:''; position:absolute; left:9px; right:9px; height:2px; background:var(--text);
      transition:.25s ease;
    }
    .burger span{ top:50%; transform:translateY(-50%); }
    .burger:before{ top:12px }
    .burger:after{ bottom:12px }
    .burger.is-open span{opacity:0}
    .burger.is-open:before{transform:translateY(7px) rotate(45deg)}
    .burger.is-open:after{transform:translateY(-7px) rotate(-45deg)}

    .menu-mobile{display:none; padding:10px 16px; border-top:1px solid var(--border); background:var(--bg-soft)}
    .menu-mobile a{display:block; margin:8px 0; padding:12px 14px; border-radius:12px; background:var(--bg-softer); border:1px solid var(--border)}

    @media (max-width: 980px){
      .nav-wrap{gap:10px}
      .menu{display:none}
      .burger{display:inline-block}
      .menu-mobile.show{display:block}
    }

/* ---------- ADS GRID ---------- */
    .section-title{
      display:flex; align-items:center; gap:10px; margin:24px 0 12px 0; padding:0 4px;
      font-weight:700;
    }
    .section-title .bar{
      width:10px; height:10px; border-radius:3px;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:var(--glow);
    }

    .ads-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 1200px){
      .ads-grid{ grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px){
      .ads-grid{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px){
      .ads-grid{ grid-template-columns: 1fr; }
    }

    .ad{
      background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
      padding:10px; position:relative; overflow:hidden;
      box-shadow:var(--shadow);
    }
    .ad:before{
      content:''; position:absolute; inset:0; pointer-events:none;
      border-radius:calc(var(--radius) + 2px);
      padding:1px; background:linear-gradient(135deg,var(--brand),transparent 35%, var(--brand-2));
      -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude; opacity:.5;
    }
    .ad a{display:block}
    .ad img{
      width:100%; height:auto; aspect-ratio: 468/60;
      object-fit:cover; border-radius:10px;
      border:1px dashed color-mix(in oklab, var(--brand) 50%, var(--border));
    }

/* ---------- VIDEO GRID (placeholder) ---------- */
    .videos{ margin:28px 0 40px }
    .grid{
      display:grid; gap:16px;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 1200px){
      .grid{ grid-template-columns: repeat(3, 1fr) }
    }
    @media (max-width: 900px){
      .grid{ grid-template-columns: repeat(2, 1fr) }
    }
    @media (max-width: 560px){
      .grid{ grid-template-columns: 1fr }
    }

    .card{
      background:var(--card); border:1px solid var(--border); border-radius:16px;
      overflow:hidden; box-shadow:var(--shadow); transition:.2s ease;
    }
    .thumb{position:relative; aspect-ratio:16/9; background:#000}
    .badge{
      position:absolute; left:10px; bottom:10px; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:700;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      color:#051016; box-shadow:var(--glow);
    }
    .card:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(0,0,0,.45) }
    .meta{ padding:12px 14px }
    .title{ font-weight:600; font-size:14px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden }

/* ---------- FOOTER ---------- */
    .footer{
      margin-top:40px; padding:24px 16px; border-top:1px solid var(--border);
      background:var(--bg-soft); color:var(--muted); text-align:center;
    }
	@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .search {
    flex: none;
    width: 100%;
    margin-top: 8px;
  }
  .search button {
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  body {
    background: var(--bg) !important;
  }
}
@media (max-width: 600px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .search {
    order: 3;
    flex: 1 0 100%;
    margin-top: 10px;
  }

  .search input {
    font-size: 16px;
  }
}
/* Header ve menü artık sticky değil */
.header {
  position: static !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.nav {
  position: static !important;
  box-shadow: none !important;
}
/* ---------- MODEL GRID ---------- */
.models{ margin:28px 0 40px }
.model-grid{
  display:grid; gap:16px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px){
  .model-grid{ grid-template-columns: repeat(4, 1fr) }
}
@media (max-width: 900px){
  .model-grid{ grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 560px){
  .model-grid{ grid-template-columns: repeat(2, 1fr) }
}

.model-card{
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; overflow:hidden; box-shadow:var(--shadow);
  text-align:center; transition:.2s ease;
}
.model-card img{
  width:100%; aspect-ratio:1/1; object-fit:cover;
  border-bottom:1px solid var(--border);
}
.model-card:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(0,0,0,.45) }
.model-name{
  padding:10px; font-weight:600; font-size:14px;
  color:var(--text);
}
/* ---------- BOTTOM NAVBAR ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  z-index: 999;
  box-shadow: 0 -6px 18px rgba(0,0,0,.35);
}

/* ---------- BOTTOM NAVBAR ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  z-index: 999;
  box-shadow: 0 -6px 18px rgba(0,0,0,.35);
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: .2s ease;
}

.bottom-nav a i {
  font-size: 18px;
}

.bottom-nav a.active,
.bottom-nav a:hover {
  color: var(--brand);
  text-shadow: 0 0 6px rgba(255,0,200,.4);
}

/* Artık desktopta da sticky olacak */
@media (min-width: 900px) {
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 -6px 18px rgba(0,0,0,.35);
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--bg-softer);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: .25s;
}

.pagination a:hover {
  box-shadow: var(--glow);
  transform: translateY(-1px);
}

.pagination a.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #051016;
  font-weight: 700;
  box-shadow: var(--glow);
}

.pagination .dots {
  color: var(--muted);
  padding: 8px 10px;
}

.pagination a.prev,
.pagination a.next {
  font-weight: 600;
}
/* ---------- ANİMASYONLU BUTON ---------- */
.neon-btn {
  display: inline-block;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 999px;
  color: #051016;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: var(--glow);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.neon-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    var(--brand),
    var(--brand-2),
    var(--brand-3),
    var(--brand)
  );
  background-size: 300% 300%;
  z-index: -1;
  border-radius: inherit;
  animation: neonFlow 4s linear infinite;
}

@keyframes neonFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.neon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,0,200,.5), 0 0 35px rgba(0,255,255,.3);
}

.sort-select {
  background: #16172b;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
  outline: none;
}
.sort-select:hover {
  border-color: var(--brand);
}
