<header class="border-b border-slate-800/60 bg-slate-900/40">
  <div class="mx-auto flex max-w-6xl items-center justify-between px-6 py-4">
    <div class="flex items-center gap-8">
      <a href="/admin/dashboard" class="flex items-center gap-2 font-bold">
        <span class="flex h-8 w-8 items-center justify-center rounded-lg bg-indigo-500 text-white">L</span>
        LexaClip Admin
      </a>
      <nav class="flex items-center gap-5 text-sm">
        <a href="/admin/dashboard" class="<%= active === 'dashboard' ? 'text-white font-semibold' : 'text-slate-400 hover:text-white' %>">Dashboard</a>
        <a href="/admin/users" class="<%= active === 'users' ? 'text-white font-semibold' : 'text-slate-400 hover:text-white' %>">Kullanıcılar</a>
        <a href="/admin/plans" class="<%= active === 'plans' ? 'text-white font-semibold' : 'text-slate-400 hover:text-white' %>">Planlar</a>
        <a href="/admin/models" class="<%= active === 'models' ? 'text-white font-semibold' : 'text-slate-400 hover:text-white' %>">Modeller</a>
      </nav>
    </div>
    <div class="flex items-center gap-4 text-sm">
      <span class="text-slate-400"><%= adminUsername %></span>
      <form method="POST" action="/admin/logout">
        <button type="submit" class="rounded-lg border border-slate-700 px-3 py-1.5 text-slate-300 transition hover:border-slate-500 hover:text-white">
          Çıkış
        </button>
      </form>
    </div>
  </div>
</header>
