@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #F5A623;
  --primary-dark: #E8961A;
  --bg: #08080E;
  --bg-card: #10101A;
  --bg-input: #1A1A28;
  --sidebar-bg: #0D0D18;
  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);
  --text: #F0F0F8;
  --text-muted: rgba(240,240,248,0.45);
  --text-sub: rgba(240,240,248,0.7);
  --success: #22C55E;
  --danger: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 16px 48px rgba(0,0,0,0.5);
  --sidebar-w: 240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow: hidden; }
.hidden { display: none !important; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: var(--radius-sm); border: none; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.18s; gap: 6px; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #000; box-shadow: 0 3px 14px rgba(245,166,35,0.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn-outline { background: transparent; border: 1.5px solid var(--border-light); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: rgba(239,68,68,0.15); border: 1.5px solid rgba(239,68,68,0.4); color: var(--danger); }
.btn-danger:hover { background: rgba(239,68,68,0.25); }
.btn-success { background: linear-gradient(135deg, #22C55E, #16A34A); color: white; }
.btn-success:hover { transform: translateY(-1px); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }
.btn-full { width: 100%; }
.btn-warn { background: rgba(245,158,11,0.15); border: 1.5px solid rgba(245,158,11,0.4); color: var(--warning); }
.btn-warn:hover { background: rgba(245,158,11,0.25); }

/* ── Forms ───────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
input, select, textarea { width: 100%; padding: 10px 14px; background: var(--bg-input); border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
input:focus, select:focus { border-color: var(--primary); }
input::placeholder { color: var(--text-muted); }
select { appearance: none; cursor: pointer; }

/* ── Login ───────────────────────────────────────────────────────── */
.login-screen { position: fixed; inset: 0; background: radial-gradient(ellipse at top, #1a1a2e 0%, var(--bg) 60%); display: flex; align-items: center; justify-content: center; }
.login-box { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 20px; padding: 2.5rem; width: 100%; max-width: 380px; box-shadow: var(--shadow); text-align: center; }
.login-logo { font-size: 3.5rem; margin-bottom: 0.75rem; }
.login-box h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.25rem; }
.login-box > p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }
.login-note { color: var(--text-muted); font-size: 0.78rem; margin-top: 1rem; }

/* ── Admin Layout ────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: var(--sidebar-w) 1fr; height: 100vh; overflow: hidden; }

/* ── Sidebar ─────────────────────────────────────────────────────── */
.sidebar { background: var(--sidebar-bg); border-right: 1px solid var(--border); display: flex; flex-direction: column; overflow: hidden; }
.sidebar-logo { display: flex; align-items: center; gap: 10px; padding: 1.25rem 1.25rem; border-bottom: 1px solid var(--border); }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-size: 1.05rem; font-weight: 800; }
.logo-badge { background: rgba(245,166,35,0.15); color: var(--primary); border: 1px solid rgba(245,166,35,0.3); padding: 2px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.sidebar-nav { flex: 1; padding: 1rem 0.75rem; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--text-muted); text-decoration: none; font-weight: 500; cursor: pointer; border: none; background: none; font-family: inherit; font-size: 0.88rem; width: 100%; transition: all 0.18s; position: relative; }
.nav-item:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-item.active { background: rgba(245,166,35,0.1); color: var(--primary); font-weight: 600; }
.nav-icon { font-size: 1rem; flex-shrink: 0; }
.badge { margin-left: auto; background: var(--danger); color: white; font-size: 0.68rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; min-width: 18px; text-align: center; }
.live-dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: var(--danger); animation: pulse-live 2s ease infinite; }
.sidebar-footer { padding: 1rem 0.75rem; border-top: 1px solid var(--border); }
.admin-profile { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.admin-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #000; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.admin-name { font-weight: 600; font-size: 0.9rem; }
.admin-role { color: var(--text-muted); font-size: 0.72rem; }
.logout-btn { width: 100%; padding: 8px; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: var(--danger); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.18s; }
.logout-btn:hover { background: rgba(239,68,68,0.18); }

/* ── Main Content ────────────────────────────────────────────────── */
.main-content { display: flex; flex-direction: column; overflow: hidden; }
.top-bar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); background: var(--sidebar-bg); flex-shrink: 0; }
.topbar-left { display: flex; align-items: center; gap: 14px; }
.menu-toggle { background: none; border: none; color: var(--text); font-size: 1.3rem; cursor: pointer; }
.page-title { font-size: 1.15rem; font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-time { color: var(--text-muted); font-size: 0.88rem; font-variant-numeric: tabular-nums; }
.refresh-btn { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; padding: 4px; border-radius: 6px; transition: transform 0.5s; }
.refresh-btn:hover { transform: rotate(180deg); color: var(--primary); }

/* ── Pages ───────────────────────────────────────────────────────── */
.page { flex: 1; overflow-y: auto; padding: 1.5rem; display: none; }
.page.active { display: block; }

/* ── KPI Cards ───────────────────────────────────────────────────── */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 1.5rem; }
.kpi-card { background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; display: flex; align-items: center; gap: 14px; position: relative; overflow: hidden; transition: transform 0.2s; }
.kpi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent, var(--primary)); }
.kpi-card:hover { transform: translateY(-2px); }
.kpi-icon { font-size: 1.8rem; flex-shrink: 0; }
.kpi-info { flex: 1; }
.kpi-value { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.kpi-label { color: var(--text-muted); font-size: 0.78rem; margin-top: 4px; }
.kpi-trend { font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: 100px; background: rgba(255,255,255,0.06); color: var(--text-muted); white-space: nowrap; }
.kpi-trend.up { background: rgba(34,197,94,0.1); color: var(--success); }

/* ── Charts Row ──────────────────────────────────────────────────── */
.charts-row { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.chart-panel { background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; }
.chart-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.chart-panel-header h3 { font-size: 0.95rem; font-weight: 700; }
.chart-legend { color: var(--text-muted); font-size: 0.75rem; }
.revenue-chart { display: flex; align-items: flex-end; gap: 10px; height: 120px; }
.rev-bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rev-bar { width: 100%; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--primary), var(--primary-dark)); min-height: 4px; transition: height 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.rev-bar-label { font-size: 0.62rem; color: var(--text-muted); }
.rev-bar-val { font-size: 0.65rem; color: var(--primary); font-weight: 600; }

.quick-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1rem; }
.qs-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--bg-input); border-radius: var(--radius-sm); font-size: 0.85rem; }
.qs-row span { color: var(--text-muted); }
.qs-row strong { font-weight: 700; }

