/* ------------------------------------------------------------------
   BALL RUN — style.css
   Late-night arcade: black felt, warm wood, neon spill. All colour
   lives in the :root block so a reskin is a few lines.
------------------------------------------------------------------ */

:root {
  --bg0: #07080d;
  --bg1: #0e1119;
  --bg2: #161a26;
  --bg3: #1e2432;
  --line: rgba(255,255,255,0.08);
  --line2: rgba(255,255,255,0.14);

  --ink: #fff6e5;
  --ink-dim: rgba(255,246,229,0.55);
  --ink-faint: rgba(255,246,229,0.32);

  --gold: #ffd54a;
  --gold-lo: #c98f14;
  --green: #5ef2a0;
  --red: #ff6b7f;
  --purple: #c77dff;
  --blue: #6ec6ff;
  --wood: #d4832b;

  --shadow: 0 10px 30px rgba(0,0,0,0.55);
  --radius: 14px;
  --font: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0; height: 100%;
  background: var(--bg0);
  color: var(--ink);
  font-family: var(--font);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}
body::before {
  /* a slow neon wash so the page never feels flat */
  content: '';
  position: fixed; inset: -20%;
  background:
    radial-gradient(50% 40% at 20% 0%, rgba(255,213,74,0.10), transparent 70%),
    radial-gradient(45% 40% at 85% 15%, rgba(199,125,255,0.10), transparent 70%),
    radial-gradient(60% 50% at 50% 100%, rgba(94,242,160,0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#app {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  height: 100%;
}

/* ---------------- top bar ---------------- */
#topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: linear-gradient(180deg, rgba(30,36,50,0.95), rgba(14,17,25,0.95));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
  flex: 0 0 auto;
}
.brand {
  font-family: var(--display);
  font-size: 24px; font-weight: 900; letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255,213,74,0.45);
  margin-right: 8px; white-space: nowrap;
}
.brandThin { color: var(--ink); font-weight: 400; opacity: 0.8; }
.brandBug { display: inline-block; animation: skitter 5s ease-in-out infinite; }
@keyframes skitter {
  0%, 72%, 100% { transform: translateX(0) rotate(0); }
  80% { transform: translateX(6px) rotate(180deg); }
  88% { transform: translateX(-4px) rotate(320deg); }
  94% { transform: translateX(2px) rotate(360deg); }
}

.stat {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800; font-size: 17px;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .2s ease;
}
.stat .si { font-size: 15px; filter: saturate(1.2); }
.stat .unit { font-size: 12px; opacity: .55; font-weight: 600; }
.stat.bank { color: var(--gold); border-color: rgba(255,213,74,0.35); box-shadow: inset 0 0 18px rgba(255,213,74,0.08); }
.stat.debt { color: var(--red); border-color: rgba(255,107,127,0.35); }
.stat.chitin { color: var(--purple); border-color: rgba(199,125,255,0.35); }
.stat.farm { color: var(--green); font-size: 14px; }

.stat.pop { animation: statPop .32s cubic-bezier(.2,1.6,.4,1); }
@keyframes statPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.16); box-shadow: 0 0 26px rgba(255,213,74,0.7); }
  100% { transform: scale(1); }
}
.stat.pulse { animation: debtPulse .5s ease; }
@keyframes debtPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 0 22px rgba(255,60,90,0.6); }
}
.stat.debt.danger { animation: danger 1.1s ease-in-out infinite; }
@keyframes danger {
  0%,100% { box-shadow: 0 0 0 rgba(255,60,90,0); }
  50% { box-shadow: 0 0 22px rgba(255,60,90,0.75); }
}

.spacer { flex: 1; }
.speciesBadge {
  font-size: 13px; font-weight: 700; color: var(--ink-dim);
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg2); border: 1px solid var(--line);
}
#vol { width: 82px; accent-color: var(--gold); }
.iconBtn {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--bg3); color: var(--ink);
  border: 1px solid var(--line); cursor: pointer;
  font-size: 15px; font-weight: 800;
  transition: background .15s ease, transform .1s ease;
}
.iconBtn:hover { background: #2a3244; transform: translateY(-1px); }

/* ---------------- layout ---------------- */
main {
  flex: 1 1 auto; display: flex; min-height: 0;
}
#boardWrap {
  flex: 1 1 auto; display: flex; flex-direction: column;
  min-width: 0; min-height: 0; padding: 12px 12px 12px 14px; gap: 10px;
}
#boardArea {
  position: relative; flex: 1 1 auto; min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
