/* ============================================================================
 * DRW Scan — style.css
 * Tema gelap, mobile-first. Panggung kamera penuh + panel hasil di bawah.
 * ========================================================================== */

:root {
  --bg:        #0b1220;
  --panel:     #111a2e;
  --panel-2:   #16223c;
  --line:      #243049;
  --text:      #e8eef9;
  --muted:     #8aa0c2;
  --primary:   #2f7cf6;
  --primary-d: #1f63d6;
  --ok:        #22c55e;
  --new:       #facc15;
  --danger:    #ef4444;
  --radius:    16px;
  --safe-t:    env(safe-area-inset-top, 0px);
  --safe-b:    env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0; height: 100%;
  background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overscroll-behavior: none;
}

#app {
  display: flex; flex-direction: column;
  height: 100dvh; max-width: 560px; margin: 0 auto;
  background: var(--bg);
}

/* ---------------------------- PANGGUNG KAMERA --------------------------- */
.stage {
  position: relative; flex: 1 1 auto; min-height: 0;
  background: #000; overflow: hidden;
}
#video, .overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
#video { object-fit: cover; }
/* overlay memakai object-fit sama dgn video agar koordinat kotak sejajar */
.overlay { object-fit: cover; pointer-events: none; }

/* Bingkai pemindai */
.reticle {
  position: absolute; left: 50%; top: 46%;
  width: min(72vw, 320px); aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.reticle.wide { aspect-ratio: 4 / 3; width: min(82vw, 380px); }
.corner {
  position: absolute; width: 28px; height: 28px;
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 4px;
}
.corner.tl { left: 0; top: 0; border-right: 0; border-bottom: 0; }
.corner.tr { right: 0; top: 0; border-left: 0; border-bottom: 0; }
.corner.bl { left: 0; bottom: 0; border-right: 0; border-top: 0; }
.corner.br { right: 0; bottom: 0; border-left: 0; border-top: 0; }
.laser {
  position: absolute; left: 6%; right: 6%; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 12px 2px rgba(47,124,246,.7);
  opacity: 0; border-radius: 2px;
}
.scanning .laser { animation: sweep 2.1s ease-in-out infinite; }
@keyframes sweep {
  0%   { top: 4%;  opacity: .2; }
  50%  { top: 94%; opacity: 1; }
  100% { top: 4%;  opacity: .2; }
}

/* Status kecil — overlay tengah-atas (indikator scan + engine) */
.statusbar {
  position: absolute; top: calc(8px + var(--safe-t)); left: 50%;
  transform: translateX(-50%); z-index: 6;
  display: flex; align-items: center; gap: 7px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--muted); box-shadow: 0 0 0 0 rgba(34,197,94,.5);
}
.dot.live { background: var(--ok); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.engine { font-size: 10px; font-weight: 700; letter-spacing: .3px; color: var(--muted); }
.engine:empty { display: none; }

/* Penghitung live (mode multi) */
.live-count {
  position: absolute; top: calc(56px + var(--safe-t)); left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: baseline; gap: 6px;
  background: rgba(0,0,0,.5); padding: 6px 14px; border-radius: 999px;
  z-index: 5; backdrop-filter: blur(4px);
}
.live-count .num { font-size: 20px; font-weight: 800; color: var(--new); }
.live-count .lbl { font-size: 12px; color: var(--muted); }

/* Gerbang "aktifkan kamera" / pesan error */
.gate {
  position: absolute; inset: 0; z-index: 10;
  display: grid; place-items: center; padding: 24px;
  background: radial-gradient(120% 80% at 50% 30%, #16223c, #0b1220);
}
.gate[hidden] { display: none; }
.gate-card { text-align: center; max-width: 340px; }
.gate-ico { color: var(--primary); }
.gate-title { margin: 10px 0 4px; font-size: 26px; }
.gate-sub { margin: 0 0 22px; color: var(--muted); line-height: 1.5; font-size: 14px; }
.gate-ver { margin-top: 16px; color: var(--muted); font-size: 12px; letter-spacing: .3px; }

/* --------------------- DOK KONTROL BAWAH (overlay kamera) -------------- */
.dock {
  position: absolute; left: 0; right: 0; bottom: calc(12px + var(--safe-b));
  z-index: 6; display: flex; flex-direction: column; gap: 10px;
  padding: 0 14px; pointer-events: none;   /* area kosong tembus ke kamera */
}
.dock > * { pointer-events: auto; }

/* ----- Baris utilitas (senter • pengaturan • tutup) ----- */
.cam-utils {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  margin-bottom: 2px;
}
.util-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16); background: rgba(0,0,0,.42);
  color: #fff; display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px); transition: transform .08s, background .15s, border-color .15s;
}
.util-btn:active { transform: scale(.9); }
.util-btn.on { background: var(--primary); border-color: var(--primary); }
.util-btn.danger { color: #fca5a5; border-color: rgba(239,68,68,.42); }

/* ----- Baris kontrol utama: mode | shutter | flip ----- */
.cam-bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
  padding: 2px 2px 4px;
}

