:root{color-scheme:light}body{margin:0;padding:0;font:14px -apple-system,BlinkMacSystemFont,sans-serif;background:#faf9f5;color:#141413}img{max-width:100%}[hidden]:not([hidden=until-found i]){display:none!important}

  @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

  :root{
    --bg:#eef1f5; --surface:#ffffff; --surface-2:#f4f6f9; --surface-3:#eaeef3;
    --border:#dbe0e8; --border-strong:#c4cbd6; --text:#171b22; --muted:#5a6270; --muted-2:#838ba0;
    --accent:#0074F6; --accent-ink:#ffffff; --accent-soft:#e3efff;
    --link:#00265B; --link-soft:#e1e8f5; --node:#00265B; --node-soft:#dfe6f3; --ok:#1f8f5a;
    --shadow: 0 1px 2px rgba(20,23,28,.05), 0 10px 24px -14px rgba(20,23,28,.14);
    --grid-line: rgba(20,25,35,.05);
    color-scheme: light;
  }
  :root[data-theme="dark"]{ color-scheme: dark; }
  @media (prefers-color-scheme: dark){ :root:not([data-theme="light"]){ color-scheme: dark; } }
  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]){
      --bg:#242424; --surface:#333333; --surface-2:#3a3a3a; --surface-3:#2c2c2c;
      --border:#474747; --border-strong:#5c5c5c; --text:#f8f8f6; --muted:#b8b8b3; --muted-2:#8c8c86;
      --accent:#3B93FF; --accent-ink:#00132e; --accent-soft:#10315c;
      --link:#7FB6FF; --link-soft:#1b2b45; --node:#7FA8E8; --node-soft:#1b2b45; --ok:#3ecf8e;
      --shadow: 0 1px 2px rgba(0,0,0,.35), 0 14px 30px -16px rgba(0,0,0,.6);
      --grid-line: rgba(255,255,255,.05);
    }
  }
  :root[data-theme="dark"]{
    --bg:#242424; --surface:#333333; --surface-2:#3a3a3a; --surface-3:#2c2c2c;
    --border:#474747; --border-strong:#5c5c5c; --text:#f8f8f6; --muted:#b8b8b3; --muted-2:#8c8c86;
    --accent:#3B93FF; --accent-ink:#00132e; --accent-soft:#10315c;
    --link:#7FB6FF; --link-soft:#1b2b45; --node:#7FA8E8; --node-soft:#1b2b45; --ok:#3ecf8e;
    --shadow: 0 1px 2px rgba(0,0,0,.35), 0 14px 30px -16px rgba(0,0,0,.6);
    --grid-line: rgba(255,255,255,.05);
  }

  *{ box-sizing:border-box; }
  body{ background:var(--bg); color:var(--text); font-family:'Manrope', ui-sans-serif, system-ui, sans-serif; -webkit-font-smoothing:antialiased; }
  h1,h2,h3{ font-family:'Rajdhani','Manrope',sans-serif; font-weight:700; letter-spacing:.005em; text-wrap:balance; margin:0; }
  .mono{ font-family:'JetBrains Mono', ui-monospace, monospace; }
  a{ color:inherit; text-decoration:none; }
  button{ font:inherit; }
  .wrap{ max-width:1280px; margin:0 auto; padding:0 22px; }

  .route-strip{ height:5px; position:relative; overflow:hidden; background:repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 18px); }
  .route-strip .runner{ position:absolute; top:0; left:-6%; width:6%; height:100%; background:linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent); animation: run 5.5s linear infinite; }
  @media (prefers-reduced-motion: reduce){ .route-strip .runner{ animation:none; display:none; } }
  @keyframes run{ to{ left:106%; } }

  header.site{ background:var(--surface); border-bottom:1px solid var(--border); }
  .topbar{ display:flex; align-items:center; justify-content:space-between; padding:8px 0; font-size:.76rem; color:var(--muted-2); border-bottom:1px solid var(--border); }
  .topbar .ticker{ display:flex; gap:16px; align-items:center; }
  .topbar .ticker b{ color:var(--accent); font-weight:700; }
  .topbar .right-links{ display:flex; gap:14px; align-items:center; }
  .topbar .right-links a:hover{ color:var(--accent); }
  .topbar-divider{ width:1px; height:12px; background:var(--border-strong); }
  .auth-link{ font-weight:700; color:var(--text); }
  .auth-link.accent{ color:var(--accent); }
  .theme-toggle{ display:inline-flex; align-items:center; justify-content:center; width:25px; height:25px; border-radius:6px; border:1px solid var(--border); background:var(--surface-2); cursor:pointer; color:var(--muted); }
  .theme-toggle:hover{ color:var(--accent); border-color:var(--accent); }
  .theme-toggle svg{ width:13px; height:13px; }

  .mainbar{ display:flex; align-items:center; gap:26px; padding:15px 0; }
  .logo{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
  .logo-badge{ width:42px; height:42px; border-radius:8px; background:linear-gradient(160deg, var(--accent), #00265B); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:1rem; box-shadow:var(--shadow); position:relative; }
  .logo-badge:after{ content:""; position:absolute; inset:-3px; border:1px solid var(--border-strong); border-radius:11px; opacity:.5; }
  .logo-text{ line-height:1.05; }
  .logo-text .name{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:1.28rem; }
  .logo-text .tag{ font-size:.66rem; color:var(--muted); letter-spacing:.09em; text-transform:uppercase; }
  .search{ flex:1; max-width:420px; display:flex; align-items:center; gap:8px; background:var(--surface-2); border:1px solid var(--border); border-radius:8px; padding:9px 14px; color:var(--muted); font-size:.85rem; }
  .search svg{ flex-shrink:0; opacity:.6; }
  .mainbar-actions{ display:flex; align-items:center; gap:9px; margin-left:auto; }
  .btn{ display:inline-flex; align-items:center; gap:7px; padding:9px 16px; border-radius:7px; font-weight:700; font-size:.83rem; border:1px solid transparent; cursor:pointer; font-family:'Rajdhani',sans-serif; letter-spacing:.02em; }
  .btn-accent{ background:var(--accent); color:var(--accent-ink); }
  .btn-ghost{ background:transparent; border-color:var(--border-strong); color:var(--text); }
  .avatar{ width:36px; height:36px; border-radius:7px; background:var(--node-soft); color:var(--node); display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Rajdhani',sans-serif; border:1px solid var(--border); }

  nav.crumbs{ display:flex; gap:1px; padding:0 0 13px; font-family:'Rajdhani',sans-serif; font-weight:600; font-size:.91rem; }
  nav.crumbs a{ padding:7px 13px; border-radius:6px; color:var(--muted); }
  nav.crumbs a.active{ background:var(--accent-soft); color:var(--accent); }
  nav.crumbs a:hover{ color:var(--text); }
  nav.crumbs a.crumb-highlight{ margin-left:auto; display:inline-flex; align-items:center; gap:6px; background:var(--node-soft); color:var(--node); font-weight:700; }
  nav.crumbs a.crumb-highlight:hover{ background:var(--node); color:#fff; }

  .breadcrumb{ display:flex; align-items:center; gap:6px; margin:16px 0 14px; font-size:.78rem; color:var(--muted-2); }
  .breadcrumb a:hover{ color:var(--accent); }
  .breadcrumb .sep{ opacity:.6; }
  .breadcrumb .here{ color:var(--text); font-weight:700; }

  /* ---- category hero ---- */
  .cat-hero{
    position:relative; border:1px solid var(--border); border-radius:4px; overflow:hidden;
    background: var(--surface);
    display:flex; align-items:center; gap:22px; padding:26px 28px; flex-wrap:wrap;
    isolation:isolate;
  }
  .cat-hero::before{
    content:""; position:absolute; inset:-45%; z-index:-2; pointer-events:none;
    background:
      radial-gradient(40% 52% at 16% 34%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%),
      radial-gradient(34% 44% at 82% 62%, color-mix(in srgb, var(--node) 18%, transparent), transparent 72%);
    filter:blur(8px);
    animation:katHeroSuzul 30s ease-in-out infinite alternate;
  }
  .cat-hero::after{
    content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
    background-image:radial-gradient(var(--grid-line) 1px, transparent 1px);
    background-size:20px 20px; opacity:.7;
    animation:katHeroKaydir 46s linear infinite;
  }
  .cat-hero > *{ position:relative; z-index:1; }
  @keyframes katHeroSuzul{
    0%   { transform:translate3d(0,0,0) scale(1); }
    50%  { transform:translate3d(3%, -2.5%, 0) scale(1.07); }
    100% { transform:translate3d(-2.5%, 2%, 0) scale(1.04); }
  }
  @keyframes katHeroKaydir{
    from{ background-position:0 0; }
    to  { background-position:20px 20px; }
  }
  @media (prefers-reduced-motion: reduce){
    .cat-hero::before, .cat-hero::after{ animation:none; }
  }
  .cat-hero-icon{ width:62px; height:62px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--accent-soft); color:var(--accent); box-shadow:var(--shadow); }
  .cat-hero-copy{ flex:1; min-width:260px; }
  .cat-hero-copy .eyebrow{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.7rem; text-transform:uppercase; letter-spacing:.12em; color:var(--muted-2); margin-bottom:6px; }
  .cat-hero-copy h1{ font-size:1.8rem; margin-bottom:6px; }
  .cat-hero-copy p{ color:var(--muted); font-size:.9rem; max-width:60ch; line-height:1.55; }
  .cat-hero-stats{ display:flex; gap:22px; flex-shrink:0; }
  .chs{ text-align:center; }
  .chs b{ display:block; font-family:'JetBrains Mono',monospace; font-size:1.1rem; }
  .chs span{ font-size:.62rem; color:var(--muted-2); text-transform:uppercase; letter-spacing:.05em; }

  /* ---- shared node grid ---- */
  .section-head{ display:flex; align-items:baseline; justify-content:space-between; margin:34px 0 14px; }
  .section-head h2{ font-size:1.24rem; }
  .section-head a{ font-size:.81rem; color:var(--link); font-weight:700; }
  .node-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:4px; overflow:hidden; }
  .node-card{ background:var(--surface); padding:16px 16px 14px; transition:background .15s ease; }
  .node-card:hover{ background:var(--surface-2); }
  .node-icon{ width:36px; height:36px; border-radius:7px; margin-bottom:10px; display:flex; align-items:center; justify-content:center; background:var(--accent-soft); color:var(--accent); }
  .node-card h3{ font-size:.94rem; margin-bottom:4px; }
  .node-card p{ font-size:.75rem; color:var(--muted); line-height:1.4; margin-bottom:9px; min-height:2.5em; }
  .node-foot{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--border); padding-top:8px; font-size:.68rem; color:var(--muted-2); }
  .node-foot .cnt{ font-family:'JetBrains Mono',monospace; font-weight:600; color:var(--text); font-size:.72rem; }

  /* ---- layout ---- */
  .layout{ display:grid; grid-template-columns:1fr 322px; gap:22px; margin-top:8px; }
  .panel{ background:var(--surface); border:1px solid var(--border); border-radius:5px; overflow:hidden; }
  .panel-head{ display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--border); padding:12px 16px; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.95rem; }
  .panel-head .btn{ padding:7px 13px; font-size:.75rem; }

  .topic-filters{ display:flex; gap:8px; padding:11px 16px; border-bottom:1px solid var(--border); background:var(--surface-2); flex-wrap:wrap; }
  .filter-select{ font-family:'Manrope',sans-serif; font-size:.78rem; font-weight:600; color:var(--text); background:var(--surface); border:1px solid var(--border-strong); border-radius:6px; padding:7px 10px; cursor:pointer; }
  .filter-search{ flex:1; min-width:140px; display:flex; align-items:center; gap:6px; background:var(--surface); border:1px solid var(--border-strong); border-radius:6px; padding:7px 10px; color:var(--muted); }
  .filter-search input{ border:none; outline:none; background:transparent; font:inherit; font-size:.78rem; color:var(--text); width:100%; }
  .filter-search svg{ flex-shrink:0; opacity:.6; width:14px; height:14px; }
  .filter-count{ font-size:.72rem; color:var(--muted-2); align-self:center; margin-left:auto; white-space:nowrap; }
  .filter-clear{ display:none; font-size:.72rem; color:var(--link); font-weight:700; cursor:pointer; align-self:center; }
  .filter-clear.show{ display:inline; }

  .topic-list{ display:flex; flex-direction:column; }
  .topic-row{ display:flex; align-items:center; gap:13px; padding:13px 16px; border-bottom:1px solid var(--border); }
  .topic-row:last-child{ border-bottom:none; }
  .topic-row:hover{ background:var(--surface-2); box-shadow:inset 0 0 0 1px var(--border-strong); }
  .topic-row[hidden]{ display:none; }
  .cat-stripe{ width:3px; align-self:stretch; border-radius:2px; flex-shrink:0; background:var(--accent); }
  .topic-avatar{ width:34px; height:34px; border-radius:8px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.72rem; }
  .topic-main{ min-width:0; flex:1; }
  .topic-top{ display:flex; gap:7px; align-items:baseline; }
  .topic-link{ font-weight:600; font-size:.86rem; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .topic-top .pin{ color:var(--accent); font-size:.78rem; flex-shrink:0; }
  .topic-link:hover{ color:var(--accent); }
  .topic-meta{ display:flex; align-items:center; gap:6px; flex-wrap:wrap; font-size:.72rem; color:var(--muted-2); margin-top:4px; }
  .tag-sm{ display:inline-block; font-size:.64rem; font-weight:700; padding:2px 6px; border-radius:4px; margin-right:2px; font-family:'Rajdhani',sans-serif; letter-spacing:.02em; background:var(--accent-soft); color:var(--accent); }
  .tag-sm.blue{ background:var(--node-soft); color:var(--node); }
  .track-col{ font-family:'JetBrains Mono',monospace; font-size:.7rem; color:var(--muted); white-space:nowrap; }
  .topic-stats{ display:flex; gap:8px; flex-shrink:0; }
  .stat-chip{ text-align:center; min-width:44px; }
  .stat-chip b{ display:block; font-family:'JetBrains Mono',monospace; font-size:.82rem; font-weight:600; }
  .stat-chip span{ font-size:.6rem; color:var(--muted-2); text-transform:uppercase; letter-spacing:.04em; }
  .topic-last{ display:flex; align-items:center; gap:7px; flex-shrink:0; width:118px; }
  .mini-avatar{ width:24px; height:24px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.6rem; }
  .topic-last .who{ font-size:.76rem; font-weight:700; color:var(--text); }
  .topic-last .t{ font-size:.66rem; color:var(--muted-2); }
  .topic-empty{ display:none; flex-direction:column; align-items:center; gap:8px; padding:44px 20px; color:var(--muted); text-align:center; }
  .topic-empty.show{ display:flex; }
  .topic-empty svg{ opacity:.4; }
  .topic-empty b{ color:var(--text); font-size:.88rem; }
  .topic-empty a{ color:var(--link); font-weight:700; font-size:.8rem; }
  .topic-loadmore{ display:flex; align-items:center; justify-content:center; gap:8px; padding:13px; border-top:1px solid var(--border); background:var(--surface-2); color:var(--text); font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.82rem; cursor:pointer; }
  .topic-loadmore:hover{ color:var(--accent); }

  /* ---- ad slot ---- */
  .ad-slot{ background:var(--surface); border:1px solid var(--border); border-radius:5px; overflow:hidden; }
  .ad-ctrl{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding:8px 13px; border-bottom:1px solid var(--border); background:var(--surface-2); }
  .ad-ctrl-label{ font-size:.68rem; font-weight:700; color:var(--muted); font-family:'Rajdhani',sans-serif; text-transform:uppercase; letter-spacing:.05em; display:flex; gap:6px; align-items:center; }
  .ad-ctrl-label .mono{ color:var(--muted-2); font-weight:500; text-transform:none; letter-spacing:0; }
  .switch{ position:relative; width:32px; height:18px; border-radius:999px; background:var(--border-strong); border:none; cursor:pointer; flex-shrink:0; padding:0; }
  .switch .knob{ position:absolute; top:2px; left:2px; width:14px; height:14px; border-radius:50%; background:#fff; transition:transform .15s ease; box-shadow:0 1px 2px rgba(0,0,0,.35); }
  .switch[aria-checked="true"]{ background:var(--accent); }
  .switch[aria-checked="true"] .knob{ transform:translateX(14px); }
  .ad-placeholder{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; margin:10px; border:1.5px dashed var(--border-strong); border-radius:4px; color:var(--muted-2); font-size:.72rem; height:200px; }
  .ad-placeholder.leaderboard{ height:70px; }
  .ad-body[hidden]{ display:none; }

  /* ---- triple slider (kaydırmalı promo banner) ---- */
  .triple-slider{ margin-bottom:20px; }
  .triple-slider-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
  .triple-slider-head h2{ font-size:1.05rem; font-family:'Rajdhani',sans-serif; font-weight:700; }
  .triple-slider-head .sub{ font-size:.7rem; color:var(--muted-2); font-weight:600; text-transform:uppercase; letter-spacing:.05em; background:var(--surface-2); border:1px solid var(--border); border-radius:4px; padding:2px 7px; margin-left:8px; }
  .slider-nav{ display:flex; gap:7px; }
  .slider-arrow{ width:30px; height:30px; border-radius:50%; border:1px solid var(--border-strong); background:var(--surface); display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text); flex-shrink:0; }
  .slider-arrow:hover{ border-color:var(--accent); color:var(--accent); }
  .triple-slider-viewport{ overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; -ms-overflow-style:none; }
  .triple-slider-viewport::-webkit-scrollbar{ display:none; }
  .triple-track{ display:flex; gap:14px; }
  .triple-slide{ flex:0 0 calc((100% - 28px)/3); scroll-snap-align:start; }
  .slide-card{ border:1px solid var(--border); border-radius:8px; overflow:hidden; background:var(--surface); height:100%; transition:transform .15s ease, border-color .15s ease; }
  .slide-card:hover{ transform:translateY(-3px); border-color:var(--accent); }
  .slide-banner{ height:104px; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .slide-banner:before{ content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size:13px 13px; }
  .slide-banner svg{ position:relative; z-index:1; color:#fff; opacity:.95; }
  .slide-banner.sg1{ background:linear-gradient(135deg, var(--accent), #00265B); }
  .slide-banner.sg2{ background:linear-gradient(135deg, var(--node), #2f3aa8); }
  .slide-banner.sg3{ background:linear-gradient(135deg, var(--link), #0a4d7d); }
  .slide-sponsor{ position:absolute; top:9px; left:10px; z-index:1; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.6rem; text-transform:uppercase; letter-spacing:.07em; color:#fff; background:rgba(0,0,0,.28); border-radius:4px; padding:2px 7px; }
  .slide-body{ padding:12px 14px 14px; }
  .slide-body h4{ font-size:.87rem; font-weight:700; margin-bottom:4px; font-family:'Rajdhani','Manrope',sans-serif; }
  .slide-body p{ font-size:.73rem; color:var(--muted); line-height:1.42; margin-bottom:10px; min-height:2.6em; }
  .slide-body .btn{ padding:6px 12px; font-size:.72rem; }
  @media (max-width:1040px){ .triple-slide{ flex:0 0 calc((100% - 14px)/2); } }
  @media (max-width:640px){ .triple-slide{ flex:0 0 100%; } }

  /* ---- riders (şık) ---- */
  .rider-grid{ padding:13px 15px; display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
  .rider-card{ display:flex; flex-direction:column; align-items:center; gap:6px; padding:10px 6px 9px; border-radius:8px; border:1px solid var(--border); background:var(--surface-2); transition:transform .15s ease, border-color .15s ease; text-align:center; }
  .rider-card:hover{ transform:translateY(-2px); border-color:var(--accent); }
  .rider-avatar{ position:relative; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.8rem; }
  .rider-avatar .st{ position:absolute; right:-2px; bottom:-2px; width:10px; height:10px; border-radius:50%; background:var(--ok); border:2px solid var(--surface-2); }
  .rider-name{ font-size:.7rem; font-weight:700; color:var(--text); max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .rider-card.more{ background:transparent; border-style:dashed; color:var(--muted); justify-content:center; }
  .rider-card.more .rider-avatar{ background:var(--surface-3); color:var(--muted-2); }

  /* ---- footer (site-wide) ---- */
  .foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:24px; margin-bottom:20px; }
  .foot-col h4{ font-family:'Rajdhani',sans-serif; font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); margin-bottom:9px; }
  .foot-col a{ display:block; padding:3px 0; }
  .foot-col a:hover{ color:var(--accent); }
  .foot-bottom{ border-top:1px solid var(--border); padding-top:15px; }

  .side-block{ margin-bottom:20px; }
  .side-head{ padding:12px 15px; border-bottom:1px solid var(--border); font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.88rem; display:flex; justify-content:space-between; align-items:center; }
  .side-head span{ font-size:.7rem; color:var(--muted-2); font-weight:600; }
  .top-user{ display:flex; align-items:center; gap:10px; padding:11px 15px; border-bottom:1px solid var(--border); }
  .top-user:last-child{ border-bottom:none; }
  .top-user .rank{ font-family:'JetBrains Mono',monospace; font-size:.72rem; color:var(--muted-2); width:16px; }
  .top-user .av{ width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.68rem; flex-shrink:0; }
  .top-user .nm{ font-size:.8rem; font-weight:700; flex:1; }
  .top-user .pt{ font-family:'JetBrains Mono',monospace; font-size:.72rem; color:var(--muted-2); }

  .cta-block{ background:linear-gradient(155deg, var(--accent), #00265B); border-radius:5px; padding:19px; color:#fff; }
  .cta-block h3{ font-size:1.05rem; margin-bottom:6px; }
  .cta-block p{ font-size:.81rem; opacity:.92; margin-bottom:14px; line-height:1.45; }
  .cta-block .btn-ghost{ border-color:rgba(255,255,255,.5); color:#fff; }

  .related-cards{ display:flex; flex-direction:column; }
  .related-card{ display:flex; gap:10px; padding:11px 15px; border-bottom:1px solid var(--border); }
  .related-card:last-child{ border-bottom:none; }
  .related-card:hover{ background:var(--surface-2); }
  .related-thumb{ width:76px; aspect-ratio:16/9; border-radius:6px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; }
  .related-thumb svg{ width:15px; height:15px; }
  .related-info{ min-width:0; flex:1; }
  .related-info h3{ font-size:.79rem; font-weight:700; line-height:1.32; margin-bottom:4px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
  .related-meta{ font-size:.66rem; color:var(--muted-2); }

  footer{ margin-top:44px; border-top:1px solid var(--border); padding:28px 0 24px; color:var(--muted-2); font-size:.79rem; }
  .foot-bottom{ display:flex; justify-content:space-between; padding-top:15px; font-size:.73rem; }

  @media (max-width: 1040px){
    .layout{ grid-template-columns:1fr; }
    .node-grid{ grid-template-columns:repeat(2,1fr); }
    .topic-stats{ display:none; }
    .topic-last{ width:auto; }
    .foot-grid{ grid-template-columns:1fr 1fr; }
    .rider-grid{ grid-template-columns:repeat(4,1fr); }
  }
  @media (max-width: 640px){
    .rider-grid{ grid-template-columns:repeat(3,1fr); }
  }

  /* ---- mobil menü & taşma güvenliği ---- */
  html, body{ max-width:100%; overflow-x:hidden; }
  .hamburger{ display:none; align-items:center; justify-content:center; width:36px; height:36px; border-radius:7px; border:1px solid var(--border-strong); background:var(--surface-2); color:var(--text); cursor:pointer; flex-shrink:0; }
  .hamburger:hover{ border-color:var(--accent); color:var(--accent); }
  .hamburger svg{ width:18px; height:18px; }
  .mobile-drawer-overlay{ position:fixed; inset:0; background:rgba(10,12,16,.5); z-index:60; opacity:0; pointer-events:none; transition:opacity .18s ease; }
  .mobile-drawer-overlay.open{ opacity:1; pointer-events:auto; }
  .mobile-drawer{ position:fixed; top:0; right:0; bottom:0; width:82%; max-width:320px; background:var(--surface); z-index:61; box-shadow:-8px 0 24px rgba(0,0,0,.2); transform:translateX(100%); transition:transform .2s ease; display:flex; flex-direction:column; overflow-y:auto; }
  .mobile-drawer.open{ transform:translateX(0); }
  .mobile-drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid var(--border); }
  .mobile-drawer-head .logo-text .name{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:1.05rem; }
  .mobile-drawer-close{ display:flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:7px; border:1px solid var(--border-strong); background:var(--surface-2); color:var(--text); cursor:pointer; }
  .mobile-drawer-close:hover{ color:var(--accent); border-color:var(--accent); }
  .mobile-drawer-search{ margin:14px 16px 4px; display:flex; align-items:center; gap:8px; background:var(--surface-2); border:1px solid var(--border); border-radius:8px; padding:9px 12px; color:var(--muted); font-size:.85rem; }
  .mobile-drawer-search svg{ flex-shrink:0; opacity:.6; }
  .mobile-drawer-nav{ display:flex; flex-direction:column; padding:10px 8px; font-family:'Rajdhani',sans-serif; font-weight:600; font-size:.98rem; }
  .mobile-drawer-nav a{ padding:11px 12px; border-radius:7px; color:var(--text); }
  .mobile-drawer-nav a.active{ background:var(--accent-soft); color:var(--accent); }
  .mobile-drawer-actions{ display:flex; flex-direction:column; gap:9px; padding:14px 16px; border-top:1px solid var(--border); margin-top:auto; }
  .mobile-drawer-actions .btn{ width:100%; justify-content:center; }
  .mobile-drawer-auth{ display:flex; gap:14px; padding:0 16px 16px; font-size:.82rem; }
  .mobile-drawer-auth a{ font-weight:700; }
  .mobile-drawer-auth a.accent{ color:var(--accent); }
  body.drawer-open{ overflow:hidden; }

  @media (max-width:900px){
    .hamburger{ display:inline-flex; }
    nav.crumbs{ display:none; }
  }
  @media (max-width:680px){
    .topbar .ticker{ display:none; }
    .topbar .right-links a:not(.auth-link){ display:none; }
    .topbar .right-links{ gap:10px; }
    .mainbar{ flex-wrap:wrap; gap:10px 12px; }
    .search{ order:3; flex:1 1 100%; max-width:100%; }
    .mainbar-actions{ margin-left:0; }
  }

/* Sayfa içi sekmeler (İlanlarım gibi) */
.tabs{ display:flex; gap:6px; flex-wrap:wrap; }
.tabs a{
  display:inline-flex; align-items:center; padding:8px 16px; border-radius:9px;
  font-size:.88rem; font-weight:600; text-decoration:none;
  color:var(--muted); background:var(--surface-2); border:1px solid var(--border);
  transition:background .15s, color .15s;
}
.tabs a:hover{ color:var(--text); background:var(--surface-3); }
.tabs a.on{ background:var(--accent); color:var(--accent-ink); border-color:var(--accent); }
