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

:root {
  --bg:         #070B18;
  --bg2:        #10172C;
  --surface:    #19233F;
  --surface2:   #222B45;
  --border:     rgba(48,58,85,0.6);
  --border2:    rgba(48,58,85,0.85);
  --accent:     #FFC83D;
  --accent2:    #4DA3FF;
  --accent3:    #8CC5FF;
  --text:       #FFFFFF;
  --text2:      #B8BFD2;
  --text3:      #78829A;
  --green:      #34C759;
  /* Müzisyen odaklı özel renkler */
  --key-color:      #FFC83D; /* Ton bilgisi */
  --tempo-color:    #4DA3FF; /* Tempo/BPM */
  --chord-color:    #4DA3FF; /* Akor bilgisi */
  --favorite-color: #FF5A5F; /* Favori eser */
  --ready-color:    #34C759; /* Hazır eser */
  --warning-color:  #FF9500; /* Uyarı */
  --sidebar-w:  252px;
  --topnav-h:   56px;
  --tabnav-h:   52px;
  --bottom-h:   72px;
}

/* ── Açık tema fallback (saf CSS) ──
   topnav.js normalde bu değişkenleri JS ile de set eder (el.style.setProperty),
   ama JS herhangi bir sebeple gecikirse/başarısız olursa diye burada da tanımlı —
   böylece açık tema hiçbir zaman "yarım" kalmaz. */
[data-theme="light"] {
  --bg:       #F5F6FA;
  --bg2:      #EEF0F5;
  --surface:  #FFFFFF;
  --surface2: #F0F1F5;
  --text:     #111827;
  --text2:    #667085;
  --text3:    #98A2B3;
  --border:   #E5E7EB;
  --border2:  #D0D3DA;
  --accent:   #E5A900;
  --accent2:  #0B6FDE;
  --accent3:  #8CC5FF;
}

html {
  background: var(--bg);
  /* iOS Safari, blokları viewport'tan geniş bulduğunda yazıları kendiliğinden
     büyütür (text autosizing) — sayfa "zoom yapılmış" gibi görünür, görseller
     normal kalır. Bu kural o davranışı kapatır; tasarım her cihazda aynı ölçekte. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Yatay taşma sayfayı kaydırılabilir/kesik gösteriyordu (üst çubukta avatarın
     kesilmesi gibi) — ayrıca autosizing'i de tetikliyor. */
  overflow-x: hidden;
}