/* Toggle mode (kiri bawah) — pil segmen kompak */
.seg {
  justify-self: start;
  display: inline-flex; gap: 3px;
  background: rgba(8,14,28,.55); border: 1px solid rgba(255,255,255,.14);
  padding: 4px; border-radius: 13px; backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.seg-btn {
  border: 0; background: transparent; color: #dbe6fb;
  padding: 8px 11px; border-radius: 9px; font-weight: 700; font-size: 12px;
  letter-spacing: .2px; cursor: pointer; white-space: nowrap;
  transition: background .15s, color .15s;
}
.seg-btn.active { background: #fff; color: #0b1220; box-shadow: 0 2px 8px rgba(0,0,0,.25); }

/* Shutter bulat di tengah — gaya tombol kamera */
.shutter {
  justify-self: center; position: relative;
  width: 76px; height: 76px; border: 0; padding: 0; background: transparent;
  display: grid; place-items: center; cursor: pointer;
}
.shutter:disabled { opacity: .45; cursor: not-allowed; }
.shutter-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.92);
  box-shadow: 0 6px 20px rgba(0,0,0,.45); transition: border-color .2s;
}
.shutter-core {
  width: 60px; height: 60px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: width .18s ease, height .18s ease, border-radius .18s ease, background .18s ease, transform .1s ease;
}
.shutter:not(:disabled):active .shutter-core { transform: scale(.9); }
.shutter.scanning .shutter-ring { border-color: rgba(239,68,68,.95); animation: shutterPulse 1.8s ease-in-out infinite; }
.shutter.scanning .shutter-core { width: 30px; height: 30px; border-radius: 10px; background: var(--danger); }
@keyframes shutterPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.4), 0 6px 20px rgba(0,0,0,.45); }
  50%     { box-shadow: 0 0 0 9px rgba(239,68,68,0), 0 6px 20px rgba(0,0,0,.45); }
}

/* Tombol bulat kanan bawah (tutup kamera) */
.flip-btn {
  justify-self: end;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.42);
  color: #fff; display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px); transition: transform .15s, background .15s;
}
.flip-btn:active { transform: scale(.9); }
.flip-btn.danger {
  color: #fca5a5; border-color: rgba(239,68,68,.42); background: rgba(239,68,68,.16);
}

/* Lapisan teks terbang — umpan balik tiap scan, tanpa menutup kamera */
.fly-layer { position: absolute; inset: 0; z-index: 7; pointer-events: none; overflow: hidden; }
.fly-item {
  position: absolute; left: 50%; top: 56%;
  background: rgba(34,197,94,.92); color: #04210f;
  font: 800 14px/1 ui-monospace, Menlo, monospace; letter-spacing: .2px;
  padding: 8px 14px; border-radius: 999px; white-space: nowrap;
  max-width: 78%; overflow: hidden; text-overflow: ellipsis;
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
  animation: flyUp 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes flyUp {
  0%   { opacity: 0; transform: translate(calc(-50% + var(--dx,0px)), 26px) scale(.85); }
  18%  { opacity: 1; transform: translate(calc(-50% + var(--dx,0px)), 0)    scale(1);   }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx,0px)), -120px) scale(1); }
}

/* Tombol */
.btn {
  border: 0; border-radius: 12px; cursor: pointer;
  font-weight: 700; font-size: 15px; padding: 12px 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .08s, background .15s, opacity .15s;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); }
