/* ═══════════════════════════════════════════════════════════
   ParkeciBul.com — Profesyonel Mavi/Beyaz Tasarım Sistemi
   Fontlar: Outfit (display) + Nunito Sans (body)
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --blue:     #1E5EFF;
  --blue-d:   #1248CC;
  --blue-l:   #4D82FF;
  --blue-bg:  #EEF3FF;
  --blue-mid: #DDEAFF;
  --navy:     #0A1628;
  --slate:    #2C3A52;
  --body:     #475569;
  --muted:    #8B9AB1;
  --border:   #E2E8F0;
  --border-l: #F1F5F9;
  --bg:       #F8FAFD;
  --white:    #FFFFFF;
  --green:    #10B981;
  --green-bg: #D1FAE5;
  --red:      #EF4444;
  --red-bg:   #FEE2E2;
  --amber:    #F59E0B;
  --amber-bg: #FEF3C7;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl:32px;
  --r-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(14,30,60,0.06);
  --shadow-sm: 0 2px 8px rgba(14,30,60,0.08);
  --shadow-md: 0 4px 16px rgba(14,30,60,0.10);
  --shadow-lg: 0 8px 32px rgba(14,30,60,0.12);
  --shadow-xl: 0 16px 48px rgba(14,30,60,0.14);
  --shadow-blue: 0 4px 20px rgba(30,94,255,0.28);

  --font-d: 'Outfit', sans-serif;
  --font-b: 'Nunito Sans', sans-serif;
  --ease:  cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 0;
}
.nav-logo {
  font-family: var(--font-d); font-weight: 900; font-size: 1.3rem;
  color: var(--navy); letter-spacing: -0.5px; margin-right: 32px; white-space: nowrap;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 2px; list-style: none; flex: 1; }
.nav-links a {
  padding: 7px 13px; border-radius: var(--r-sm); font-size: 0.875rem;
  font-weight: 600; color: var(--slate); transition: all .15s var(--ease);
}
.nav-links a:hover { background: var(--blue-bg); color: var(--blue); }
.nav-links a.here { background: var(--blue-bg); color: var(--blue); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.btn-ghost {
  padding: 8px 16px; border-radius: var(--r-sm); font-size: 0.875rem; font-weight: 600;
  color: var(--slate); border: 1.5px solid var(--border); background: white; transition: all .15s var(--ease);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-blue {
  padding: 8px 18px; border-radius: var(--r-sm); font-size: 0.875rem; font-weight: 700;
  background: var(--blue); color: white; box-shadow: var(--shadow-blue); border: none; transition: all .15s var(--ease);
}
.btn-blue:hover { background: var(--blue-d); transform: translateY(-1px); }
.nav-user {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 7px; border-radius: var(--r-full);
  border: 1.5px solid var(--border); background: white; cursor: pointer;
  transition: all .15s var(--ease); font-size: 0.875rem; font-weight: 600; color: var(--slate);
}
.nav-user:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }
.nav-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; color: white; font-family: var(--font-d); flex-shrink: 0;
}
.nav-drop {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); min-width: 185px; padding: 6px; overflow: hidden; z-index: 200;
}
.nav-drop.show { display: block; animation: fadeDown .15s ease; }
.nav-drop a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: var(--r-sm); font-size: 0.85rem; color: var(--slate); font-weight: 500; transition: background .1s; }
.nav-drop a:hover { background: var(--bg); color: var(--navy); }
.nav-drop a.danger { color: var(--red); }
.nav-drop a.danger:hover { background: var(--red-bg); }
.nav-drop-sep { height: 1px; background: var(--border-l); margin: 4px 0; }
.nav-burger { display: none; background: none; border: none; padding: 6px; }
.mob-nav { display: none; padding: 12px 20px 16px; background: white; border-bottom: 1px solid var(--border); flex-direction: column; gap: 4px; }
.mob-nav.open { display: flex; }
.mob-nav a { padding: 10px 12px; border-radius: var(--r-sm); font-weight: 600; font-size: 0.9rem; color: var(--slate); }
.mob-nav a:hover { background: var(--blue-bg); color: var(--blue); }
.mob-auth { display: flex; gap: 8px; padding-top: 10px; border-top: 1px solid var(--border-l); margin-top: 4px; }

/* ── BUTONLAR ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--r-sm); font-family: inherit; font-size: 0.875rem;
  font-weight: 700; cursor: pointer; border: none; transition: all .15s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--blue); color: white; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(30,94,255,.35); }
.btn-secondary { background: var(--blue-bg); color: var(--blue); border: 1.5px solid var(--blue-mid); }
.btn-secondary:hover { background: var(--blue-mid); }
.btn-outline { background: white; color: var(--slate); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-danger { background: var(--red-bg); color: var(--red); border: 1.5px solid #FCA5A5; }
.btn-success { background: var(--green-bg); color: var(--green); border: 1.5px solid #6EE7B7; }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-lg { padding: 13px 28px; font-size: 0.95rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: .5; pointer-events: none; }

/* ── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: var(--r-full); font-size: 0.72rem; font-weight: 700;
}
.badge-blue   { background: var(--blue-bg); color: var(--blue); }
.badge-green  { background: var(--green-bg); color: #065F46; }
.badge-red    { background: var(--red-bg); color: #991B1B; }
.badge-amber  { background: var(--amber-bg); color: #92400E; }
.badge-gray   { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

/* ── KARTLAR ────────────────────────────────────────────────── */
.card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-xs); }
.card-lift { transition: all .2s var(--ease); }
.card-lift:hover { box-shadow: var(--shadow-lg); border-color: #C7D9FF; transform: translateY(-3px); }

/* ── FORM ───────────────────────────────────────────────────── */
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.fg label .req { color: var(--red); margin-left: 2px; }
.fi, .fs, .fta {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-b); font-size: 0.9rem; color: var(--navy); background: white;
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.fi:focus, .fs:focus, .fta:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,94,255,.12); }
.fi::placeholder, .fta::placeholder { color: var(--muted); }
.fs { cursor: pointer; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238B9AB1' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.fta { min-height: 100px; resize: vertical; line-height: 1.6; }
.fhint { font-size: 0.77rem; color: var(--muted); margin-top: 5px; }
.ferr  { font-size: 0.77rem; color: var(--red); margin-top: 5px; display: none; }
.f2    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f3    { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.check-row { display: flex; align-items: flex-start; gap: 10px; }
.check-row input[type=checkbox] { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.check-row label { font-size: 0.86rem; color: var(--body); cursor: pointer; line-height: 1.55; }
.alert-err { background: var(--red-bg); border: 1px solid #FCA5A5; border-radius: var(--r-sm); padding: 10px 14px; font-size: 0.84rem; color: #991B1B; margin-bottom: 14px; display: none; }
.alert-ok  { background: var(--green-bg); border: 1px solid #6EE7B7; border-radius: var(--r-sm); padding: 10px 14px; font-size: 0.84rem; color: #065F46; margin-bottom: 14px; display: none; }

/* ── MODAL ──────────────────────────────────────────────────── */
.overlay { display: none; position: fixed; inset: 0; background: rgba(10,22,40,.55); backdrop-filter: blur(6px); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.overlay.open { display: flex; animation: fadeIn .2s ease; }
.modal { background: white; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; animation: slideUp .25s ease; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px 0; }
.modal-title { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.modal-x { width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--bg); color: var(--muted); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.modal-x:hover { background: var(--border); color: var(--navy); }
.modal-body { padding: 20px 28px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 12px 28px 24px; border-top: 1px solid var(--border-l); }

/* ── TABS ───────────────────────────────────────────────────── */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab { padding: 10px 18px; font-size: 0.875rem; font-weight: 700; color: var(--muted); cursor: pointer; border: none; background: none; font-family: inherit; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .15s; }
.tab:hover { color: var(--navy); }
.tab.on { color: var(--blue); border-bottom-color: var(--blue); }

/* ── TOAST ──────────────────────────────────────────────────── */
#toast { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  border-radius: var(--r-md); font-size: 0.875rem; font-weight: 600; box-shadow: var(--shadow-xl);
  animation: slideIn .3s ease; pointer-events: all; max-width: 320px; color: white;
}
.toast.ok  { background: var(--green); }
.toast.err { background: var(--red); }
.toast.inf { background: var(--blue); }
@keyframes slideIn { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0); } }

/* ── EMPTY STATE ────────────────────────────────────────────── */
.empty { text-align: center; padding: 60px 24px; }
.empty .ei { font-size: 3rem; margin-bottom: 14px; opacity: .5; }
.empty h3 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.empty p  { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--navy); color: #94A3B8; padding: 56px 0 28px; margin-top: 80px; }
.footer-grid { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-d); font-size: 1.3rem; font-weight: 900; color: white; margin-bottom: 10px; }
.footer-logo span { color: var(--blue-l); }
.footer-desc { font-size: 0.86rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-d); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #CBD5E1; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.86rem; color: #94A3B8; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding: 20px 24px 0; border-top: 1px solid #1E3A5F; display: flex; justify-content: space-between; font-size: 0.79rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--blue-l); }

/* ── SEKSİYON ───────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-eye { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-bg); color: var(--blue); padding: 5px 12px; border-radius: var(--r-full); font-size: 0.78rem; font-weight: 700; margin-bottom: 14px; }
.section-title { font-family: var(--font-d); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 10px; }
.section-sub { font-size: 1rem; color: var(--body); max-width: 540px; line-height: 1.7; }

/* ── ANİMASYONLAR ───────────────────────────────────────────── */
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ── PANEL ──────────────────────────────────────────────────── */
.panel-wrap { max-width: 1100px; margin: 40px auto; padding: 0 24px; display: grid; grid-template-columns: 230px 1fr; gap: 24px; min-height: 75vh; }
.panel-side { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px; height: fit-content; position: sticky; top: 80px; }
.panel-av { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--blue-l)); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 1.35rem; font-weight: 800; color: white; }
.panel-nav a, .panel-nav button {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600; color: var(--body); cursor: pointer; border: none; background: none;
  width: 100%; text-align: left; font-family: inherit; transition: all .15s; text-decoration: none;
}
.panel-nav a:hover, .panel-nav button:hover { background: var(--bg); color: var(--navy); }
.panel-nav a.on, .panel-nav button.on { background: var(--blue-bg); color: var(--blue); }
.panel-nav .danger { color: var(--red); }
.panel-nav .danger:hover { background: var(--red-bg); }
.panel-sep { height: 1px; background: var(--border-l); margin: 8px 0; }
.pnav-badge { margin-left: auto; background: var(--red); color: white; font-size: 0.63rem; padding: 1px 6px; border-radius: 999px; font-weight: 800; }
.pane { display: none; }
.pane.on { display: block; animation: fadeIn .2s; }
.pane-title { font-family: var(--font-d); font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 5px; }
.pane-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }

