/* Bostancı Rotary Kulübü — Üye Paneli
   Marka: Rotary Mavisi #17458F / Azure #0050A2 / Altın #F7A81B */

:root {
  --blue:        #17458F;
  --azure:       #0050A2;
  --gold:        #F7A81B;
  --gold-soft:   #FFC85A;

  --bg:          #070B18;
  --bg-2:        #0A1024;
  --surface:     rgba(255, 255, 255, .045);
  --surface-2:   rgba(255, 255, 255, .07);
  --line:        rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 255, 255, .18);

  --text:        #EAF0FF;
  --muted:       #97A3C4;
  --faint:       #6C79A0;

  --ok:          #3DD68C;
  --warn:        #FFB020;
  --danger:      #FF6B6B;

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

  --shadow:    0 18px 50px -20px rgba(0, 0, 0, .8);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, .9);
  --ease: cubic-bezier(.4, 0, .2, 1);

  --sidebar-w: 264px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 400 15px/1.55 "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 650; letter-spacing: -.02em; line-height: 1.2; }
p { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

/* ── Arka plan ───────────────────────────────────────────── */

.aurora { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
  animation: drift 26s var(--ease) infinite alternate;
}
.b1 { width: 46vw; height: 46vw; left: -12vw; top: -14vw; background: #1B4FA8; }
.b2 { width: 40vw; height: 40vw; right: -10vw; top: 8vh;  background: #8A5A00; opacity: .34; animation-delay: -9s; }
.b3 { width: 52vw; height: 52vw; left: 24vw; bottom: -26vw; background: #0C2E6B; animation-delay: -17s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4vw, 5vh, 0) scale(1.16); }
}

.aurora .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 78%);
}

@media (prefers-reduced-motion: reduce) {
  .aurora .blob { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ── Marka rozeti ────────────────────────────────────────── */

.brand-plate {
  background: #fff;
  border-radius: var(--r);
  padding: 12px 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(23, 69, 143, .10);
}
.brand-plate img { display: block; width: 100%; height: auto; }
.brand-plate--lg { width: 190px; margin: 0 auto 22px; padding: 16px 18px; }

/* ── Giriş ekranı ────────────────────────────────────────── */

.login {
  position: relative; z-index: 1;
  min-height: 100dvh;
  display: grid; place-items: center;
  padding: 32px 20px;
}

.login-card {
  width: 100%; max-width: 420px;
  padding: 34px 32px 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: var(--shadow-lg);
  animation: rise .6s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.login-card h1 { font-size: 26px; text-align: center; }
.login-sub { text-align: center; color: var(--muted); font-size: 14px; margin: 8px 0 24px; }
.login-foot { text-align: center; color: var(--faint); font-size: 12.5px; margin-top: 16px; }

/* ── Form öğeleri ────────────────────────────────────────── */

.field { display: block; margin-bottom: 15px; }
.field > span { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: .01em; }

input[type=text], input[type=email], input[type=password], input[type=date],
input[type=time], input[type=search], select, textarea {
  width: 100%;
  padding: 11px 13px;
  background: rgba(8, 13, 30, .55);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  outline: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
textarea { resize: vertical; min-height: 96px; line-height: 1.6; }

input:focus, select:focus, textarea:focus {
  border-color: rgba(247, 168, 27, .65);
  box-shadow: 0 0 0 3px rgba(247, 168, 27, .16);
  background: rgba(8, 13, 30, .8);
}
input::placeholder, textarea::placeholder { color: #55618A; }
input[type=date], input[type=time] { color-scheme: dark; }
select option { background: #0C1226; color: var(--text); }

.pw-wrap { position: relative; display: block; }
.pw-wrap input { padding-right: 74px; }
.pw-toggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--muted); font-size: 12.5px; font-weight: 600;
  padding: 6px 8px; border-radius: 8px; cursor: pointer;
}
.pw-toggle:hover { color: var(--gold); background: rgba(255,255,255,.05); }

.form-error {
  color: #FFD9D9; background: rgba(255, 107, 107, .13);
  border: 1px solid rgba(255, 107, 107, .35);
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 13.5px; margin-bottom: 14px;
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ── Butonlar ────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease), opacity .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #E08A00);
  color: #23180A;
  box-shadow: 0 10px 26px -12px rgba(247, 168, 27, .8);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 14px 34px -12px rgba(247, 168, 27, .95); }

.btn-secondary { background: var(--surface-2); border-color: var(--line-strong); color: var(--text); }
.btn-secondary:hover:not(:disabled) { background: rgba(255,255,255,.12); }

.btn-ghost { background: transparent; border-color: var(--line); color: var(--muted); }
.btn-ghost:hover:not(:disabled) { color: var(--text); border-color: var(--line-strong); background: var(--surface); }

.btn-danger { background: rgba(255, 107, 107, .14); border-color: rgba(255,107,107,.4); color: #FF9C9C; }
.btn-danger:hover:not(:disabled) { background: rgba(255, 107, 107, .24); }

.btn-sm { padding: 7px 12px; font-size: 13px; }

.icon-btn {
  background: var(--surface); border: 1px solid var(--line);
  color: var(--muted); width: 38px; height: 38px;
  border-radius: var(--r-sm); cursor: pointer;
  display: grid; place-items: center; font-size: 15px;
  transition: color .18s, border-color .18s, background .18s;
}
.icon-btn:hover { color: var(--text); border-color: var(--line-strong); background: var(--surface-2); }

/* ── Uygulama iskeleti ───────────────────────────────────── */

.app { position: relative; z-index: 1; display: flex; min-height: 100dvh; }

.sidebar {
  width: var(--sidebar-w); flex: 0 0 var(--sidebar-w);
  position: sticky; top: 0; height: 100dvh;
  display: flex; flex-direction: column; gap: 18px;
  padding: 20px 16px;
  background: linear-gradient(180deg, rgba(10,16,36,.92), rgba(7,11,24,.86));
  border-right: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 40;
}

.sidebar-head { display: flex; align-items: center; gap: 10px; }
.sidebar-head .brand-plate { flex: 1; padding: 10px 12px; }
.sidebar-close { display: none; }

.nav { display: flex; flex-direction: column; gap: 3px; flex: 1; overflow-y: auto; }

.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  background: none; border: 1px solid transparent; border-radius: var(--r-sm);
  color: var(--muted); font-size: 14.5px; font-weight: 550;
  cursor: pointer; text-align: left;
  transition: color .18s var(--ease), background .18s var(--ease);
  position: relative;
}
.nav-item:hover { color: var(--text); background: var(--surface); }
.nav-item.active { color: #fff; background: linear-gradient(100deg, rgba(247,168,27,.18), rgba(247,168,27,.04)); }
.nav-item.active::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 3px; border-radius: 0 3px 3px 0; background: var(--gold);
}
.nav-item i { width: 18px; height: 18px; flex: 0 0 18px; display: block; opacity: .9; }
.nav-item.active i { opacity: 1; }

.sidebar-foot { display: flex; flex-direction: column; gap: 10px; }

.rotary-year {
  font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold); opacity: .85; text-align: center;
}

.me-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--line);
}
.me-card .meta { min-width: 0; }
.me-card .name { font-size: 13.5px; font-weight: 650; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.me-card .role { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: rgba(7, 11, 24, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.topbar-title { flex: 1; min-width: 0; }
.topbar-title h2 { font-size: 21px; }
.topbar-title p { font-size: 13px; color: var(--muted); margin-top: 2px; }
.topbar-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.nav-toggle { display: none; }

.view { padding: 26px 28px 60px; animation: fade .35s var(--ease) both; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.scrim { position: fixed; inset: 0; background: rgba(3,6,16,.65); backdrop-filter: blur(3px); z-index: 35; }

/* ── Kartlar ─────────────────────────────────────────────── */

.card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.022));
  border: 1px solid var(--line);
  border-radius: var(--r);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.card-head h3 { font-size: 15.5px; flex: 1; }
.card-body { padding: 16px 18px; }
.card-body.tight { padding: 8px; }

.section-grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.cols-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* ── İstatistik kutuları ─────────────────────────────────── */

.stat {
  position: relative; overflow: hidden;
  padding: 18px 20px;
  border-radius: var(--r);
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.stat:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.stat[data-goto] { cursor: pointer; }
.stat[data-goto]:hover { border-color: rgba(247,168,27,.45); }
.stat::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,168,27,.22), transparent 68%);
}
.stat .label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.stat .value { font-size: 34px; font-weight: 700; letter-spacing: -.03em; margin-top: 6px; line-height: 1; }
.stat .hint { font-size: 12.5px; color: var(--faint); margin-top: 6px; }

/* ── Rozetler ────────────────────────────────────────────── */

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 650; letter-spacing: .02em;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--muted);
  white-space: nowrap;
}
.pill.gold   { background: rgba(247,168,27,.14); border-color: rgba(247,168,27,.34); color: var(--gold-soft); }
.pill.blue   { background: rgba(46,110,220,.16); border-color: rgba(46,110,220,.38); color: #A9C7FF; }
.pill.green  { background: rgba(61,214,140,.13); border-color: rgba(61,214,140,.32); color: #8BEEBE; }
.pill.red    { background: rgba(255,107,107,.13); border-color: rgba(255,107,107,.32); color: #FFA8A8; }
.pill.purple { background: rgba(167,120,255,.14); border-color: rgba(167,120,255,.34); color: #CDB4FF; }

/* ── Avatar ──────────────────────────────────────────────── */

.avatar {
  flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
  background: linear-gradient(140deg, var(--azure), var(--blue));
  color: #fff; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar.lg { width: 64px; height: 64px; border-radius: 18px; font-size: 21px; }
.avatar.xl { width: 92px; height: 92px; border-radius: 24px; font-size: 30px; }
.avatar.sm { width: 32px; height: 32px; border-radius: 10px; font-size: 12px; }

/* ── Üye kartları ────────────────────────────────────────── */

.member-card {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px;
  border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  cursor: pointer; text-align: left; width: 100%;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.member-card:hover { transform: translateY(-3px); border-color: rgba(247,168,27,.4); background: rgba(255,255,255,.07); }
.member-card .info { min-width: 0; flex: 1; }
.member-card .nm { font-size: 15px; font-weight: 650; }
.member-card .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.member-card.passive { opacity: .55; }

/* ── Liste satırları ─────────────────────────────────────── */

.row {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 14px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background .18s var(--ease), border-color .18s var(--ease);
  width: 100%; text-align: left; background: none; cursor: pointer;
}
.row:hover { background: var(--surface); border-color: var(--line); }
.row + .row { margin-top: 2px; }
.row .info { flex: 1; min-width: 0; }
.row .t { font-size: 14.5px; font-weight: 600; }
.row .s { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.row .end { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.datebox {
  flex: 0 0 auto; width: 50px; padding: 7px 0;
  border-radius: 12px; text-align: center;
  background: rgba(23, 69, 143, .3); border: 1px solid rgba(120,160,255,.2);
}
.datebox .d { font-size: 18px; font-weight: 700; line-height: 1; }
.datebox .m { font-size: 10.5px; font-weight: 650; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-top: 3px; }
.datebox.gold { background: rgba(247,168,27,.16); border-color: rgba(247,168,27,.34); }
.datebox.gold .d { color: var(--gold-soft); }

/* ── Doğum günü ──────────────────────────────────────────── */

.bday {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface);
}
.bday.today {
  border-color: rgba(247,168,27,.5);
  background: linear-gradient(100deg, rgba(247,168,27,.18), rgba(247,168,27,.04));
  box-shadow: 0 0 0 1px rgba(247,168,27,.1), 0 10px 30px -16px rgba(247,168,27,.7);
}
.bday .info { flex: 1; min-width: 0; }
.bday .nm { font-size: 14px; font-weight: 650; }
.bday .when { font-size: 12.5px; color: var(--muted); }
.bday.today .when { color: var(--gold-soft); font-weight: 600; }
.bday .cake { font-size: 19px; }

/* ── Takvim ──────────────────────────────────────────────── */

.cal-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.cal-head h3 { font-size: 19px; min-width: 190px; }

.cal { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.cal-dow {
  text-align: center; font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--faint); padding-bottom: 6px;
}
.cal-cell {
  min-height: 104px; padding: 7px;
  border-radius: 12px;
  background: rgba(255,255,255,.028);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.cal-cell:hover { border-color: var(--line-strong); background: rgba(255,255,255,.05); }
.cal-cell.out { opacity: .32; }
.cal-cell.today { border-color: rgba(247,168,27,.6); background: rgba(247,168,27,.07); }
.cal-cell .n { font-size: 12.5px; font-weight: 650; color: var(--muted); }
.cal-cell.today .n { color: var(--gold); }

.chip {
  font-size: 11px; font-weight: 600; line-height: 1.35;
  padding: 3px 6px; border-radius: 7px;
  border: 1px solid transparent; cursor: pointer;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  text-align: left; width: 100%; display: block;
}
.chip.meeting { background: rgba(46,110,220,.24); border-color: rgba(120,160,255,.34); color: #C3D9FF; }
.chip.event   { background: rgba(167,120,255,.2);  border-color: rgba(167,120,255,.36); color: #DCCBFF; }
.chip.bday    { background: rgba(247,168,27,.2);   border-color: rgba(247,168,27,.36);  color: #FFDA9B; }
.chip:hover { filter: brightness(1.22); }

.cal-legend { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cal-legend i { width: 11px; height: 11px; border-radius: 4px; display: block; }

@media (max-width: 760px) {
  .cal-cell { min-height: 76px; padding: 5px; }
  .chip { font-size: 0; padding: 0; height: 6px; border-radius: 3px; }
}

/* ── Araç çubuğu / arama ─────────────────────────────────── */

.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.toolbar .grow { flex: 1; min-width: 190px; }
.toolbar select { width: auto; min-width: 150px; }

/* ── Modal ───────────────────────────────────────────────── */

.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(3, 6, 16, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 22px;
  animation: fade .2s var(--ease) both;
  overflow-y: auto;
}

.modal {
  width: 100%; max-width: 620px;
  max-height: calc(100dvh - 44px);
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, #131A32, #0B1122);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  animation: pop .26s var(--ease) both;
}
.modal.wide { max-width: 820px; }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

.modal-head { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.modal-head h3 { flex: 1; font-size: 17px; }
.modal-body { padding: 20px 22px; overflow-y: auto; flex: 1; }
.modal-foot {
  display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap;
  padding: 15px 22px; border-top: 1px solid var(--line);
}
.modal-foot .spacer { flex: 1; }

/* ── Detay listesi ───────────────────────────────────────── */

.dl { display: grid; grid-template-columns: 148px 1fr; gap: 11px 16px; font-size: 14px; }
.dl dt { color: var(--muted); font-size: 13px; }
.dl dd { margin: 0; }
@media (max-width: 520px) { .dl { grid-template-columns: 1fr; gap: 3px 0; } .dl dd { margin-bottom: 10px; } }

.notes-block {
  white-space: pre-wrap; line-height: 1.7;
  background: rgba(8, 13, 30, .5);
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--r-sm); padding: 14px 16px; font-size: 14px;
}

/* ── Yoklama ─────────────────────────────────────────────── */

.att-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.att-row:last-child { border-bottom: 0; }
.att-row .nm { flex: 1; font-size: 14px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.seg { display: inline-flex; background: rgba(8,13,30,.6); border: 1px solid var(--line); border-radius: 9px; padding: 2px; }
.seg button {
  background: none; border: 0; cursor: pointer;
  padding: 5px 10px; border-radius: 7px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  transition: background .16s, color .16s;
}
.seg button:hover { color: var(--text); }
.seg button.on { color: #fff; }
.seg button.on[data-v=geldi]     { background: rgba(61,214,140,.28); color: #A8F3CE; }
.seg button.on[data-v=mazeretli] { background: rgba(255,176,32,.26); color: #FFD79B; }
.seg button.on[data-v=gelmedi]   { background: rgba(255,107,107,.26); color: #FFB3B3; }

/* ── Sekmeler ────────────────────────────────────────────── */

.tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 4px; margin-bottom: 18px;
  background: rgba(8, 13, 30, .55);
  border: 1px solid var(--line); border-radius: 12px;
}
.tab {
  display: inline-flex; align-items: center; gap: 7px;
  flex: 1; justify-content: center; min-width: 110px;
  padding: 9px 12px;
  background: none; border: 0; border-radius: 9px;
  color: var(--muted); font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: background .18s var(--ease), color .18s var(--ease);
}
.tab:hover { color: var(--text); background: rgba(255,255,255,.05); }
.tab.active { color: #23180A; background: linear-gradient(135deg, var(--gold), #E8940D); }
.tab-badge {
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  background: rgba(0,0,0,.22); color: inherit;
}
.tab:not(.active) .tab-badge { background: rgba(255,255,255,.12); }

/* ── Toplantı defteri bölümleri ──────────────────────────── */

.sec { margin-bottom: 18px; }
.sec-head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-size: 14px; }
.sec-ico {
  width: 27px; height: 27px; flex: 0 0 27px;
  display: grid; place-items: center;
  border-radius: 9px; font-size: 14px;
  background: var(--surface-2); border: 1px solid var(--line);
}
.sec-ico.gold   { background: rgba(247,168,27,.16); border-color: rgba(247,168,27,.34); }
.sec-ico.green  { background: rgba(61,214,140,.14); border-color: rgba(61,214,140,.32); }
.sec-ico.blue   { background: rgba(46,110,220,.18); border-color: rgba(46,110,220,.38); }
.sec-ico.purple { background: rgba(167,120,255,.16); border-color: rgba(167,120,255,.34); }

/* ── Fotoğraf galerisi ───────────────────────────────────── */

.gal-drop {
  border: 1.5px dashed var(--line-strong); border-radius: var(--r);
  padding: 18px; margin-bottom: 16px; cursor: pointer;
  background: rgba(255,255,255,.02);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.gal-drop:hover, .gal-drop.over {
  border-color: rgba(247,168,27,.7); background: rgba(247,168,27,.07);
}
.gal-drop-inner { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.gal-ico { font-size: 26px; }
.gal-drop b { font-size: 14px; }

.gal-progress {
  padding: 9px 12px; margin-bottom: 14px; border-radius: var(--r-sm);
  background: rgba(247,168,27,.13); border: 1px solid rgba(247,168,27,.32);
  color: var(--gold-soft); font-size: 13px; font-weight: 600; text-align: center;
}

.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 12px; }

.gal-item {
  margin: 0; position: relative;
  border-radius: var(--r-sm); overflow: hidden;
  background: rgba(8,13,30,.5); border: 1px solid var(--line);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.gal-item:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.gal-thumb {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  padding: 0; border: 0; background: #060A16; cursor: zoom-in;
}
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-item figcaption { display: flex; align-items: center; gap: 4px; padding: 6px; }
.gal-cap {
  flex: 1; min-width: 0; padding: 5px 7px; font-size: 12px;
  background: transparent; border: 1px solid transparent; border-radius: 7px;
}
.gal-cap:hover:not(:disabled) { border-color: var(--line); }
.gal-cap:disabled { opacity: .7; cursor: default; }
.gal-del {
  flex: 0 0 auto; width: 26px; height: 26px;
  background: rgba(255,107,107,.14); border: 1px solid rgba(255,107,107,.32);
  color: #FF9C9C; border-radius: 7px; cursor: pointer; font-size: 11px;
  display: grid; place-items: center;
}
.gal-del:hover { background: rgba(255,107,107,.28); }
.gal-by {
  position: absolute; top: 6px; left: 6px;
  padding: 2px 7px; border-radius: 999px;
  background: rgba(3,6,16,.72); backdrop-filter: blur(6px);
  font-size: 10.5px; font-weight: 600; color: #D7E0F5;
  max-width: calc(100% - 12px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ── Panel fotoğraf şeridi ───────────────────────────────── */

.photo-strip {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.strip-item {
  position: relative; flex: 0 0 152px; height: 108px;
  padding: 0; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; cursor: zoom-in; background: #060A16;
  scroll-snap-align: start;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.strip-item:hover { transform: translateY(-3px); border-color: rgba(247,168,27,.5); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strip-cap {
  position: absolute; inset: auto 0 0 0; padding: 14px 8px 6px;
  background: linear-gradient(transparent, rgba(3,6,16,.9));
  font-size: 11px; font-weight: 600; color: #E6ECFA;
  text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ── Tam ekran görüntüleyici ─────────────────────────────── */

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(3, 5, 12, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 10px; padding: 24px;
  animation: fade .2s var(--ease) both;
}
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; min-width: 0; }
.lb-figure img {
  max-width: 100%; max-height: calc(100dvh - 130px);
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.95);
  animation: pop .25s var(--ease) both;
}
.lb-figure figcaption { color: #C6D0E8; font-size: 13.5px; text-align: center; max-width: 640px; }
.lb-nav, .lb-close {
  background: rgba(255,255,255,.08); border: 1px solid var(--line-strong);
  color: #fff; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  transition: background .18s var(--ease);
}
.lb-nav { width: 46px; height: 46px; font-size: 26px; line-height: 1; }
.lb-nav:hover, .lb-close:hover { background: rgba(255,255,255,.2); }
.lb-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; font-size: 15px; }

@media (max-width: 620px) {
  .lightbox { grid-template-columns: 1fr; }
  .lb-nav { position: absolute; bottom: 22px; }
  .lb-nav.prev { left: 24px; }
  .lb-nav.next { right: 24px; }
}

/* ── Toplantı kartları (liste) ───────────────────────────── */

.mt-card {
  display: flex; flex-direction: column; text-align: left;
  padding: 0; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.mt-card:hover { transform: translateY(-4px); border-color: rgba(247,168,27,.45); }
.mt-thumb {
  position: relative; height: 148px; background: #0A1024;
  display: grid; place-items: center; overflow: hidden;
}
.mt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mt-card:hover .mt-thumb img { transform: scale(1.05); }
.mt-thumb img { transition: transform .4s var(--ease); }
.mt-thumb-ph { font-size: 40px; opacity: .3; }
.mt-thumb .datebox {
  position: absolute; top: 10px; left: 10px;
  background: rgba(6, 10, 22, .82); backdrop-filter: blur(8px);
}
.mt-count {
  position: absolute; bottom: 10px; right: 10px;
  padding: 3px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 650;
  background: rgba(6, 10, 22, .82); backdrop-filter: blur(8px); color: #DCE5F7;
}
.mt-body { padding: 14px 16px 16px; }
.mt-body .nm { font-size: 15px; font-weight: 650; line-height: 1.35; }
.mt-body .sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.mt-body .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }

/* ── Toplantı sayfası ────────────────────────────────────── */

.mp-hero {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  margin-bottom: 20px; min-height: 168px;
  background: linear-gradient(140deg, rgba(23,69,143,.5), rgba(10,16,36,.9));
}
.mp-cover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .42;
}
.mp-hero.has-cover { min-height: 250px; }
.mp-hero.has-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,11,24,.96) 8%, rgba(7,11,24,.42) 65%, rgba(7,11,24,.2));
}
.mp-hero-in { position: relative; z-index: 2; padding: 22px 24px; }
.mp-hero.has-cover .mp-hero-in { padding-top: 90px; }
.mp-hero-in h1 { font-size: 27px; margin: 12px 0 0; letter-spacing: -.025em; }
.mp-speaker { margin-top: 8px; color: var(--gold-soft); font-size: 14px; font-weight: 600; }
.mp-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.mp-tabs { max-width: 660px; }

/* ── Katılımcı listesi ───────────────────────────────────── */

.att-list { display: flex; flex-direction: column; gap: 6px; }
.att-item {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 12px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease);
}
.att-item:hover { background: var(--surface); border-color: var(--line-strong); }
.att-item .nm { flex: 1; min-width: 0; font-size: 14.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.att-item.st-geldi     { border-color: rgba(61,214,140,.45); background: rgba(61,214,140,.09); }
.att-item.st-mazeretli { border-color: rgba(255,176,32,.4);  background: rgba(255,176,32,.07); }
.att-item.st-gelmedi   { border-color: rgba(255,107,107,.35); background: rgba(255,107,107,.06); opacity: .8; }

.att-check {
  flex: 0 0 auto; width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 8px; cursor: pointer;
  border: 2px solid var(--line-strong); background: rgba(8,13,30,.6);
  color: transparent; font-size: 14px; font-weight: 800;
  transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
}
.att-item:hover .att-check { border-color: var(--muted); }
.att-item.st-geldi .att-check {
  background: linear-gradient(140deg, #3DD68C, #21B36C);
  border-color: #3DD68C; color: #06301D; transform: scale(1.06);
}
.att-check:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 620px) {
  .att-item { flex-wrap: wrap; }
  .att-item .seg { width: 100%; justify-content: center; }
}

/* ── 3B kapak akışı (coverflow) ──────────────────────────── */

.cf { display: block; }
.cf-stage {
  position: relative; height: 320px;
  perspective: 1400px; perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  outline: none; touch-action: pan-y;
  display: grid; place-items: center;
}
.cf-card {
  position: absolute; margin: 0;
  width: min(360px, 62%); aspect-ratio: 4 / 3;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #060A16; cursor: pointer;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.95);
  transition: transform .55s var(--ease), opacity .45s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}
.cf-card img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; }
.cf-card.active {
  border-color: rgba(247,168,27,.65);
  box-shadow: 0 36px 80px -26px rgba(247,168,27,.5), 0 0 0 1px rgba(247,168,27,.28);
  cursor: zoom-in;
}
.cf-card:not(.active) { filter: saturate(.7) brightness(.72); }

.cf-bar { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.cf-btn {
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  color: var(--text); font-size: 21px; line-height: 1;
  display: grid; place-items: center; transition: background .18s var(--ease);
}
.cf-btn:hover { background: rgba(255,255,255,.15); }
.cf-dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; max-width: 320px; }
.cf-dot {
  width: 8px; height: 8px; padding: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.22); border: 0; transition: all .22s var(--ease);
}
.cf-dot.on { background: var(--gold); width: 22px; border-radius: 5px; }
.cf-caption { text-align: center; color: var(--muted); font-size: 13px; margin-top: 10px; }

@media (max-width: 620px) { .cf-stage { height: 230px; } .cf-card { width: 74%; } }

/* ── Sunum modu ──────────────────────────────────────────── */

.present {
  position: fixed; inset: 0; z-index: 400;
  background: radial-gradient(ellipse at 50% 0%, #101a36, #05080F 70%);
  display: flex; flex-direction: column;
  animation: fade .25s var(--ease) both;
}
.ps-frame { flex: 1; display: grid; place-items: center; padding: 40px 56px; perspective: 1600px; overflow: hidden; }
.ps-slide {
  width: 100%; max-width: 960px; text-align: center;
  transform-style: preserve-3d;
}
.ps-slide.in-next { animation: psNext .5s var(--ease) both; }
.ps-slide.in-prev { animation: psPrev .5s var(--ease) both; }
@keyframes psNext {
  from { opacity: 0; transform: translateX(90px) rotateY(-22deg) scale(.9); }
  to   { opacity: 1; transform: none; }
}
@keyframes psPrev {
  from { opacity: 0; transform: translateX(-90px) rotateY(22deg) scale(.9); }
  to   { opacity: 1; transform: none; }
}

.ps-slide h1 { font-size: clamp(28px, 5vw, 52px); line-height: 1.12; }
.ps-slide h2 { font-size: clamp(22px, 3.4vw, 36px); margin-bottom: 22px; }
.ps-ico {
  width: 66px; height: 66px; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 30px;
  border-radius: 20px; background: var(--surface-2); border: 1px solid var(--line-strong);
}
.ps-ico.gold   { background: rgba(247,168,27,.17); border-color: rgba(247,168,27,.4); }
.ps-ico.green  { background: rgba(61,214,140,.15); border-color: rgba(61,214,140,.36); }
.ps-ico.blue   { background: rgba(46,110,220,.2);  border-color: rgba(46,110,220,.42); }
.ps-ico.purple { background: rgba(167,120,255,.17); border-color: rgba(167,120,255,.4); }
.ps-body {
  font-size: clamp(15px, 1.9vw, 21px); line-height: 1.75; color: #D6DEF2;
  text-align: left; max-width: 780px; margin: 0 auto;
  max-height: 52vh; overflow-y: auto; padding: 0 8px;
}
.ps-stats { display: flex; gap: 34px; justify-content: center; margin-bottom: 26px; }
.ps-stats div { display: flex; flex-direction: column; gap: 4px; }
.ps-stats b { font-size: clamp(28px, 4.4vw, 48px); color: var(--gold); line-height: 1; }
.ps-stats span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }

.ps-cover { position: relative; }
.ps-cover img {
  width: 100%; max-height: 56vh; object-fit: cover;
  border-radius: 20px; margin-bottom: 26px;
  box-shadow: 0 40px 90px -32px rgba(0,0,0,.95);
}
.ps-cover-text p { color: var(--muted); margin-top: 12px; font-size: 15.5px; }

.ps-photo { margin: 0; }
.ps-photo img {
  max-width: 100%; max-height: 68vh; object-fit: contain;
  border-radius: 16px; box-shadow: 0 40px 90px -32px rgba(0,0,0,.95);
}
.ps-photo figcaption { margin-top: 16px; color: #C6D0E8; font-size: 15px; }

.ps-hud {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 14px; position: relative;
}
.ps-count { color: var(--muted); font-size: 13.5px; font-variant-numeric: tabular-nums; min-width: 62px; text-align: center; }
.ps-btn {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.08); border: 1px solid var(--line-strong);
  color: #fff; font-size: 22px; line-height: 1; display: grid; place-items: center;
  transition: background .18s var(--ease);
}
.ps-btn:hover { background: rgba(255,255,255,.2); }
.ps-exit { position: absolute; right: 20px; font-size: 15px; }
.ps-progress { height: 3px; background: rgba(255,255,255,.08); }
.ps-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width .4s var(--ease); }

@media (max-width: 620px) {
  .ps-frame { padding: 22px 18px; }
  .ps-stats { gap: 20px; }
  .ps-exit { right: 12px; }
}

/* ── Canlı toplantı konsolu ──────────────────────────────── */

.pill.live, .mt-live {
  background: rgba(255, 76, 76, .18); border: 1px solid rgba(255, 76, 76, .5);
  color: #FFB3B3; font-weight: 700; letter-spacing: .04em;
  animation: pulse 1.9s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

.mt-live {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 9px; border-radius: 999px; font-size: 11px;
  backdrop-filter: blur(8px);
}

.btn-live {
  background: linear-gradient(135deg, #FF4C4C, #C21F1F); color: #fff;
  box-shadow: 0 10px 26px -12px rgba(255, 76, 76, .9);
}
.btn-live:hover:not(:disabled) { box-shadow: 0 14px 34px -12px rgba(255, 76, 76, 1); }

.live {
  position: fixed; inset: 0; z-index: 350;
  background: radial-gradient(ellipse at 50% -10%, #121c3a, #05080F 65%);
  display: flex; flex-direction: column;
  animation: fade .25s var(--ease) both;
}

.lv-top {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 24, .8); backdrop-filter: blur(14px);
}
.lv-dot {
  width: 11px; height: 11px; border-radius: 50%; background: #FF4C4C;
  box-shadow: 0 0 0 0 rgba(255, 76, 76, .7); animation: ping 1.8s infinite;
}
@keyframes ping {
  70%  { box-shadow: 0 0 0 11px rgba(255, 76, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 76, 76, 0); }
}
.lv-title { flex: 1; min-width: 150px; display: flex; flex-direction: column; }
.lv-title b { font-size: 15.5px; }
.lv-title span { font-size: 12.5px; color: var(--muted); }
.lv-clock {
  font-size: 21px; font-weight: 700; letter-spacing: .04em;
  font-variant-numeric: tabular-nums; color: var(--gold-soft);
}

.lv-grid {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 16px; padding: 16px 20px 20px; overflow: hidden;
}
.lv-col { display: flex; flex-direction: column; gap: 16px; min-height: 0; overflow-y: auto; }

.lv-card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.022));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 15px 16px;
}
.lv-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lv-card-head h3 { flex: 1; font-size: 14.5px; }
.lv-hint { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 10px; }

/* 3B katılımcı halkası */
.ring-wrap { position: relative; }
.ring-scene {
  height: 250px; perspective: 1300px;
  display: grid; place-items: center; overflow: hidden;
}
.ring {
  position: relative; width: 176px; height: 190px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.32, .72, 0, 1);
}
.ring-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 10px; border-radius: 16px; cursor: pointer;
  background: linear-gradient(165deg, rgba(20,28,54,.96), rgba(10,16,36,.96));
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,.9);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  backface-visibility: hidden;
}
.ring-card .rc-name { font-size: 13px; font-weight: 650; text-align: center; line-height: 1.25; }
.ring-card .rc-role { font-size: 11px; color: var(--muted); }
.ring-card .rc-state { font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--faint); margin-top: 2px; }
.ring-card.front { border-color: rgba(247,168,27,.6); }
.ring-card.st-geldi {
  background: linear-gradient(165deg, rgba(20,64,44,.97), rgba(10,36,26,.97));
  border-color: rgba(61,214,140,.6);
  box-shadow: 0 24px 52px -22px rgba(61,214,140,.5);
}
.ring-card.st-geldi .rc-state { color: #8BEEBE; }
.ring-card.st-mazeretli { border-color: rgba(255,176,32,.5); }
.ring-card.st-mazeretli .rc-state { color: #FFD79B; }
.ring-card.st-gelmedi { opacity: .62; }

.ring-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; }
.ring-nav.prev { left: 4px; }
.ring-nav.next { right: 4px; }

.lv-tools { display: flex; gap: 7px; margin-top: 12px; flex-wrap: wrap; }
.lv-tools input { flex: 1; min-width: 130px; }

.lv-people { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; max-height: 260px; overflow-y: auto; }
.lv-person {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 10px; border-radius: var(--r-sm); cursor: pointer;
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  transition: background .16s var(--ease), border-color .16s var(--ease);
}
.lv-person:hover { background: var(--surface); }
.lv-person .nm { flex: 1; min-width: 0; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lv-person.st-geldi     { border-color: rgba(61,214,140,.45); background: rgba(61,214,140,.09); }
.lv-person.st-geldi .att-check { background: linear-gradient(140deg,#3DD68C,#21B36C); border-color:#3DD68C; color:#06301D; }
.lv-person.st-mazeretli { border-color: rgba(255,176,32,.4); }
.lv-person.st-gelmedi   { opacity: .7; }
.lv-person .att-check { width: 22px; height: 22px; font-size: 12px; }
.lv-person .seg button { padding: 4px 7px; font-size: 11px; }

/* Gündem tikleri */
.lv-agenda { display: flex; flex-direction: column; gap: 5px; }
.lv-ag {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--r-sm); cursor: pointer;
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  font-size: 13.5px; line-height: 1.4;
}
.lv-ag:hover { background: var(--surface); }
.lv-ag.on { border-color: rgba(61,214,140,.45); background: rgba(61,214,140,.08); }
.lv-ag.on span:last-child { text-decoration: line-through; color: var(--muted); }
.lv-ag.on .att-check { background: linear-gradient(140deg,#3DD68C,#21B36C); border-color:#3DD68C; color:#06301D; }
.lv-ag .att-check { width: 22px; height: 22px; font-size: 12px; flex: 0 0 22px; }

/* Kayıt girişi */
.lv-kinds { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.lv-kind {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  background: rgba(8,13,30,.6); border: 1px solid var(--line);
  color: var(--muted); font-size: 12.5px; font-weight: 600;
  transition: all .16s var(--ease);
}
.lv-kind:hover { color: var(--text); border-color: var(--line-strong); }
.lv-kind.on { background: linear-gradient(135deg, var(--gold), #E8940D); color: #23180A; border-color: transparent; }

/* Canlı akış */
.lv-flow { flex: 1; min-height: 200px; display: flex; flex-direction: column; }
.lv-log { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 7px; padding-right: 4px; }
.lv-entry {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 12px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  animation: rise .3s var(--ease) both;
}
.lv-entry .le-body { flex: 1; min-width: 0; }
.lv-entry .le-text { font-size: 13.5px; line-height: 1.5; white-space: pre-wrap; word-break: break-word; }
.lv-entry .le-meta { font-size: 11.5px; color: var(--faint); margin-top: 4px; }
.lv-entry .sec-ico { width: 24px; height: 24px; flex: 0 0 24px; font-size: 12px; }

@media (max-width: 900px) {
  .lv-grid { grid-template-columns: 1fr; overflow-y: auto; }
  .lv-col { overflow: visible; }
  .ring-scene { height: 215px; }
  .lv-clock { font-size: 17px; }
}

/* ── Boş durum ───────────────────────────────────────────── */

.empty { text-align: center; padding: 42px 20px; color: var(--muted); }
.empty .ico { font-size: 30px; opacity: .5; margin-bottom: 10px; }
.empty h4 { font-size: 15.5px; margin-bottom: 6px; color: var(--text); }
.empty p { font-size: 13.5px; }

/* ── Bildirimler ─────────────────────────────────────────── */

.toasts { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: flex; flex-direction: column; gap: 9px; }
.toast {
  padding: 12px 16px; border-radius: var(--r-sm);
  background: #141C33; border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg); font-size: 14px; max-width: 340px;
  animation: slide .3s var(--ease) both;
}
.toast.ok  { border-left: 3px solid var(--ok); }
.toast.err { border-left: 3px solid var(--danger); }
@keyframes slide { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }

/* ── Yardımcılar ─────────────────────────────────────────── */

.muted { color: var(--muted); }
.faint { color: var(--faint); }
.small { font-size: 12.5px; }
.stack { display: flex; flex-direction: column; gap: 9px; }
.hstack { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.mt { margin-top: 18px; }
.mb { margin-bottom: 14px; }
.divider { height: 1px; background: var(--line); margin: 18px 0; border: 0; }
.spin { display: inline-block; width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.25);
        border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.13); border-radius: 6px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.24); background-clip: content-box; }

/* ── Duyarlı ─────────────────────────────────────────────── */

@media (max-width: 960px) {
  .sidebar {
    position: fixed; left: 0; top: 0;
    transform: translateX(-104%);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .sidebar.open { transform: none; }
  .sidebar-close { display: grid; }
  .nav-toggle { display: grid; }
  .topbar { padding: 14px 16px; }
  .view { padding: 18px 16px 60px; }
  .topbar-title h2 { font-size: 18px; }
}