.btn-ghost {
  background: var(--panel-2); color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost.danger { color: var(--danger); }
.btn-sm { padding: 7px 10px; font-size: 12.5px; border-radius: 9px; }
.btn-lg { padding: 14px 22px; font-size: 16px; }

/* Hasil — kartu overlay melayang (1 shoot & multi) */
.single-result, .multi-result {
  background: rgba(12,20,36,.82); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 14px;
  backdrop-filter: blur(14px); box-shadow: 0 14px 34px rgba(0,0,0,.5);
}
.single-result { animation: pop .25s ease; }
.multi-result { max-height: 42dvh; overflow-y: auto; }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sr-time { color: var(--muted); font-size: 12px; }
.sr-value {
  font-size: 16px; word-break: break-all; line-height: 1.45;
  background: #0c1424; border: 1px solid var(--line);
  padding: 12px; border-radius: 10px; margin-bottom: 12px;
  user-select: all; -webkit-user-select: all;
}
.sr-actions { display: flex; gap: 8px; }
.sr-actions .btn { flex: 1; }

/* Detail order (hasil scan "trx…") — dipakai kartu 1-shoot (#srOrder) & lembar multi (#orderSheet) */
.sr-order { margin: 0 0 12px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 10px; }
.sr-order[hidden] { display: none; }
.ord-buyid { font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--muted); word-break: break-all; margin-bottom: 10px; }
/* Box ID menonjol (background beda + font besar) + tombol salin */
.ord-boxid { display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  background: rgba(96,165,250,.16); border: 1px solid rgba(96,165,250,.45); border-radius: 10px; padding: 8px 12px; }
.ord-boxid-val { flex: 1; font-family: ui-monospace, Menlo, monospace; font-size: 16px; font-weight: 800;
  color: #bfe0ff; letter-spacing: .3px; word-break: break-all; }
.ord-boxid-copy { flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px; background: rgba(255,255,255,.06); color: #bfe0ff; display: grid; place-items: center; cursor: pointer; }
.ord-boxid-copy:active { transform: scale(.94); }
.ord-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.ord-head strong { font-size: 15px; }
.ord-pos { font-size: 11px; color: var(--muted); }
.ord-totals { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.ord-legend { font-size: 10px; color: #64748b; margin: 6px 0 4px; }
.ord-kurang { color: #fca5a5; font-weight: 700; }
.ord-prods { list-style: none; margin: 0; padding: 0; max-height: 34dvh; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px; }
.ord-prods li { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 7px 10px; }
.op-name { font-size: 12.5px; line-height: 1.3; min-width: 0; }
.op-q { font-size: 12px; color: #cbd5e1; font-family: ui-monospace, Menlo, monospace; white-space: nowrap; flex: 0 0 auto; }
.ord-msg { color: var(--muted); font-size: 12.5px; padding: 6px 0; }
.ord-msg.err { color: #fca5a5; }
#orderSheet .ord-prods { max-height: 52dvh; }   /* lembar: ruang lebih untuk daftar produk */
/* Detail box collapsible: toggle panah, default hide (lihat boxDetailHtml). */
.bx-detail { margin: 0 0 12px; }
.bx-detail > summary { list-style: none; cursor: pointer; user-select: none; display: flex;
  align-items: center; gap: 7px; font-size: 12.5px; color: #93a4c4; padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.04); }
.bx-detail > summary::-webkit-details-marker { display: none; }
.bx-detail > summary::before { content: "▸"; font-size: 11px; transition: transform .15s; }
.bx-detail[open] > summary { margin-bottom: 8px; }
.bx-detail[open] > summary::before { transform: rotate(90deg); }
.bx-detail > summary:hover { background: rgba(255,255,255,.07); color: #cbd5e1; }

/* Item daftar multi — badge per jenis (order/box/item) + tombol aksi */
.badge.sm.order { background: rgba(124,58,237,.28); color: #d6bcff; border-color: rgba(124,58,237,.5); }
.badge.sm.box  { background: rgba(245,158,11,.22); color: #fcd34d; border-color: rgba(245,158,11,.45); }
.badge.sm.item { background: rgba(52,211,153,.18); color: #86efac; border-color: rgba(52,211,153,.42); }
.mi-act {
  flex: 0 0 auto; border: 1px solid var(--line); background: var(--panel-2); color: var(--text);
  font-size: 12px; font-weight: 700; padding: 8px 11px; border-radius: 9px; cursor: pointer;
  white-space: nowrap; transition: transform .08s;
}
.mi-act:active { transform: scale(.95); }
.mi-act.order { background: rgba(124,58,237,.25); color: #d6bcff; border-color: rgba(124,58,237,.5); }
.mi-act.box   { background: rgba(245,158,11,.2);  color: #fcd34d; border-color: rgba(245,158,11,.45); }

.badge {
  font-size: 11px; font-weight: 800; letter-spacing: .4px;
  color: #cfe0ff; background: rgba(47,124,246,.18);
  border: 1px solid rgba(47,124,246,.4);
  padding: 3px 9px; border-radius: 999px; text-transform: uppercase;
}

/* Hasil multi */
.mr-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap;
}
.mr-tools { display: flex; gap: 6px; flex-wrap: wrap; }
.mr-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mr-empty { color: var(--muted); font-size: 13px; text-align: center; padding: 14px 0; }
.mr-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 10px 12px;
  animation: pop .2s ease;
}
.mr-item.fresh { border-color: var(--new); box-shadow: 0 0 0 1px rgba(250,204,21,.35); }
.mr-item .mi-main { flex: 1; min-width: 0; }
.mr-item .mi-val { font-size: 14px; word-break: break-all; line-height: 1.35; }
.mr-item .mi-sub { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.mr-item .mi-time { color: var(--muted); font-size: 11px; }
.mr-item .mi-copy {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px;
  background: #0c1424; border: 1px solid var(--line); color: var(--text);
  display: grid; place-items: center; cursor: pointer;
}
.badge.sm { font-size: 9.5px; padding: 2px 6px; }

/* ----------------------------- LEMBAR ---------------------------------- */
.sheet { position: fixed; inset: 0; z-index: 50; }
.sheet[hidden] { display: none; }
.sheet-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.sheet-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-width: 560px; margin: 0 auto;
  max-height: 88vh; overflow-y: auto;          /* konten panjang (detail box + stok) → scroll, tak terpotong */
  background: var(--panel); border-radius: 20px 20px 0 0;
  border-top: 1px solid var(--line);
  padding: 10px 18px calc(20px + var(--safe-b));
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.sheet-handle { width: 44px; height: 5px; border-radius: 999px; background: var(--line); margin: 4px auto 12px; }
.sheet h2 { margin: 0 0 12px; font-size: 18px; }
.sheet-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border: 0; border-radius: 10px; cursor: pointer;
  background: var(--panel-2); color: var(--text); font-size: 22px; line-height: 1;
  display: grid; place-items: center;
}
.sheet-close:active { transform: scale(.95); }
.sheet .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.sheet .row span { flex: 1; }
.sheet input[type=checkbox] { width: 44px; height: 26px; appearance: none; background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px; position: relative; cursor: pointer; transition: background .2s; }
.sheet input[type=checkbox]::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--muted); transition: transform .2s, background .2s; }
.sheet input[type=checkbox]:checked { background: var(--primary); }
.sheet input[type=checkbox]:checked::after { transform: translateX(18px); background: #fff; }
.sheet-note { color: var(--muted); font-size: 12px; margin: 14px 0; }
.sheet .btn { width: 100%; margin-top: 6px; }

/* ----- Badge "Scanner HID aktif" — di samping indikator online (pojok kiri-atas) ----- */
.hid-badge {
  position: fixed; top: calc(env(safe-area-inset-top, 0px) + 8px); left: 90px; z-index: 60;
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;            /* padding & font samakan dgn pil Online */
  font: 700 11px system-ui, sans-serif; letter-spacing: .3px; color: #cfe4ff;
  background: rgba(12,28,52,.72); border: 1px solid rgba(59,158,255,.5);   /* tema biru (beda dari Online hijau) */
  backdrop-filter: blur(8px); transition: transform .15s, box-shadow .2s, background .2s;
}
.hid-badge[hidden] { display: none; }
.hid-badge svg { display: block; width: 12px; height: 12px; }
.hid-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: #3b9eff; animation: hidPulse 2.2s infinite;   /* dot BIRU, bukan hijau */
}
@keyframes hidPulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,158,255,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(59,158,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,158,255,0); }
}
.hid-badge.hit { transform: scale(1.08); background: rgba(59,158,255,.3); box-shadow: 0 0 0 3px rgba(59,158,255,.28); }

/* ----- Aksi gate: kamera / Bluetooth HID, tersusun rapi + pemisah "atau" ----- */
.gate-actions {
  display: flex; flex-direction: column; align-items: stretch;
  width: fit-content; max-width: 100%; margin: 4px auto 0;   /* selebar konten terpanjang, bukan full-card */
}
.gate-actions .btn { white-space: nowrap; }                   /* lebar ikut tombol terpanjang (HID) */
.gate-actions .btn-primary { box-shadow: 0 10px 26px -10px rgba(47,124,246,.65); }

.gate-or {
  display: flex; align-items: center; gap: 12px; margin: 14px 2px;
  color: var(--muted); font-size: 11px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
}
.gate-or span { opacity: .85; }
.gate-or::before, .gate-or::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* Tombol "Aktifkan Bluetooth HID" — warna beda dari tombol kamera (cyan → hijau saat aktif) */
.btn-hid {
  gap: 9px;
  background: linear-gradient(135deg, #2ec5dc, #0891b2);  /* OFF: gradient cyan */
  color: #04242c; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px -10px rgba(8,145,178,.65);
  transition: background .25s, color .25s, box-shadow .25s, filter .15s, transform .08s;
}
.btn-hid svg { display: block; }
.btn-hid:hover { filter: brightness(1.06); }
.btn-hid.on {                                            /* ON: gradient hijau (selaras badge) */
  background: linear-gradient(135deg, #36d684, #16a34a); color: #042a16;
  box-shadow: 0 10px 26px -10px rgba(34,197,94,.7), inset 0 0 0 1px rgba(255,255,255,.18);
}

/* ----------------------------- TOAST ----------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: calc(150px + var(--safe-b));
  transform: translateX(-50%) translateY(10px);
  background: #0c1424; color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  z-index: 60; opacity: 0; transition: opacity .2s, transform .2s;
  pointer-events: none; box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast[hidden] { display: none; }

@media (min-width: 561px) {
  #app { box-shadow: 0 0 60px rgba(0,0,0,.5); }
}
