/* ==========================================================================
   ailob — tasarım sistemi
   Koyu zemin + hareketli gradyan aurora + cam (glassmorphism) yüzeyler
   ========================================================================== */

:root {
  --bg:            #07070f;
  --bg-2:          #0b0b18;
  --ink:           #f2f3f8;
  --ink-soft:      #a8adc4;
  --ink-dim:       #6e7490;

  --violet:        #7c5cff;
  --fuchsia:       #d946ef;
  --cyan:          #22d3ee;
  --mint:          #34d399;
  --amber:         #fbbf24;
  --rose:          #fb7185;

  --grad:          linear-gradient(120deg, #7c5cff 0%, #a855f7 35%, #d946ef 65%, #22d3ee 100%);
  --grad-soft:     linear-gradient(120deg, rgba(124,92,255,.20), rgba(217,70,239,.14), rgba(34,211,238,.16));

  --glass:         rgba(255,255,255,.045);
  --glass-2:       rgba(255,255,255,.075);
  --stroke:        rgba(255,255,255,.09);
  --stroke-2:      rgba(255,255,255,.16);

  --r-sm:  10px;
  --r:     16px;
  --r-lg:  22px;
  --r-xl:  30px;

  --shadow:    0 18px 50px -18px rgba(0,0,0,.75);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.85);
  --glow:      0 0 0 1px rgba(124,92,255,.35), 0 12px 44px -10px rgba(124,92,255,.5);

  --ease: cubic-bezier(.22,.61,.36,1);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --disp: 'Sora', 'Inter', sans-serif;
  --mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;

  --nav-h: 68px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--disp); line-height: 1.18; margin: 0; letter-spacing: -.022em; }