/* ── STAT GRID ──────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; }
.stat-val { font-family: var(--font-d); font-size: 1.85rem; font-weight: 900; color: var(--blue); }
.stat-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* ── USTA KARTI ─────────────────────────────────────────────── */
.usta-card { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: all .2s var(--ease); }
.usta-card:hover { box-shadow: var(--shadow-lg); border-color: #C7D9FF; transform: translateY(-4px); }
.usta-av { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--blue-l)); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 1.15rem; font-weight: 800; color: white; flex-shrink: 0; }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 10px; background: #22C55E; color: white; border-radius: var(--r-sm); font-size: 0.86rem; font-weight: 700; transition: all .15s; }
.wa-btn:hover { background: #16A34A; transform: translateY(-1px); }

/* ── ADMİN ──────────────────────────────────────────────────── */
.adm body { background: #0D1117; }
.adm-wrap { display: flex; min-height: 100vh; }
.adm-side { width: 230px; background: #161B22; border-right: 1px solid #21262D; position: fixed; top:0; left:0; bottom:0; overflow-y: auto; display: flex; flex-direction: column; }
.adm-logo { padding: 18px 16px; border-bottom: 1px solid #21262D; font-family: var(--font-d); font-weight: 900; font-size: 1rem; color: var(--blue-l); }
.adm-logo .v { font-size: 0.62rem; color: #484F58; margin-top: 2px; font-weight: 400; }
.adm-nav-sec { padding: 10px 10px 3px; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #484F58; }
.adm-nav-btn { display: flex; align-items: center; gap: 9px; padding: 8px 12px; color: #8B949E; cursor: pointer; border-radius: 6px; margin: 1px 6px; font-size: 0.84rem; border: none; background: none; width: calc(100% - 12px); text-align: left; font-family: inherit; transition: all .15s; }
.adm-nav-btn:hover { background: rgba(255,255,255,.04); color: #E6EDF3; }
.adm-nav-btn.on { background: rgba(30,94,255,.15); color: var(--blue-l); }
.adm-nbadge { margin-left: auto; background: var(--red); color: white; font-size: 0.62rem; padding: 1px 6px; border-radius: 999px; font-weight: 800; }
.adm-nbadge.g { background: var(--green); }
.adm-footer { margin-top: auto; padding: 12px 14px; border-top: 1px solid #21262D; }
.adm-main { margin-left: 230px; flex: 1; display: flex; flex-direction: column; background: #0D1117; min-height: 100vh; }
.adm-topbar { background: #161B22; border-bottom: 1px solid #21262D; padding: 0 24px; height: 52px; display: flex; align-items: center; justify-content: space-between; position: sticky; top:0; z-index: 40; }
.adm-topbar-title { font-family: var(--font-d); font-weight: 800; font-size: 0.95rem; color: #E6EDF3; }
.adm-content { padding: 24px; }
.adm-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 24px; }
.adm-stat { background: #161B22; border: 1px solid #21262D; border-radius: 12px; padding: 20px; }
.adm-stat-val { font-family: var(--font-d); font-size: 1.85rem; font-weight: 900; color: var(--blue-l); }
.adm-stat-lbl { font-size: 0.78rem; color: #484F58; margin-top: 4px; }
.adm-box { background: #161B22; border: 1px solid #21262D; border-radius: 12px; overflow: hidden; margin-bottom: 18px; }
.adm-box-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid #21262D; }
.adm-box-title { font-family: var(--font-d); font-weight: 800; font-size: 0.9rem; color: #E6EDF3; }
.adm-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.adm-table { width: 100%; border-collapse: collapse; }
.adm-table th { background: rgba(255,255,255,.02); color: #484F58; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 9px 16px; text-align: left; }
.adm-table td { padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,.03); font-size: 0.83rem; color: #8B949E; vertical-align: middle; }
.adm-table tr:last-child td { border-bottom: none; }
.adm-table tr:hover td { background: rgba(255,255,255,.015); }
.adm-table td.w { color: #E6EDF3; }
.abt { display: inline-block; font-size: 0.67rem; padding: 2px 8px; border-radius: 999px; font-weight: 700; }
.abt-g { background: rgba(16,185,129,.15); color: #6EE7B7; }
.abt-r { background: rgba(239,68,68,.15); color: #FCA5A5; }
.abt-y { background: rgba(245,158,11,.15); color: #FCD34D; }
.abt-b { background: rgba(30,94,255,.15); color: #93C5FD; }
.abt-k { background: rgba(255,255,255,.05); color: #484F58; }
.adm-act { background: none; border: none; cursor: pointer; padding: 3px 8px; border-radius: 5px; font-size: 0.74rem; font-family: inherit; transition: all .15s; }
.adm-act.e { color: #93C5FD; } .adm-act.e:hover { background: rgba(30,94,255,.1); }
.adm-act.d { color: #FCA5A5; } .adm-act.d:hover { background: rgba(239,68,68,.1); }
.adm-act.a { color: #6EE7B7; } .adm-act.a:hover { background: rgba(16,185,129,.1); }
.adm-act.v { color: #484F58; } .adm-act.v:hover { color: #E6EDF3; }
.adm-fbar { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.adm-fi { background: #21262D; border: 1px solid #30363D; color: #E6EDF3; padding: 8px 12px; border-radius: 6px; font-family: inherit; font-size: 0.84rem; outline: none; }
.adm-fi:focus { border-color: var(--blue); }
.adm-fi::placeholder { color: #484F58; }
.adm-fs { background: #21262D; border: 1px solid #30363D; color: #8B949E; padding: 8px 12px; border-radius: 6px; font-family: inherit; font-size: 0.84rem; outline: none; cursor: pointer; }
.adm-fta { background: #21262D; border: 1px solid #30363D; color: #E6EDF3; padding: 9px 12px; border-radius: 6px; font-family: inherit; font-size: 0.84rem; outline: none; min-height: 80px; resize: vertical; width: 100%; }
.adm-fg { margin-bottom: 13px; }
.adm-fg label { display: block; font-size: 0.77rem; color: #8B949E; margin-bottom: 5px; }
.adm-f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.adm-btn-g { background: #21262D; color: #8B949E; border: 1px solid #30363D; padding: 8px 18px; border-radius: 6px; cursor: pointer; font-family: inherit; font-size: 0.84rem; font-weight: 600; }
.adm-btn-p { background: var(--blue); color: white; border: none; padding: 8px 18px; border-radius: 6px; cursor: pointer; font-family: inherit; font-size: 0.84rem; font-weight: 700; }
.adm-btn-p:hover { background: var(--blue-d); }
.adm-btn-d { background: rgba(239,68,68,.12); color: #FCA5A5; border: 1px solid rgba(239,68,68,.25); padding: 8px 18px; border-radius: 6px; cursor: pointer; font-family: inherit; font-size: 0.84rem; }
.adm-btn-s { background: rgba(16,185,129,.12); color: #6EE7B7; border: 1px solid rgba(16,185,129,.25); padding: 8px 18px; border-radius: 6px; cursor: pointer; font-family: inherit; font-size: 0.84rem; }
.adm-mf { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid #21262D; }
.adm-modal { background: #161B22; border: 1px solid #30363D; border-radius: 16px; padding: 28px; width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto; animation: slideUp .25s ease; }
.adm-mh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.adm-mt { font-family: var(--font-d); font-weight: 800; font-size: 1rem; color: #E6EDF3; }
.adm-mc { background: #21262D; border: none; color: #8B949E; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.adm-notif { position: fixed; top: 16px; right: 16px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.adm-notif-item { padding: 10px 18px; border-radius: 8px; font-size: 0.84rem; font-weight: 600; color: white; box-shadow: 0 4px 20px rgba(0,0,0,.5); animation: slideIn .3s ease; pointer-events: all; }
.adm-notif-item.s { background: var(--green); }
.adm-notif-item.e { background: var(--red); }
.adm-notif-item.i { background: var(--blue); }
.il-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; max-height: 280px; overflow-y: auto; padding: 2px; }
.il-item { background: #21262D; border: 1px solid #30363D; border-radius: 5px; padding: 5px 8px; display: flex; justify-content: space-between; font-size: 0.72rem; }
.il-item a { color: #8B949E; } .il-item a:hover { color: var(--blue-l); }

/* ── LOGIN SCREENS ──────────────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #EEF3FF 0%, #F8FAFD 60%, #E0EAFF 100%); padding: 40px 20px; }
.auth-card { background: white; border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-xl); padding: 44px; width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 30px; }
.auth-logo .logo { font-family: var(--font-d); font-size: 1.7rem; font-weight: 900; color: var(--navy); }
.auth-logo .logo span { color: var(--blue); }
.auth-logo .sub { font-size: 0.84rem; color: var(--muted); margin-top: 4px; }
.auth-title { font-family: var(--font-d); font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 5px; }
.auth-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 26px; line-height: 1.6; }
.auth-foot { text-align: center; font-size: 0.86rem; color: var(--muted); margin-top: 22px; }
.auth-foot a { color: var(--blue); font-weight: 700; }
.or-line { display: flex; align-items: center; gap: 12px; margin: 18px 0; font-size: 0.76rem; color: var(--muted); }
.or-line::before, .or-line::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .adm-stat-grid { grid-template-columns: 1fr 1fr; }
  .adm-g2 { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .f2, .f3 { grid-template-columns: 1fr; }
  .panel-wrap { grid-template-columns: 1fr; }
  .panel-side { position: static; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
}