#board { display: block; width: 100%; height: 100%; }

/* ---------------- banner ---------------- */
#banner {
  position: absolute; left: 50%; top: 40%;
  transform: translate(-50%, -50%) scale(0.6);
  text-align: center; pointer-events: none;
  opacity: 0;
}
#banner.show { animation: bannerIn 1.6s cubic-bezier(.15,1.5,.4,1) forwards; }
@keyframes bannerIn {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(0.3) rotate(-6deg); }
  14% { opacity: 1; transform: translate(-50%,-50%) scale(1.15) rotate(2deg); }
  24% { transform: translate(-50%,-50%) scale(1) rotate(0); }
  75% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-58%) scale(1.05); }
}
.bnText {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 92px); font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 4px 0 rgba(0,0,0,0.6), 0 0 40px currentColor;
}
.bnSub {
  font-size: clamp(18px, 2.4vw, 30px); font-weight: 900; color: var(--ink);
  text-shadow: 0 2px 8px #000;
}

#flashMsg {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%) translateY(8px);
  background: rgba(8,10,16,0.9);
  border: 1px solid var(--line2);
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  opacity: 0; transition: opacity .2s ease, transform .2s ease;
  pointer-events: none; white-space: nowrap;
}
#flashMsg.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------- bet bar ---------------- */
#betbar {
  flex: 0 0 auto;
  display: flex; align-items: stretch; gap: 14px;
  padding: 10px 14px;
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bbGroup { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.bbGroup.grow { flex: 1 1 auto; min-width: 0; }
.bbLabel {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 800;
}
.bbRow { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

#chips { display: flex; gap: 6px; }
.chipBtn {
  --chip: #fff;
  width: 50px; height: 50px; border-radius: 50%;
  border: 3px dashed color-mix(in srgb, var(--chip) 70%, #000);
  background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--chip) 90%, #fff), color-mix(in srgb, var(--chip) 55%, #000));
  color: #14161f; font-weight: 900; font-size: 13px;
  cursor: pointer; position: relative;
  box-shadow: 0 4px 0 rgba(0,0,0,0.45), inset 0 -3px 8px rgba(0,0,0,0.25);
  transition: transform .12s cubic-bezier(.2,1.5,.4,1), box-shadow .12s ease, filter .12s ease;
}
.chipBtn:hover { transform: translateY(-3px); }
.chipBtn.on {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 8px 0 rgba(0,0,0,0.45), 0 0 22px color-mix(in srgb, var(--chip) 70%, transparent);
  border-style: solid;
}
.chipBtn.poor { filter: grayscale(0.75) brightness(0.6); }

.readout {
  display: flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 10px; padding: 7px 12px;
  font-size: 16px; font-weight: 900;
}
.readout .lab {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink-faint);
}
.readout .dim { color: var(--ink-faint); font-weight: 700; font-size: 12px; }
.readout .gold { color: var(--gold); }
.readout .bad { color: var(--red); }

.smallBtn, .toggleBtn {
  padding: 8px 14px; border-radius: 10px;
  background: var(--bg3); color: var(--ink);
  border: 1px solid var(--line2); cursor: pointer;
  font-weight: 800; font-size: 13px;
  transition: background .14s ease, transform .1s ease, box-shadow .14s ease;
}
.smallBtn:hover, .toggleBtn:hover { background: #2c3446; transform: translateY(-1px); }
.smallBtn.danger { color: var(--red); border-color: rgba(255,107,127,0.4); }
.toggleBtn.on {
  background: rgba(94,242,160,0.16); color: var(--green);
  border-color: rgba(94,242,160,0.5);
  box-shadow: 0 0 14px rgba(94,242,160,0.25);
}

.runBtn {
  flex: 0 0 auto;
  min-width: 170px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 10px 26px;
  border: none; border-radius: 14px;
  background: linear-gradient(180deg, #2a3244, #1a2030);
  color: var(--ink-faint);
  cursor: not-allowed;
  font-family: var(--display);
  box-shadow: 0 6px 0 rgba(0,0,0,0.5);
  transition: transform .1s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}
.runMain { font-size: 30px; font-weight: 900; letter-spacing: 3px; line-height: 1; }
.runSub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: .6; font-family: var(--font); }
.runBtn.ready {
  background: linear-gradient(180deg, #3ee88a, #12a05a);
  color: #062916; cursor: pointer;
  box-shadow: 0 6px 0 #0a5c33, 0 0 34px rgba(62,232,138,0.45);
  animation: runPulse 1.9s ease-in-out infinite;
}
.runBtn.ready:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #0a5c33, 0 0 44px rgba(62,232,138,0.6); }
.runBtn.ready:active { transform: translateY(4px); box-shadow: 0 2px 0 #0a5c33; }
@keyframes runPulse {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

/* ---------------- side panel ---------------- */
#panel {
  flex: 0 0 396px;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22,26,38,0.96), rgba(10,12,18,0.96));
  min-height: 0;
}
#tabs { display: flex; flex: 0 0 auto; border-bottom: 1px solid var(--line); }
.tabBtn {
  flex: 1; padding: 12px 4px;
  background: transparent; border: none; border-bottom: 3px solid transparent;
  color: var(--ink-dim); font-weight: 800; font-size: 12px;
  cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: color .15s ease, background .15s ease;
}
.tabBtn .ti { font-size: 17px; }
.tabBtn:hover { color: var(--ink); background: rgba(255,255,255,0.03); }
.tabBtn.on {
  color: var(--gold); border-bottom-color: var(--gold);
  background: linear-gradient(180deg, rgba(255,213,74,0.10), transparent);
}
#tabContent { flex: 1 1 auto; overflow-y: auto; padding: 12px; min-height: 0; }
#tabContent::-webkit-scrollbar { width: 10px; }
#tabContent::-webkit-scrollbar-thumb { background: #2b3244; border-radius: 8px; }
#tabContent::-webkit-scrollbar-track { background: transparent; }

/* ---------------- shop ---------------- */
.catRow { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.catBtn {
  flex: 1 1 auto; padding: 8px 6px; border-radius: 10px;
  background: var(--bg2); border: 1px solid var(--line);
  color: var(--ink-dim); font-weight: 800; font-size: 11px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: all .14s ease;
}
.catBtn span { font-size: 14px; }
.catBtn:hover { color: var(--ink); border-color: var(--line2); }
.catBtn.on { background: rgba(255,213,74,0.14); color: var(--gold); border-color: rgba(255,213,74,0.45); }

.upList { display: flex; flex-direction: column; gap: 9px; }
.up {
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  border: 1px solid var(--line);
  border-radius: 12px; padding: 11px 12px;
  transition: border-color .16s ease, transform .12s ease, box-shadow .16s ease;
}
.up.afford { border-color: rgba(94,242,160,0.35); box-shadow: inset 0 0 22px rgba(94,242,160,0.05); }
.up.maxed { opacity: 0.62; }
.up.locked { opacity: 0.5; }
.up.bought { animation: bought .4s ease; }
@keyframes bought {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(94,242,160,0); }
  40% { transform: scale(1.03); box-shadow: 0 0 26px rgba(94,242,160,0.5); }
  100% { transform: scale(1); }
}
.upHead { display: flex; align-items: center; gap: 10px; }
.upIcon {
  width: 38px; height: 38px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
}
.upTitle { flex: 1 1 auto; min-width: 0; }
.upName { font-weight: 900; font-size: 14px; }
.upLvl { font-size: 11px; color: var(--ink-faint); font-weight: 800; letter-spacing: .6px; }
.upBuy {
  flex: 0 0 auto; padding: 9px 13px; border-radius: 10px;
  background: linear-gradient(180deg, #38455e, #232b3c);
  border: 1px solid var(--line2); color: var(--ink);
  font-weight: 900; font-size: 13px; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: all .14s ease;
}
.upBuy .cc { font-size: 11px; }
.upBuy:hover:not(:disabled) { background: linear-gradient(180deg, #4c8f63, #1e7a45); transform: translateY(-1px); }
.upBuy:disabled { opacity: .4; cursor: not-allowed; }
.up.afford .upBuy { border-color: rgba(94,242,160,0.5); color: var(--green); }
.upDesc { margin-top: 8px; font-size: 12px; line-height: 1.5; color: var(--ink-dim); }
.upDesc b { color: var(--ink); }
.upDesc .req { color: var(--red); }
.upBar { height: 3px; background: rgba(255,255,255,0.07); border-radius: 3px; margin-top: 9px; overflow: hidden; }
.upBarFill { height: 100%; background: linear-gradient(90deg, var(--gold-lo), var(--gold)); }

/* ---------------- Vinnie ---------------- */
.loanPane { display: flex; flex-direction: column; gap: 12px; }
.sharkHead { display: flex; align-items: center; gap: 12px; }
.sharkFace {
  font-size: 40px; filter: drop-shadow(0 0 14px rgba(255,107,127,0.5));
  animation: lurk 4s ease-in-out infinite;
}
@keyframes lurk { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px) rotate(-4deg); } }
.sharkName { font-family: var(--display); font-size: 21px; font-weight: 900; color: var(--red); }
.sharkSub { font-size: 11px; color: var(--ink-faint); letter-spacing: .4px; }

.debtMeter, .moneyBox, .moltBox, .statTable {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px;
}
.dmRow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-size: 13px; color: var(--ink-dim);
}
.dmRow b { color: var(--ink); font-size: 14px; }
.dmRow b.bad, .bad { color: var(--red); }
.dmRow b.good, .good { color: var(--green); }
.dmRow b.gold, .gold { color: var(--gold); }
.riskBar {
  height: 9px; border-radius: 6px; margin-top: 10px;
  background: rgba(0,0,0,0.5); overflow: hidden;
  border: 1px solid var(--line);
}
.riskFill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, #5ef2a0, #ffd54a 55%, #ff3b5c);
  transition: width .4s ease;
}
.riskLabel { text-align: center; font-size: 12px; margin-top: 7px; color: var(--ink-dim); }
.limpWarn {
  background: rgba(255,107,127,0.12); border: 1px solid rgba(255,107,127,0.4);
  color: var(--red); border-radius: 10px; padding: 9px 12px;
  font-size: 12px; font-weight: 700;
}
.mbTitle { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-faint); font-weight: 800; margin-bottom: 9px; }
.btnRow { display: flex; gap: 7px; flex-wrap: wrap; }
button.money {
  flex: 1 1 auto; padding: 10px 8px; border-radius: 10px;
  background: linear-gradient(180deg, #38455e, #232b3c);
  border: 1px solid var(--line2); color: var(--ink);
  font-weight: 900; font-size: 13px; cursor: pointer;
  transition: all .14s ease;
}
button.money:hover:not(:disabled) { transform: translateY(-1px); background: linear-gradient(180deg, #47587a, #2a3448); }
button.money:disabled { opacity: .35; cursor: not-allowed; }
button.money.good { color: var(--green); border-color: rgba(94,242,160,0.4); }
button.money.danger { color: var(--red); border-color: rgba(255,107,127,0.4); }
.fineprint { font-size: 11px; line-height: 1.6; color: var(--ink-faint); }

/* ---------------- molt ---------------- */
.moltPane { display: flex; flex-direction: column; gap: 12px; }
.moltTitle {
  font-family: var(--display); font-size: 17px; font-weight: 900;
  color: var(--gold); margin-top: 4px;
}
.moltBlurb { font-size: 12px; line-height: 1.6; color: var(--ink-dim); }
.bigBtn {
  padding: 15px; border-radius: 12px; border: none;
  font-family: var(--display); font-size: 19px; font-weight: 900; letter-spacing: 1px;
  cursor: pointer; color: #1a0a26;
  background: linear-gradient(180deg, #dba6ff, #9b4dff);
  box-shadow: 0 5px 0 #5f2a8f, 0 0 30px rgba(155,77,255,0.4);
  transition: transform .1s ease, box-shadow .15s ease;
}
.bigBtn:hover:not(:disabled) { transform: translateY(-2px); }
.bigBtn:active:not(:disabled) { transform: translateY(3px); box-shadow: 0 2px 0 #5f2a8f; }
.bigBtn:disabled {
  background: var(--bg3); color: var(--ink-faint);
  box-shadow: none; cursor: not-allowed;
}
.speciesList { display: flex; flex-direction: column; gap: 8px; }
.spCard {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px; cursor: pointer;
  transition: all .15s ease;
}
.spCard:hover { border-color: var(--line2); }
.spCard.on { border-color: rgba(94,242,160,0.6); background: rgba(94,242,160,0.08); }
.spCard.locked { opacity: .45; cursor: default; }
.spIcon { font-size: 27px; }
.spName { font-weight: 900; font-size: 14px; }
.spBlurb { font-size: 11.5px; color: var(--ink-dim); margin: 2px 0 4px; line-height: 1.4; }
.spStats { font-size: 10.5px; font-weight: 800; letter-spacing: .3px; }
.spStats span { margin-right: 6px; }
.kindTag {
  font-size: 9px; text-transform: uppercase; letter-spacing: .8px;
  padding: 2px 6px; border-radius: 999px; font-weight: 900;
  vertical-align: middle;
}
.kindTag.ball { background: rgba(110,198,255,0.18); color: var(--blue); }
.kindTag.bug { background: rgba(94,242,160,0.18); color: var(--green); }
.lockTag {
  font-size: 10px; padding: 2px 7px; border-radius: 999px;
  background: rgba(199,125,255,0.18); color: var(--purple); font-weight: 800;
}

/* ---------------- stats ---------------- */
.statsPane { display: flex; flex-direction: column; gap: 12px; }
.hist { display: flex; flex-direction: column; gap: 5px; }
.histRow { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; }
.hName { width: 26px; color: var(--ink-dim); }
.hBar { flex: 1; height: 12px; background: rgba(0,0,0,0.45); border-radius: 6px; overflow: hidden; }
.hBar i { display: block; height: 100%; border-radius: 6px; transition: width .4s ease; }
.hVal { width: 46px; text-align: right; color: var(--ink-dim); }
.achGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.ach {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 5px; text-align: center; opacity: .45;
}
.ach.got { opacity: 1; border-color: rgba(255,213,74,0.4); background: rgba(255,213,74,0.07); }
.aIcon { font-size: 20px; }
.aName { font-size: 10.5px; font-weight: 900; margin-top: 2px; }
.aDesc { font-size: 9.5px; color: var(--ink-faint); line-height: 1.3; margin-top: 2px; }

/* ---------------- toasts ---------------- */
#toasts {
  position: fixed; right: 16px; bottom: 16px;
  display: flex; flex-direction: column; gap: 9px;
  z-index: 50; pointer-events: none; max-width: 340px;
}
.toast {
  background: linear-gradient(180deg, rgba(30,36,50,0.98), rgba(14,17,25,0.98));
  border: 1px solid var(--line2); border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 11px 14px;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateX(40px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,1.4,.4,1);
}
.toast.in { opacity: 1; transform: translateX(0); }
.toast.good { border-left-color: var(--green); }
.toast.bad { border-left-color: var(--red); }
.toast.achieve { border-left-color: var(--purple); }
.tTitle { font-weight: 900; font-size: 14px; margin-bottom: 3px; }
.tBody { font-size: 12px; line-height: 1.55; color: var(--ink-dim); }
.tBody b { color: var(--ink); }

/* ---------------- responsive ---------------- */
@media (max-width: 1180px) {
  #panel { flex-basis: 330px; }
  .runBtn { min-width: 130px; }
}
@media (max-width: 900px) {
  main { flex-direction: column; overflow-y: auto; }
  #panel { flex: 1 1 auto; border-left: none; border-top: 1px solid var(--line); min-height: 420px; }
  #boardArea { min-height: 52vh; }
  .brand { font-size: 18px; }
  .stat { font-size: 15px; padding: 6px 11px; }
  #vol { display: none; }
}