h1 { font-size: clamp(28px, 4.2vw, 46px); font-weight: 800; }
h2 { font-size: clamp(21px, 2.6vw, 30px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }

p  { margin: 0 0 1em; }
a  { color: inherit; text-decoration: none; }

::selection { background: rgba(124,92,255,.4); color: #fff; }

/* --------------------------------------------------------------------------
   Aurora arka plan
   -------------------------------------------------------------------------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 12% -8%,  rgba(124,92,255,.28), transparent 62%),
    radial-gradient(1000px 620px at 92% 4%,   rgba(217,70,239,.20), transparent 60%),
    radial-gradient(1100px 800px at 50% 110%, rgba(34,211,238,.16), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  will-change: transform;
}
.b1 { width: 46vw; height: 46vw; left: -12vw; top: -14vw;  background: radial-gradient(circle, #7c5cff, transparent 68%); animation: drift1 26s var(--ease) infinite alternate; }
.b2 { width: 40vw; height: 40vw; right: -10vw; top: 6vh;   background: radial-gradient(circle, #d946ef, transparent 68%); animation: drift2 32s var(--ease) infinite alternate; }
.b3 { width: 52vw; height: 52vw; left: 24vw; bottom: -26vw; background: radial-gradient(circle, #22d3ee, transparent 68%); animation: drift3 38s var(--ease) infinite alternate; }

@keyframes drift1 { to { transform: translate3d(9vw, 7vh, 0) scale(1.16); } }
@keyframes drift2 { to { transform: translate3d(-8vw, 11vh, 0) scale(1.1); } }
@keyframes drift3 { to { transform: translate3d(6vw, -9vh, 0) scale(.9); } }

.grain {
  position: absolute;
  inset: -50%;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   Yerleşim
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 34px) 20px 70px;
}
.wrap.wide { max-width: 1320px; }
body.is-bare .wrap { padding-top: 40px; min-height: 100vh; display: grid; place-items: center; }


/* --------------------------------------------------------------------------
   Üst çubuk
   -------------------------------------------------------------------------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--nav-h);
  background: rgba(8,8,18,.55);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--stroke);
}
.topbar-inner {
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--grad);
  box-shadow: 0 6px 20px -6px rgba(124,92,255,.9);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.brand-mark svg { width: 76%; height: 76%; display: block; }
.brand-text { font-family: var(--disp); font-weight: 800; font-size: 19px; letter-spacing: -.03em; }

/* --------------------------------------------------------------------------
   Araca özel alt menü
   -------------------------------------------------------------------------- */
.subnav {
  display: flex;
  gap: 4px;
  margin-bottom: 26px;
  padding: 5px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-x: auto;
  width: fit-content;
  max-width: 100%;
}
.subnav a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: color .18s, background .18s;
}
.subnav a:hover { color: var(--ink); background: var(--glass-2); }
.subnav a.on {
  color: #fff;
  background: rgba(124,92,255,.24);
  box-shadow: inset 0 0 0 1px rgba(124,92,255,.45);
}

.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav a {
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: var(--glass); }
.nav a.on {
  color: var(--ink);
  background: var(--glass-2);
  box-shadow: inset 0 0 0 1px var(--stroke);
}

.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.usermenu { position: relative; }
.usermenu summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 9px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  transition: border-color .2s, background .2s;
}
.usermenu summary::-webkit-details-marker { display: none; }
.usermenu summary:hover { border-color: var(--stroke-2); background: var(--glass-2); }
.avatar {
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  font-size: 12.5px; font-weight: 700; color: #fff;
}
.uname { font-size: 13.5px; font-weight: 500; max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chev { width: 14px; height: 14px; fill: none; stroke: var(--ink-dim); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.usermenu[open] .chev { transform: rotate(180deg); }

.usermenu-pop {
  position: absolute;
  right: 0; top: calc(100% + 10px);
  min-width: 230px;
  padding: 8px;
  border-radius: var(--r);
  animation: pop .18s var(--ease);
  z-index: 70;
}
.usermenu-pop .um-head { padding: 10px 12px 12px; border-bottom: 1px solid var(--stroke); margin-bottom: 6px; }
.usermenu-pop .um-head strong { display: block; font-size: 14px; }
.usermenu-pop .um-head span { font-size: 12px; color: var(--ink-dim); }
.usermenu-pop a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: background .16s, color .16s;
}
.usermenu-pop a:hover { background: var(--glass-2); color: var(--ink); }
.usermenu-pop a.danger:hover { background: rgba(251,113,133,.14); color: var(--rose); }

@keyframes pop { from { opacity: 0; transform: translateY(-6px) scale(.98); } }

.burger { display: none; width: 40px; height: 38px; border-radius: 11px; border: 1px solid var(--stroke); background: var(--glass); cursor: pointer; padding: 0; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.burger span { display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--ink-soft); transition: .22s var(--ease); }
.burger.on span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Cam yüzeyler
   -------------------------------------------------------------------------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  box-shadow: var(--shadow);
}

.card {
  border-radius: var(--r-lg);
  padding: 26px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
}
.card + .card { margin-top: 18px; }
.card-pad-lg { padding: 34px; }

/* --------------------------------------------------------------------------
   Sayfa başlıkları
   -------------------------------------------------------------------------- */