.alerts-section { margin-top: 1rem; }
.alert-header { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.alert-item { padding: 8px 12px; border-radius: var(--radius-sm); font-size: 0.82rem; margin-bottom: 5px; }
.alert-item.info { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); color: var(--info); }
.alert-item.warn { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: var(--warning); }
.alert-item.danger { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: var(--danger); }

/* ── Toolbar ─────────────────────────────────────────────────────── */
.page-toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; flex-wrap: wrap; }
.toolbar-left { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.search-input { max-width: 300px; padding: 9px 14px; }
.filter-select { max-width: 160px; padding: 9px 12px; }

/* ── Data Table ──────────────────────────────────────────────────── */
.data-table-wrap { background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead tr { border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.data-table th { padding: 12px 14px; text-align: left; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.data-table td { padding: 13px 14px; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr { transition: background 0.15s; }
.data-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.table-loader { padding: 2rem; text-align: center; color: var(--text-muted); }

/* ── Status Badges ───────────────────────────────────────────────── */
.status-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.badge-active { background: rgba(34,197,94,0.12); color: var(--success); border: 1px solid rgba(34,197,94,0.3); }
.badge-suspended { background: rgba(239,68,68,0.12); color: var(--danger); border: 1px solid rgba(239,68,68,0.3); }
.badge-pending { background: rgba(245,158,11,0.12); color: var(--warning); border: 1px solid rgba(245,158,11,0.3); }
.badge-completed { background: rgba(34,197,94,0.12); color: var(--success); border: 1px solid rgba(34,197,94,0.3); }
.badge-cancelled { background: rgba(239,68,68,0.12); color: var(--danger); border: 1px solid rgba(239,68,68,0.3); }
.badge-searching { background: rgba(59,130,246,0.12); color: var(--info); border: 1px solid rgba(59,130,246,0.3); }
.badge-in_progress { background: rgba(245,166,35,0.12); color: var(--primary); border: 1px solid rgba(245,166,35,0.3); }
.badge-driver { background: rgba(139,92,246,0.12); color: #8B5CF6; border: 1px solid rgba(139,92,246,0.3); }
.badge-passenger { background: rgba(236,72,153,0.12); color: #EC4899; border: 1px solid rgba(236,72,153,0.3); }

/* Table row actions */
.row-actions { display: flex; gap: 6px; }
.action-btn { padding: 5px 10px; border-radius: 7px; font-size: 0.75rem; font-weight: 600; border: none; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.action-view { background: rgba(59,130,246,0.12); color: var(--info); }
.action-view:hover { background: rgba(59,130,246,0.25); }
.action-suspend { background: rgba(245,158,11,0.12); color: var(--warning); }
.action-suspend:hover { background: rgba(245,158,11,0.25); }
.action-delete { background: rgba(239,68,68,0.12); color: var(--danger); }
.action-delete:hover { background: rgba(239,68,68,0.25); }
.action-approve { background: rgba(34,197,94,0.12); color: var(--success); }
.action-approve:hover { background: rgba(34,197,94,0.25); }
.action-reject { background: rgba(239,68,68,0.12); color: var(--danger); }
.action-reject:hover { background: rgba(239,68,68,0.25); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; padding: 1rem; }
.page-btn { padding: 6px 12px; border-radius: 7px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-muted); cursor: pointer; font-size: 0.82rem; font-family: inherit; transition: all 0.15s; }
.page-btn:hover, .page-btn.active { background: rgba(245,166,35,0.1); color: var(--primary); border-color: rgba(245,166,35,0.4); }

/* ── Driver Cards ────────────────────────────────────────────────── */
.tabs-row { display: flex; gap: 4px; margin-bottom: 1.25rem; background: var(--bg-card); padding: 4px; border-radius: var(--radius-sm); border: 1px solid var(--border); width: fit-content; }
.tab-btn { padding: 8px 16px; border: none; background: transparent; color: var(--text-muted); border-radius: 7px; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.tab-btn.active { background: rgba(245,166,35,0.12); color: var(--primary); }
.drivers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 12px; }
.driver-card { background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; }
.dc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 1rem; }
.dc-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #667eea, #764ba2); color: white; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dc-name { font-weight: 700; font-size: 0.95rem; }
.dc-sub { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
.dc-docs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.doc-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; padding: 7px 10px; background: var(--bg-input); border-radius: 8px; }
.doc-label { color: var(--text-muted); }
.doc-status { font-weight: 600; }
.doc-status.uploaded { color: var(--success); }
.doc-status.missing { color: var(--danger); }
.dc-actions { display: flex; gap: 8px; }
.dc-actions .btn { flex: 1; }

/* ── Pricing Cards ───────────────────────────────────────────────── */
.pricing-intro { margin-bottom: 1.5rem; }
.pricing-intro h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-intro p { color: var(--text-muted); font-size: 0.85rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.pricing-card { background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; }
.pc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem; }
.pc-icon { font-size: 2rem; }
.pc-title { font-size: 1.05rem; font-weight: 700; }
.pc-desc { color: var(--text-muted); font-size: 0.78rem; }
.pc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1rem; }
.pc-field label { display: block; font-size: 0.7rem; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.pc-field input { padding: 9px 12px; font-size: 0.88rem; }
.surge-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--bg-input); border-radius: var(--radius-sm); margin-bottom: 1rem; }
.surge-label { font-size: 0.85rem; font-weight: 600; }
.surge-sub { color: var(--text-muted); font-size: 0.75rem; margin-top: 2px; }
.surge-toggle { display: flex; align-items: center; gap: 8px; }
.toggle-inp { display: none; }
.toggle-sl { width: 44px; height: 24px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 24px; cursor: pointer; transition: 0.3s; position: relative; }
.toggle-sl::after { content: ''; position: absolute; width: 16px; height: 16px; background: var(--text-muted); border-radius: 50%; top: 3px; left: 3px; transition: 0.3s; }
.toggle-inp:checked + .toggle-sl { background: rgba(245,166,35,0.15); border-color: var(--primary); }
.toggle-inp:checked + .toggle-sl::after { transform: translateX(20px); background: var(--primary); }
.surge-mult-field { display: none; }
.surge-mult-field.visible { display: block; }

/* ── Live Monitor ────────────────────────────────────────────────── */
.live-layout { display: grid; grid-template-columns: 300px 1fr; gap: 0; height: calc(100vh - 112px); }
.live-sidebar { overflow-y: auto; padding: 1rem; border-right: 1px solid var(--border); background: var(--bg-card); }
.live-sidebar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.live-sidebar-header h3 { font-size: 0.9rem; font-weight: 700; }
.live-count { background: rgba(245,166,35,0.15); color: var(--primary); border: 1px solid rgba(245,166,35,0.3); padding: 2px 10px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }
.live-count.online { background: rgba(34,197,94,0.15); color: var(--success); border-color: rgba(34,197,94,0.3); }
.live-trip-item, .live-driver-item { padding: 10px; background: var(--bg-input); border-radius: var(--radius-sm); margin-bottom: 6px; border: 1px solid var(--border); font-size: 0.8rem; }
.live-trip-id { font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.live-trip-route { color: var(--text-muted); }
.live-driver-name { font-weight: 600; }
.live-driver-type { color: var(--text-muted); font-size: 0.74rem; }
.live-empty { color: var(--text-muted); font-size: 0.82rem; text-align: center; padding: 1rem; }
.live-map-wrap { position: relative; }
.admin-map { width: 100%; height: 100%; }

/* ── Modals ──────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeIn 0.2s ease; }
.modal { background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border-light); width: 100%; max-width: 480px; box-shadow: var(--shadow); overflow: hidden; }
.modal-wide { max-width: 680px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1rem; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 1.25rem 1.5rem; max-height: 60vh; overflow-y: auto; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; gap: 8px; align-items: center; }
.user-detail-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.user-detail-row:last-child { border-bottom: none; }
.user-detail-row span { color: var(--text-muted); }
.user-detail-row strong { font-weight: 600; }
.doc-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 1rem 0; }
.doc-preview-item { background: var(--bg-input); border-radius: var(--radius-sm); padding: 12px; text-align: center; border: 1px solid var(--border); }
.doc-preview-icon { font-size: 1.5rem; margin-bottom: 6px; }
.doc-preview-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

/* ── Toast ───────────────────────────────────────────────────────── */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--bg-card); color: var(--text); padding: 12px 18px; border-radius: var(--radius-sm); border: 1px solid var(--border); z-index: 9999; font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow); animation: slideInRight 0.3s ease; max-width: 320px; }
.toast.success { border-color: var(--success); color: var(--success); }
.toast.error { border-color: var(--danger); color: var(--danger); }
.toast.warn { border-color: var(--warning); color: var(--warning); }

/* ── Responsive Sidebar ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .sidebar { position: fixed; top: 0; left: -100%; z-index: 900; height: 100vh; transition: left 0.3s ease; }
  .sidebar.open { left: 0; }
  .charts-row { grid-template-columns: 1fr; }
  .live-layout { grid-template-columns: 1fr; grid-template-rows: 300px 1fr; }
}

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse-live { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