body {
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Background glow ── */
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-glow::before {
  content: ''; position: absolute; top: -15%; left: 25%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,200,61,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.bg-glow::after {
  content: ''; position: absolute; bottom: 10%; right: 5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(77,163,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

/* ════════════════════════════
   DESKTOP ≥ 1024px  →  Sol Sidebar
════════════════════════════ */
@media (min-width: 1024px) {
  body { display: flex; }

  .sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: rgba(9,9,28,0.96);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
    z-index: 300; padding-bottom: 20px;
  }
  .sb-brand {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 18px 16px 14px;
    border-bottom: 1px solid var(--border); margin-bottom: 10px;
  }
  .sb-logo {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800; color: #fff;
    box-shadow: 0 0 16px rgba(255,200,61,0.35);
  }
  .sb-appname { font-size: 15px; font-weight: 700; color: var(--text); }
  .sb-domain  { font-size: 10px; color: var(--text3); margin-top: 1px; }
  .sb-nav { flex: 1; padding: 0 10px; display: flex; flex-direction: column; gap: 2px; }
  .sb-label {
    font-size: 10px; font-weight: 700; color: var(--text3);
    letter-spacing: .08em; text-transform: uppercase;
    padding: 8px 12px 4px;
  }
  .sb-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 10px;
    font-size: 13px; font-weight: 600; color: var(--text2);
    text-decoration: none; transition: all .15s; position: relative;
  }
  .sb-item:hover { background: var(--surface); color: var(--text); }
  .sb-item.active {
    background: rgba(255,200,61,0.12); color: var(--accent3);
    border: 1px solid rgba(255,200,61,0.2);
  }
  .sb-item.active::before {
    content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 3px; border-radius: 0 3px 3px 0;
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
  }
  .sb-icon { font-size: 16px; width: 20px; text-align: center; }
  .sb-count {
    margin-left: auto; font-size: 10px; font-weight: 700;
    background: rgba(255,200,61,0.15); border: 1px solid rgba(255,200,61,0.25);
    color: var(--accent2); border-radius: 10px; padding: 1px 7px;
  }
  .sb-divider { height: 1px; background: var(--border); margin: 8px 10px; }
  .sb-stage {
    margin: 6px 10px 0;
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; border-radius: 12px;
    font-size: 13px; font-weight: 700; color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 4px 16px rgba(255,200,61,0.3);
    transition: opacity .15s;
  }
  .sb-stage:hover { opacity: .9; }
  .sb-user:not(.sb-user-x) { display: none !important; }
  .sb-user-x {
    margin: 10px 10px 0;
    padding: 12px; background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; display: flex; align-items: center; gap: 10px;
  }
  .sb-avatar {
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff;
  }
  .sb-uname { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sb-urole { font-size: 10px; color: var(--text3); }
  .sb-logout {
    background: none; border: none; color: var(--text3);
    cursor: pointer; font-size: 14px; padding: 4px; transition: color .15s;
  }
  .sb-logout:hover { color: var(--accent); }

  .main-wrap { margin-left: var(--sidebar-w); flex: 1; min-width: 0; display: flex; flex-direction: column; }

  /* desktop topbar — bkz. topnav.js, sayfalar artık kullanmıyor */

  /* hide mobile/tablet elements */
  .topnav, .tabnav, .bottom-nav { display: none !important; }

  .page { padding: 28px 32px; }
  .quick-bar { padding: 0 0 4px; }
  .section { padding: 12px 0 0; }
  .stage-banner { margin: 24px 0 0; }
}

/* ════════════════════════════
   TABLET  768px – 1023px  →  Üst Tab Bar + Alt Bar
════════════════════════════ */
@media (max-width: 767px) {
  body { padding-bottom: var(--bottom-h); }
  .sidebar { display: none !important; }
  .desktop-topbar { display: none; }
  .main-wrap { display: contents; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  body { padding-bottom: var(--bottom-h); }
  .sidebar { display: none; }
  .desktop-topbar { display: none; }
  .main-wrap { display: contents; }

  /* Üst bar — bkz. topnav.js (.r-topnav, tek kaynak) */
  .tabnav { display: none; }

  /* Alt Bar */
  .bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    height: var(--bottom-h);
    background: rgba(7,7,26,0.95);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border);
    display: flex; align-items: center;
  }
  .bn-items { display: flex; width: 100%; padding: 0 8px; }
  .bn-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px; padding: 7px 4px;
    text-decoration: none; color: var(--text3);
    border-radius: 10px; transition: all .15s; position: relative;
  }
  .bn-item.active { color: var(--accent); }
  .bn-icon { font-size: 20px; line-height: 1; }
  .bn-label { font-size: 10px; font-weight: 600; }
  .bn-dot { position: absolute; bottom: 2px; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
  .bn-stage {
    background: linear-gradient(135deg, rgba(255,200,61,0.18), rgba(77,163,255,0.08));
    border: 1px solid rgba(255,200,61,0.25);
    color: var(--accent2) !important;
    margin: 4px 2px; border-radius: 12px;
  }

  .page { padding: 0; }
  .quick-bar { padding: 16px 16px 0; }
  .section { padding: 10px 16px 0; }
  .stage-banner { margin: 10px 16px 0; }
  .page-bottom { height: 16px; }
}

/* ════════════════════════════
   MOBİL  < 768px  →  Üst Bar + Alt Bar
════════════════════════════ */
@media (max-width: 767px) {
  body { padding-bottom: var(--bottom-h); }
  .sidebar { display: none; }
  .desktop-topbar { display: none; }
  .tabnav { display: none; }
  .main-wrap { display: contents; }

  /* Üst bar — bkz. topnav.js (.r-topnav, tek kaynak) */

  /* Alt bar */
  .bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    height: var(--bottom-h);
    background: rgba(7,7,26,0.95);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border);
    display: flex; align-items: center;
  }
  .bn-items { display: flex; width: 100%; padding: 0 4px; }
  .bn-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px; padding: 8px 2px;
    text-decoration: none; color: var(--text3);
    border-radius: 10px; transition: all .15s; position: relative;
  }
  .bn-item.active { color: var(--accent); }
  .bn-icon { font-size: 22px; line-height: 1; }
  .bn-label { font-size: 10px; font-weight: 600; }
  .bn-dot { position: absolute; bottom: 2px; width: 3px; height: 3px; border-radius: 50%; background: var(--accent); }
  .bn-stage {
    background: linear-gradient(135deg, rgba(255,200,61,0.18), rgba(77,163,255,0.08));
    border: 1px solid rgba(255,200,61,0.25);
    color: var(--accent2) !important;
    margin: 5px 2px; border-radius: 11px;
  }

  .page { padding: 0; }
  .quick-bar { padding: 12px 14px 0; }
  .section { padding: 16px 14px 0; }
  .stage-banner { margin: 16px 14px 0; }
  .page-bottom { height: 20px; }
}