.page-head { margin-bottom: 30px; }
.page-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.page-head .eyebrow::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--grad);
}
.page-head p { color: var(--ink-soft); max-width: 62ch; margin-top: 12px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px;
  border-radius: 13px;
  border: 1px solid var(--stroke);
  background: var(--glass-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: transform .16s var(--ease), background .2s, border-color .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: rgba(255,255,255,.12); border-color: var(--stroke-2); transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn:disabled, .btn.is-busy { opacity: .55; cursor: not-allowed; transform: none !important; }

.btn-primary {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 34px -12px rgba(124,92,255,.9);
  background-size: 180% 180%;
  animation: gradShift 7s ease infinite;
}
.btn-primary:hover { background: var(--grad); background-size: 180% 180%; box-shadow: 0 18px 44px -12px rgba(124,92,255,1); }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.btn-ghost   { background: transparent; }
.btn-ghost:hover { background: var(--glass); }
.btn-success { background: rgba(52,211,153,.14); border-color: rgba(52,211,153,.35); color: #6ee7b7; }
.btn-success:hover { background: rgba(52,211,153,.22); }
.btn-danger  { background: rgba(251,113,133,.12); border-color: rgba(251,113,133,.32); color: var(--rose); }
.btn-danger:hover { background: rgba(251,113,133,.2); }
.btn-lg  { padding: 15px 30px; font-size: 15px; border-radius: 15px; }
.btn-sm  { padding: 8px 14px; font-size: 12.5px; border-radius: 10px; }
.btn-block { width: 100%; }
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-row { display: flex; gap: 11px; flex-wrap: wrap; }
.btn-row.end { justify-content: flex-end; }
.btn-row.between { justify-content: space-between; }

/* --------------------------------------------------------------------------
   Form elemanları
   -------------------------------------------------------------------------- */
.field { margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }

.label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  margin-bottom: 9px;
}
.label .req  { color: var(--fuchsia); font-size: 15px; line-height: 1; }
.label .opt  { font-size: 11px; font-weight: 500; color: var(--ink-dim); padding: 2px 8px; border-radius: 999px; background: var(--glass); border: 1px solid var(--stroke); }
.hint { font-size: 12.5px; color: var(--ink-dim); margin-top: 7px; line-height: 1.5; }

.input, .select, .textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.035);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-dim); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: rgba(124,92,255,.7);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(124,92,255,.14);
}
.textarea { resize: vertical; min-height: 110px; }
.textarea.tall { min-height: 170px; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e7490' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
  cursor: pointer;
}
.select option { background: #12121f; color: var(--ink); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Etiket seçici (çoklu seçim çipleri) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  transition: all .18s var(--ease);
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: var(--stroke-2); color: var(--ink); }
.chip:has(input:checked) {
  background: rgba(124,92,255,.18);
  border-color: rgba(124,92,255,.6);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(124,92,255,.3), 0 6px 18px -8px rgba(124,92,255,.8);
}
.chip:has(input:checked)::before { content: '✓'; font-size: 11px; font-weight: 800; }

/* Anahtar (toggle) */
.switch { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch-ui {
  width: 44px; height: 25px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--stroke);
  position: relative;
  flex-shrink: 0;
  transition: background .22s var(--ease), border-color .22s;
}
.switch-ui::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fff;
  transition: transform .22s var(--ease);
}
.switch input:checked + .switch-ui { background: var(--grad); border-color: transparent; }
.switch input:checked + .switch-ui::after { transform: translateX(19px); }
.switch-text { font-size: 13.5px; }
.switch-text small { display: block; color: var(--ink-dim); font-size: 12px; }

/* Sanatçı girişi */
.artist-input-row { display: flex; gap: 10px; }
.artist-input-row .input { flex: 1; }
.artist-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.artist-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 8px 7px 14px;
  border-radius: 999px;
  background: rgba(217,70,239,.14);
  border: 1px solid rgba(217,70,239,.4);
  font-size: 13px; font-weight: 500;
  animation: pop .22s var(--ease);
}
.artist-tag button {
  width: 19px; height: 19px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: var(--ink);
  font-size: 13px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .16s;
}
.artist-tag button:hover { background: rgba(251,113,133,.6); }

/* --------------------------------------------------------------------------
   Araç kartları (ana sayfa)
   -------------------------------------------------------------------------- */
.tool-scroll {
  max-height: min(64vh, 720px);
  overflow-y: auto;
  padding: 4px 12px 4px 4px;
  margin: 0 -4px;
  scrollbar-gutter: stable;
}
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

.tool-card {
  display: block;
  position: relative;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.tool-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .28s var(--ease);
  pointer-events: none;
}
.tool-card:not(.soon):hover {
  transform: translateY(-5px);
  border-color: rgba(124,92,255,.5);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124,92,255,.25);
}
.tool-card:not(.soon):hover::after { opacity: 1; }

.tool-card > * { position: relative; z-index: 1; }

.tool-icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid; place-items: center;
  margin-bottom: 17px;
  background: var(--grad);
  box-shadow: 0 10px 28px -10px rgba(124,92,255,.85);
}
.tool-icon svg { width: 25px; height: 25px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tool-card.c2 .tool-icon { background: linear-gradient(130deg,#f472b6,#f43f5e); box-shadow: 0 10px 28px -10px rgba(244,63,94,.8); }
.tool-card.c3 .tool-icon { background: linear-gradient(130deg,#22d3ee,#3b82f6); box-shadow: 0 10px 28px -10px rgba(34,211,238,.8); }
.tool-card.c4 .tool-icon { background: linear-gradient(130deg,#fbbf24,#f97316); box-shadow: 0 10px 28px -10px rgba(251,191,36,.8); }
.tool-card.c5 .tool-icon { background: linear-gradient(130deg,#34d399,#059669); box-shadow: 0 10px 28px -10px rgba(52,211,153,.8); }
.tool-card.c6 .tool-icon { background: linear-gradient(130deg,#a78bfa,#6366f1); box-shadow: 0 10px 28px -10px rgba(167,139,250,.8); }

.tool-card h3 { margin-bottom: 8px; font-size: 17.5px; }
.tool-card p  { color: var(--ink-soft); font-size: 13.5px; margin: 0; line-height: 1.6; }
.tool-meta { margin-top: 16px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }

.tool-card.soon { opacity: .48; cursor: default; }
.tool-card.soon .tool-icon { background: rgba(255,255,255,.1); box-shadow: none; }
.tool-card.soon .tool-icon svg { stroke: var(--ink-dim); }

.tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.tag.live  { background: rgba(52,211,153,.14); border-color: rgba(52,211,153,.36); color: #6ee7b7; }
.tag.soon  { background: rgba(255,255,255,.05); }
.tag.warn  { background: rgba(251,191,36,.14); border-color: rgba(251,191,36,.36); color: #fcd34d; }
.tag.hot   { background: rgba(217,70,239,.16); border-color: rgba(217,70,239,.4); color: #f0abfc; }

/* --------------------------------------------------------------------------
   Düz liste (kategori ve araç listeleri)
   -------------------------------------------------------------------------- */
.row-list { display: flex; flex-direction: column; gap: 8px; }

/* Uzun listeler sayfayı aşağı doğru uzatmasın: kendi içinde kaydırılır */
.scroll-list {
  max-height: min(62vh, 640px);
  overflow-y: auto;
  padding: 4px 10px 4px 4px;
  margin-right: -6px;
  scrollbar-gutter: stable;
}
.scroll-list::after {
  content: '';
  display: block;
  height: 2px;
}
@media (max-width: 760px) {
  .scroll-list { max-height: min(70vh, 560px); }
}

.row-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .18s var(--ease), border-color .18s, background .18s;
}
a.row-item:hover {
  transform: translateX(4px);
  border-color: rgba(124,92,255,.45);
  background: var(--glass-2);
}
.row-item.soon { opacity: .45; }

.row-ico {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--grad);
  box-shadow: 0 6px 18px -8px rgba(124,92,255,.85);
}
.row-ico svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.row-item.c2 .row-ico { background: linear-gradient(130deg,#f472b6,#f43f5e); }
.row-item.c3 .row-ico { background: linear-gradient(130deg,#22d3ee,#3b82f6); }
.row-item.c4 .row-ico { background: linear-gradient(130deg,#fbbf24,#f97316); }
.row-item.c5 .row-ico { background: linear-gradient(130deg,#34d399,#059669); }
.row-item.c6 .row-ico { background: linear-gradient(130deg,#a78bfa,#6366f1); }
.row-item.soon .row-ico { background: rgba(255,255,255,.09); box-shadow: none; }
.row-item.soon .row-ico svg { stroke: var(--ink-dim); }

.row-main { flex: 1; min-width: 0; }
.row-main strong { display: block; font-size: 15px; font-weight: 650; margin-bottom: 2px; }
.row-main span { font-size: 12.5px; color: var(--ink-dim); display: block; line-height: 1.45; }

.row-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.row-arrow { width: 17px; height: 17px; fill: none; stroke: var(--ink-dim); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
a.row-item:hover .row-arrow { stroke: var(--ink); }

/* --------------------------------------------------------------------------
   Sanatçı seçici (açılır liste + arama)
   -------------------------------------------------------------------------- */
.picker { position: relative; }

.picker-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.035);
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 14.5px;
  cursor: pointer;
  text-align: right;
  transition: border-color .2s, background .2s;
}
html[dir="ltr"] .picker-field { text-align: left; }
.picker-field:hover { border-color: var(--stroke-2); }
.picker.open .picker-field {
  border-color: rgba(124,92,255,.7);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(124,92,255,.14);
}
.picker-field .pf-text { flex: 1; }
.picker-field svg { width: 16px; height: 16px; fill: none; stroke: var(--ink-dim); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.picker.open .picker-field svg { transform: rotate(180deg); }

.picker-pop {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0; right: 0;
  border-radius: 15px;
  background: rgba(16,16,30,.97);
  border: 1px solid var(--stroke-2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
  animation: pop .18s var(--ease);
}
.picker.open .picker-pop { display: block; }

.picker-search { padding: 10px; border-bottom: 1px solid var(--stroke); }
.picker-search input {
  width: 100%;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}
.picker-search input:focus { outline: none; border-color: rgba(124,92,255,.6); }

.picker-list { max-height: 260px; overflow-y: auto; padding: 6px; }

.picker-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  background: none;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13.5px;
  text-align: right;
  cursor: pointer;
  transition: background .15s, color .15s;
}
html[dir="ltr"] .picker-opt { text-align: left; }
.picker-opt:hover, .picker-opt.hl { background: var(--glass-2); color: var(--ink); }
.picker-opt .po-main { flex: 1; min-width: 0; }
.picker-opt .po-main b { display: block; font-weight: 600; }
.picker-opt .po-main small { color: var(--ink-dim); font-size: 11.5px; }
.picker-opt.is-new { color: var(--mint); font-weight: 600; }
.picker-opt[disabled] { opacity: .4; cursor: not-allowed; }

.picker-empty { padding: 18px 14px; text-align: center; color: var(--ink-dim); font-size: 13px; }

/* --------------------------------------------------------------------------
   Sihirbaz (adım adım form)
   -------------------------------------------------------------------------- */
.steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.step-dot {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 15px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: all .25s var(--ease);
  flex-shrink: 0;
}
.step-dot i {
  width: 23px; height: 23px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.09);
  font-style: normal; font-size: 11.5px; font-weight: 700;
  color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.step-dot.on   { color: var(--ink); border-color: rgba(124,92,255,.55); background: rgba(124,92,255,.14); }
.step-dot.on i { background: var(--grad); color: #fff; }
.step-dot.done   { color: var(--ink-soft); border-color: rgba(52,211,153,.36); }
.step-dot.done i { background: rgba(52,211,153,.9); color: #04220f; }
.step-line { flex: 1; height: 1px; background: var(--stroke); min-width: 10px; }

.step-pane { display: none; animation: slideIn .34s var(--ease); }
.step-pane.on { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateY(14px); } }

.step-title { margin-bottom: 6px; }
.step-sub { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 26px; }

/* --------------------------------------------------------------------------
   Sonuç ekranı
   -------------------------------------------------------------------------- */
.result-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(0,1fr); gap: 18px; align-items: start; }

.lyric-box {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.95;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #e6e8f2;
  max-height: 620px;
  overflow-y: auto;
  padding: 22px;
  border-radius: var(--r);
  background: rgba(0,0,0,.32);
  border: 1px solid var(--stroke);
}
.lyric-box .tagline { color: var(--violet); font-weight: 700; }

.copy-box {
  position: relative;
  padding: 16px 50px 16px 16px;
  border-radius: var(--r);
  background: rgba(0,0,0,.32);
  border: 1px solid var(--stroke);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  word-break: break-word;
  color: #dfe2ee;
}
.copy-btn {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 9px;
  border: 1px solid var(--stroke);
  background: var(--glass-2);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .18s;
}
.copy-btn:hover { background: rgba(124,92,255,.25); border-color: rgba(124,92,255,.5); color: #fff; }
.copy-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.copy-btn.done { background: rgba(52,211,153,.25); border-color: rgba(52,211,153,.5); color: #6ee7b7; }

.section-label {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 11px;
}

.meta-list { display: grid; gap: 11px; }
.meta-item { display: flex; gap: 11px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.meta-item::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--grad); margin-top: 8px; }

/* Karar bandı (3 gün) */
.decision {
  border-radius: var(--r-lg);
  padding: 20px 24px;
  background: linear-gradient(120deg, rgba(251,191,36,.1), rgba(217,70,239,.08));
  border: 1px solid rgba(251,191,36,.28);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.decision .d-text { flex: 1; min-width: 240px; }
.decision strong { display: block; font-size: 15px; margin-bottom: 4px; }
.decision p { margin: 0; font-size: 13px; color: var(--ink-soft); }
.decision.saved { background: linear-gradient(120deg, rgba(52,211,153,.12), rgba(34,211,238,.08)); border-color: rgba(52,211,153,.32); }

.countdown { font-family: var(--mono); font-weight: 700; color: var(--amber); }
.decision.saved .countdown { color: var(--mint); }

/* --------------------------------------------------------------------------
   Kütüphane
   -------------------------------------------------------------------------- */
.lib-list { display: grid; gap: 14px; }
.lib-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  border-radius: var(--r);
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .2s var(--ease), border-color .2s, background .2s;
}
.lib-item:hover { transform: translateX(4px); border-color: var(--stroke-2); background: var(--glass-2); }
.lib-main { flex: 1; min-width: 0; }
.lib-main h3 { font-size: 16px; margin-bottom: 5px; }
.lib-sub { font-size: 12.5px; color: var(--ink-dim); display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
.lib-sub .sep { opacity: .4; }
.lib-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Uyarı / bilgi kutuları
   -------------------------------------------------------------------------- */
.note {
  padding: 15px 18px;
  border-radius: var(--r);
  font-size: 13.5px;
  line-height: 1.6;
  border: 1px solid var(--stroke);
  background: var(--glass);
  display: flex; gap: 12px;
  margin-bottom: 18px;
}
.note b { color: var(--ink); }
.note-icon { flex-shrink: 0; font-size: 16px; line-height: 1.4; }
.note.err  { background: rgba(251,113,133,.1);  border-color: rgba(251,113,133,.34); color: #fecdd3; }
.note.ok   { background: rgba(52,211,153,.1);   border-color: rgba(52,211,153,.32);  color: #a7f3d0; }
.note.warn { background: rgba(251,191,36,.1);   border-color: rgba(251,191,36,.32);  color: #fde68a; }
.note.info { background: rgba(34,211,238,.08);  border-color: rgba(34,211,238,.28);  color: #a5f3fc; }

.empty { text-align: center; padding: 66px 24px; color: var(--ink-dim); }
.empty .e-icon { font-size: 42px; margin-bottom: 16px; opacity: .55; }
.empty h3 { color: var(--ink-soft); margin-bottom: 8px; }

/* --------------------------------------------------------------------------
   Yükleniyor ekranı
   -------------------------------------------------------------------------- */
.loading-veil {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  place-items: center;
  background: rgba(6,6,14,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px;
}
.loading-veil.on { display: grid; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } }

.loading-card { text-align: center; max-width: 440px; }
.loading-card h3 { margin-bottom: 10px; }
.loading-card p { color: var(--ink-soft); font-size: 13.5px; min-height: 42px; }

.pulse-ring {
  width: 82px; height: 82px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--grad);
  position: relative;
  animation: breathe 2s ease-in-out infinite;
}
.pulse-ring::before, .pulse-ring::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(124,92,255,.55);
  animation: ripple 2.4s var(--ease) infinite;
}
.pulse-ring::after { animation-delay: 1.2s; }
@keyframes breathe { 50% { transform: scale(.9); } }
@keyframes ripple  { to { transform: scale(2.1); opacity: 0; } }

.progress-track { height: 4px; border-radius: 4px; background: rgba(255,255,255,.09); overflow: hidden; margin-top: 22px; }
.progress-fill  { height: 100%; border-radius: 4px; background: var(--grad); width: 6%; transition: width .8s var(--ease); }

/* Nokta animasyonu */
.dots::after { content: ''; animation: dots 1.4s steps(4,end) infinite; }
@keyframes dots { 0% { content: ''; } 25% { content: '.'; } 50% { content: '..'; } 75% { content: '...'; } }

/* --------------------------------------------------------------------------
   Bildirim (toast)
   -------------------------------------------------------------------------- */
.toaster { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; padding: 0 16px; }
.toast {
  padding: 13px 20px;
  border-radius: 14px;
  background: rgba(18,18,32,.9);
  border: 1px solid var(--stroke-2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  font-size: 13.5px; font-weight: 500;
  animation: toastIn .3s var(--ease);
  max-width: 92vw;
}
.toast.out { animation: toastOut .3s var(--ease) forwards; }
.toast.ok  { border-color: rgba(52,211,153,.45);  color: #a7f3d0; }
.toast.err { border-color: rgba(251,113,133,.45); color: #fecdd3; }
@keyframes toastIn  { from { opacity: 0; transform: translateY(18px) scale(.95); } }
@keyframes toastOut { to   { opacity: 0; transform: translateY(10px) scale(.96); } }

/* --------------------------------------------------------------------------
   Giriş sayfası
   -------------------------------------------------------------------------- */
.auth-card { width: 100%; max-width: 420px; padding: 40px 34px; border-radius: var(--r-xl); }
.auth-logo { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 30px; }
.auth-logo .brand-mark { width: 52px; height: 52px; border-radius: 16px; }
.auth-logo .brand-mark::after { inset: 11px; }
.auth-logo h1 { font-size: 27px; }
.auth-logo p { color: var(--ink-dim); font-size: 13.5px; margin: 0; text-align: center; }

/* --------------------------------------------------------------------------
   Tablolar (yönetim)
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--stroke); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 560px; }
table.tbl th, table.tbl td { padding: 13px 16px; text-align: right; }
table.tbl th {
  background: rgba(255,255,255,.045);
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--stroke);
}
table.tbl td { border-bottom: 1px solid rgba(255,255,255,.05); }
table.tbl tbody tr:last-child td { border-bottom: 0; }
table.tbl tbody tr:hover td { background: rgba(255,255,255,.028); }
table.tbl th:first-child, table.tbl td:first-child { text-align: right; }
html[dir="ltr"] table.tbl th, html[dir="ltr"] table.tbl td { text-align: left; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 14px; margin-bottom: 20px; }
.stat {
  padding: 20px;
  border-radius: var(--r);
  background: var(--glass);
  border: 1px solid var(--stroke);
}
.stat .s-num { font-family: var(--disp); font-size: 27px; font-weight: 800; line-height: 1.1; }
.stat .s-lbl { font-size: 12px; color: var(--ink-dim); margin-top: 5px; }

/* Sekmeler */
.tabs { display: flex; gap: 5px; margin-bottom: 22px; border-bottom: 1px solid var(--stroke); overflow-x: auto; }
.tabs button {
  padding: 11px 18px;
  border: 0; background: none;
  color: var(--ink-dim);
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.tabs button:hover { color: var(--ink-soft); }
.tabs button.on { color: var(--ink); border-bottom-color: var(--violet); }
.tab-pane { display: none; }
.tab-pane.on { display: block; animation: slideIn .28s var(--ease); }

/* --------------------------------------------------------------------------
   Yardımcılar
   -------------------------------------------------------------------------- */
.mt-0  { margin-top: 0 !important; }
.mt-1  { margin-top: 10px; }
.mt-2  { margin-top: 18px; }
.mt-3  { margin-top: 28px; }
.mb-0  { margin-bottom: 0 !important; }
.mb-2  { margin-bottom: 18px; }
.muted { color: var(--ink-dim); }
.soft  { color: var(--ink-soft); }
.small { font-size: 12.5px; }
.center { text-align: center; }
.mono  { font-family: var(--mono); }
.nowrap { white-space: nowrap; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.divider { height: 1px; background: var(--stroke); margin: 24px 0; border: 0; }
.hidden { display: none !important; }

/* Kaydırma çubuğu */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.13); border-radius: 10px; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.24); background-clip: content-box; }
* { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.16) transparent; }

/* --------------------------------------------------------------------------
   Duyarlı (responsive)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .result-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .wrap { padding: calc(var(--nav-h) + 24px) 16px 50px; }

  .burger { display: flex; }
  .uname  { display: none; }
  .nav {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px 20px;
    margin: 0;
    background: rgba(10,10,20,.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--stroke);
    transform: translateY(-140%);
    transition: transform .32s var(--ease);
    z-index: 55;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 16px; border-radius: 12px; font-size: 15px; }

  .tool-grid { grid-template-columns: 1fr; }
  .tool-scroll { max-height: none; overflow: visible; }
  .card { padding: 20px; }
  .card-pad-lg { padding: 24px; }
  .lib-item { flex-direction: column; align-items: stretch; }
  .lib-actions { justify-content: flex-end; }
  .btn-block-mob { width: 100%; }
  .steps { gap: 4px; }
  .step-dot span { display: none; }
  .step-dot { padding: 7px; }
  .auth-card { padding: 32px 24px; }
}

/* ==========================================================================
   GÖRSEL YUVALARI VE KÜTÜPHANE
   ========================================================================== */

.slot-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.slot-field .label { margin-bottom: 8px; }

.slot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  min-height: 132px;
  padding: 10px;
  border: 1px dashed var(--stroke-2);
  border-radius: var(--r);
  background: var(--glass);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.slot.has-items { border-style: solid; border-color: rgba(124,92,255,.4); background: var(--glass-2); }

.slot-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100px;
  height: 110px;
  flex: 0 0 auto;
  border: 1px solid var(--stroke);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.03);
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 11.5px;
  cursor: pointer;
  transition: color .18s, border-color .18s, background .18s;
}
.slot-add:hover { color: var(--ink); border-color: rgba(124,92,255,.55); background: var(--glass-2); }
.slot-add svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.slot-items { display: flex; flex-wrap: wrap; gap: 8px; }

.slot-thumb {
  position: relative;
  width: 100px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--stroke);
}
.slot-thumb img { display: block; width: 100%; height: 88px; object-fit: cover; }
.slot-thumb span {
  display: block;
  padding: 4px 6px;
  font-size: 10.5px;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-x {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}
.slot-x:hover { background: var(--rose); }

/* ---- seçim penceresi ---- */
.picker-modal { position: fixed; inset: 0; z-index: 90; display: none; }
.picker-modal.on { display: block; }
.pm-backdrop { position: absolute; inset: 0; background: rgba(4,4,10,.78); backdrop-filter: blur(6px); }

.pm-box {
  position: relative;
  width: min(900px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 48px));
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stroke-2);
  border-radius: var(--r-lg);
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pm-head, .pm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
}
.pm-head { border-bottom: 1px solid var(--stroke); }
.pm-foot { border-top: 1px solid var(--stroke); }
.pm-bar { display: flex; gap: 10px; padding: 14px 20px; }
.pm-bar .input { flex: 1; }

.pm-grid {
  flex: 1;
  overflow-y: auto;
  padding: 4px 20px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  align-content: start;
}
.pm-grid .picker-empty { grid-column: 1 / -1; }

.pm-card {
  padding: 0;
  border: 2px solid var(--stroke);
  border-radius: var(--r-sm);
  background: #000;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .16s, transform .16s var(--ease);
}
.pm-card:hover { transform: translateY(-2px); border-color: var(--stroke-2); }
.pm-card.on { border-color: var(--violet); box-shadow: var(--glow); }
.pm-card img { display: block; width: 100%; height: 130px; object-fit: cover; }
.pm-card span {
  display: block;
  padding: 7px 9px;
  background: var(--bg-2);
  color: var(--ink-soft);
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- kütüphane ızgarası ---- */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.asset-card {
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: var(--glass);
  overflow: hidden;
}
.asset-card .ac-img { display: block; background: #000; }
.asset-card .ac-img img { display: block; width: 100%; height: 190px; object-fit: cover; }
.asset-card .ac-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.asset-card .ac-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  color: var(--ink-dim); font-size: 11.5px;
}
.input-sm { padding: 7px 10px; font-size: 13px; }

/* ---- üretim sonucu ---- */
.shot-out {
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--stroke);
}
.shot-out img { display: block; width: 100%; height: auto; }

@media (max-width: 640px) {
  .slot-row { grid-template-columns: 1fr; }
  .pm-grid { grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); }
  .pm-bar { flex-direction: column; }
}