/* ════════════════════
   ORTAK BILEŞENLER
════════════════════ */
.quick-bar { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.quick-bar::-webkit-scrollbar { display: none; }
.qb-item {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  min-width: 62px; padding: 0 4px; cursor: pointer; text-decoration: none;
}
.qb-icon {
  width: 54px; height: 54px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: all .15s;
}
.qb-item:hover .qb-icon { border-color: var(--accent); background: var(--surface2); box-shadow: 0 0 12px rgba(255,200,61,0.2); }
.qb-label { font-size: 10px; color: var(--text2); text-align: center; white-space: nowrap; }
.qb-stage .qb-icon {
  background: linear-gradient(135deg, rgba(255,200,61,0.22), rgba(77,163,255,0.12));
  border-color: var(--accent); box-shadow: 0 0 14px rgba(255,200,61,0.18);
}
.qb-stage .qb-label { color: var(--accent3); font-weight: 600; }

.section { position: relative; z-index: 1; }
.sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sec-title { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .08em; }
.sec-action { font-size: 12px; color: var(--accent); text-decoration: none; font-weight: 500; }

.active-card {
  background: var(--surface);
  border: none; border-radius: 16px;
  padding: 8px 16px; display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text); transition: all .2s;
  position: relative; overflow: hidden;
}
.active-card::before { display: none; }
.active-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.active-thumb {
  width: 50px; height: 50px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--surface2), var(--bg2));
  border: none;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.active-info { flex: 1; min-width: 0; }
.active-name { font-size: 15px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.active-meta { font-size: 11px; color: var(--text2); margin-top: 3px; display: flex; gap: 8px; }
.meta-badge {
  background: rgba(255,200,61,0.12); border: 1px solid rgba(255,200,61,0.2);
  border-radius: 5px; padding: 1px 7px; font-size: 10px; color: var(--accent3); font-weight: 600;
}
.active-sub { font-size: 11px; color: var(--text3); margin-top: 5px; }
.active-arrow { font-size: 18px; color: var(--text3); transition: color .15s; }
.active-card:hover .active-arrow { color: var(--accent); }

.work-list { display: flex; flex-direction: column; margin: 0 -14px; }
.work-row { padding-left: 24px !important; padding-right: 14px !important; }
.work-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text); transition: background .15s; cursor: pointer;
}
.work-row.zebra { background: var(--surface); }
  [data-theme="light"] .work-row { background: #ffffff; }
  [data-theme="light"] .work-row.zebra { background: #f0eeff; }
.work-row:hover { background: rgba(255,200,61,0.1); }
.work-num { width: 18px; font-size: 11px; color: var(--text3); font-weight: 600; flex-shrink: 0; text-align: left; }
.work-thumb { display: none; }
.work-info { flex: 1; min-width: 0; }
.work-name { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.work-sub { font-size: 11px; color: var(--text2); margin-top: 1px; }
.work-badges { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
.wb { font-size: 10px; color: var(--text3); background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; }
.wb-key { color: var(--key-color); border-color: rgba(255,200,61,0.25); background: rgba(255,200,61,0.1); }
.wc-play {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,200,61,0.12); border: 1px solid rgba(255,200,61,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--accent); cursor: pointer; transition: all .15s;
}
.wc-play:hover { background: rgba(255,200,61,0.22); transform: scale(1.06); }

.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
@media (max-width: 480px) { .stats-row { grid-template-columns: repeat(2,1fr); } }
.stat-pill {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 10px; text-align: center;
}
.sp-n { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.sp-l { font-size: 10px; color: var(--text3); margin-top: 3px; }
.sp-t { font-size: 10px; color: var(--green); margin-top: 5px; font-weight: 500; }

.stage-banner {
  background: linear-gradient(135deg, rgba(255,200,61,0.13) 0%, rgba(77,163,255,0.06) 100%);
  border: 1px solid var(--accent); border-radius: 16px;
  padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  position: relative; overflow: hidden;
}
.stage-banner::before {
  content: '🎭'; position: absolute; right: -8px; top: -8px;
  font-size: 70px; opacity: 0.055; pointer-events: none;
}
.sb-left { flex: 1; }
.sb-title { font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.sb-title span { color: var(--accent3); }
.sb-sub { font-size: 12px; color: var(--text2); margin-top: 5px; line-height: 1.55; }
.sb-right { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.stage-go-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border: none; border-radius: 10px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit;
  text-decoration: none; display: block;
  box-shadow: 0 4px 14px rgba(255,200,61,0.3);
  transition: opacity .15s; white-space: nowrap;
}
.stage-go-btn:hover { opacity: .88; }
.theme-chips { display: flex; gap: 5px; }
.tc {
  padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text3); cursor: pointer; transition: all .15s;
}
.tc.active { border-color: var(--accent2); color: var(--accent3); background: rgba(77,163,255,0.1); }

.coming-soon-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface); border: 1px dashed var(--border2);
  border-radius: 14px; padding: 18px 20px;
  position: relative; overflow: hidden;
}
.coming-soon-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,200,61,0.05), rgba(77,163,255,0.02));
  pointer-events: none;
}
.cs-soon-header {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 800; color: #f59e0b;
  letter-spacing: .04em; margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(245,158,11,0.5);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 20px; padding: 4px 12px;
  background: rgba(245,158,11,0.06);
}
.cs-soon-header em { font-style: italic; color: var(--accent2); font-size: 13px; font-weight: 700; }
.cs-soon {
  position: absolute; top: 14px; right: 16px;
  font-size: 12px; font-style: italic; color: var(--accent2);
  font-weight: 600; letter-spacing: .03em;
}
.cs-icon { font-size: 26px; color: var(--accent2); line-height: 1; }
.cs-icon i { font-size: 26px; }
.cs-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.cs-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }


/* ── Hero ── */
.hero-section {
  padding: 8px 32px 20px;
  position: relative; z-index: 1;
}
@media (max-width: 1023px) {
  .hero-section { padding: 20px 16px 10px; }
}
.hero-greeting { font-size: 14px; font-weight: 600; color: var(--accent2); margin-bottom: 6px; letter-spacing: .02em; }
.hero-title em.hero-title-sub {
  font-size: 0.72em; font-weight: 600; font-style: italic;
  color: var(--text2); display: block; margin-top: 2px;
}
.hero-title {
  font-size: 22px; font-weight: 800;
  color: var(--text); line-height: 1.25; letter-spacing: -.02em;
  margin-bottom: 16px;
}
@media (max-width: 1023px) { .hero-title { font-size: clamp(19px, 5vw, 22px); } }
@media (max-width: 480px) { .hero-title { font-size: 20px; } }
.hero-sub { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-radius: 10px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 18px rgba(255,200,61,0.35); transition: opacity .15s;
}
.hero-btn-primary:hover { opacity: .88; }
.hero-btn-secondary {
  display: inline-flex; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); border-radius: 10px; padding: 10px 16px;
  font-size: 13px; font-weight: 600; text-decoration: none; transition: all .15s;
}
.hero-btn-secondary:hover { border-color: var(--accent2); color: var(--text); }

/* ── Özellik kartları ── */
.feat-section-title { font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: .04em; margin-bottom: 14px; padding-bottom: 4px; }
.feat-scroll-wrap { position: relative; padding-top: 4px; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (max-width: 1023px) {
  .feat-scroll-wrap { overflow: hidden; }
  .feat-grid {
    display: flex; gap: 0;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .feat-grid::-webkit-scrollbar { display: none; }
  .feat-card { min-width: 100%; max-width: 100%; scroll-snap-align: start; flex-shrink: 0; box-sizing: border-box; overflow: hidden; }
}
@media (min-width: 1280px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border2); transition: background .2s; cursor: pointer; }
.feat-dot.active { background: var(--accent); width: 18px; border-radius: 3px; }
@media (min-width: 1024px) { .feat-dots { display: none; } }
.feat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 12px;
  transition: all .18s; cursor: pointer;
}
.feat-card:hover { border-color: var(--accent2); background: var(--surface2); box-shadow: 0 6px 20px rgba(255,200,61,0.15); }
.feat-card-accent {
  background: linear-gradient(135deg, rgba(255,200,61,0.13), rgba(77,163,255,0.06));
  border-color: var(--accent);
}
.feat-icon { font-size: 20px; margin-bottom: 6px; color: var(--accent2); }
.feat-icon i { font-size: 20px; }
.cs-icon { font-size: 24px; flex-shrink: 0; color: var(--accent2); }
.cs-icon i { font-size: 24px; }
.feat-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feat-desc { font-size: 13px; color: var(--text2); line-height: 1.55; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.feat-detay { display:inline-block; margin-top:8px; font-size:12px; font-weight:600; color:var(--accent); }

/* ── v2-desktop-topbar (eski sayfa yapısı) ── */
@media(min-width:1024px) {
  .v2-main-wrap { margin-left: 252px; flex: 1; min-width: 0; display: flex; flex-direction: column; }
  .v2-desktop-topbar { display:flex; align-items:center; justify-content:space-between; padding:14px 32px; border-bottom:1px solid var(--border); background:var(--bg); backdrop-filter:blur(12px); position:sticky; top:0; z-index:100; }
  .v2-crumb { font-size:13px; color:var(--text2); }
  .v2-crumb span { color:var(--text); font-weight:600; }
  .v2-main-wrap .r-topnav { display:none !important; }
}
@media(max-width:1023px) {
  .v2-desktop-topbar { display:none; }
  .v2-main-wrap { display:contents; }
}
