/* ============================================================
   IN-RACE HUD
   ------------------------------------------------------------
   Every cluster is a real panel with a coloured accent edge, a
   label and a value. Colour is assigned by meaning and never
   reused: gold is money, aqua is speed, pink is you, mint is
   "you are ahead", red is trouble.
   ============================================================ */

#s-race { display: none; }
#s-race.is-active { display: block; }

#gameCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hud { position: absolute; inset: 0; pointer-events: none; z-index: 20; }
.hud > * { pointer-events: auto; }
/* Full-bleed overlays inside the HUD must stay click-through, or
   they swallow every button underneath them. */
.hud .pickups,
.hud .combo,
.hud .perf { pointer-events: none; }

/* ---- Shared panel shell ------------------------------------ */

.gp {
  position: absolute;
  background:
    linear-gradient(155deg, rgba(46, 72, 150, 0.82), rgba(14, 27, 62, 0.92));
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 0 1px rgba(80, 112, 205, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    var(--lift-2);
  clip-path: polygon(
    14px 0%, 100% 0%, 100% calc(100% - 14px),
    calc(100% - 14px) 100%, 0% 100%, 0% 14px
  );
}
/* the coloured stripe that names the panel's job */
.gp::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 0;
  width: 4px;
  background: var(--gp-accent, var(--aqua));
  box-shadow: 0 0 20px var(--gp-accent, var(--aqua)),
              0 0 40px var(--gp-accent, var(--aqua));
}

.gp__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9FB2E6;
}

/* ============================================================
   OBJECTIVE — top left
   ============================================================ */

.obj {
  --gp-accent: var(--gold);
  top: 18px; left: 20px;
  width: 344px;
  padding: 15px 18px 14px 21px;
}

.obj__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.obj__sol {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--f-mono);
  font-weight: 700;
  line-height: 1;
}
.obj__sol b {
  font-size: 50px;
  letter-spacing: -0.035em;
  color: #FFD75E;
  text-shadow:
    0 0 6px rgba(255, 231, 154, 0.95),
    0 0 22px var(--gold-glow),
    0 0 52px rgba(255, 201, 60, 0.55);
}
.obj__sol span {
  font-size: 14px;
  color: #C9A44E;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.obj__sol.is-pop b { animation: sol-pop 340ms var(--ease-snap); }
@keyframes sol-pop {
  0%   { transform: scale(1); }
  32%  { transform: scale(1.22); color: var(--gold-hi); }
  100% { transform: scale(1); }
}

.obj__clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  padding-left: 13px;
  border-left: 1px solid rgba(50, 73, 154, 0.8);
}
.obj__clock b {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 14px rgba(168, 244, 255, 0.7), 0 0 32px var(--aqua-glow);
}

/* progress bar with a travelling shine */
.obj__track {
  position: relative;
  height: 9px;
  margin-top: 13px;
  background: rgba(5, 10, 26, 0.92);
  box-shadow: inset 0 0 0 1px rgba(80, 112, 205, 0.8);
  overflow: hidden;
}
.obj__fill {
  position: relative;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold), var(--pink));
  box-shadow: 0 0 22px var(--gold-glow), 0 0 46px rgba(255, 201, 60, 0.4);
  transition: width 320ms var(--ease-out);
}
.obj__fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  animation: bar-shine 2.4s linear infinite;
}
@keyframes bar-shine { from { transform: translateX(-100%); } to { transform: translateX(220%); } }

/* tick marks every 25 SOL, so progress is readable at a glance */
.obj__ticks {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}
.obj__ticks i {
  flex: 1;
  border-right: 1px solid rgba(7, 14, 34, 0.85);
}
.obj__ticks i:last-child { border-right: 0; }

.obj__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 9px;
}

.pace {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  color: #8FA2D8;
}
.pace.is-ahead  { color: #6BFFC9; background: rgba(70, 229, 176, 0.18); text-shadow: var(--neon-mint); }
.pace.is-behind { color: #FF8095; background: rgba(255, 92, 119, 0.2); text-shadow: 0 0 12px rgba(255,92,119,0.6); }

/* ============================================================
   BRAND — top centre
   ============================================================ */

.brandbar {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}
.brandbar__mark {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--txt-hi);
  transform: skewX(-7deg);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.28), 0 0 46px var(--pink-glow);
  line-height: 1;
}
.brandbar__mark i { font-style: normal; color: var(--pink); text-shadow: var(--neon-pink); }
.brandbar__ca {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 11px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(255, 201, 60, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 201, 60, 0.34);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.brandbar__ca { color: #FFD75E; text-shadow: 0 0 12px var(--gold-glow); }
.brandbar__ca em { font-style: normal; color: #9FB2E6; letter-spacing: 0.16em; }

/* ============================================================
   TOOLS — top right
   ============================================================ */

.hud__tools { position: absolute; top: 18px; right: 20px; display: flex; gap: 7px; }

.tool {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--tool-accent, var(--aqua));
  background: linear-gradient(155deg, rgba(48, 76, 156, 0.86), rgba(13, 25, 58, 0.94));
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(86, 120, 214, 0.95), var(--lift-1);
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
  transition: color var(--t-fast), transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast);
}
.tool::after {
  content: '';
  position: absolute;
  left: 12px; right: 4px; top: 0;
  height: 3px;
  background: var(--tool-accent, var(--aqua));
  box-shadow: 0 0 12px var(--tool-accent, var(--aqua));
  opacity: 0.9;
  transition: opacity var(--t-fast), box-shadow var(--t-fast);
}
.tool:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--tool-accent, var(--aqua)),
              0 0 24px var(--tool-accent, var(--aqua)), var(--lift-2);
}
.tool:hover::after { opacity: 1; box-shadow: 0 0 12px var(--tool-accent, var(--aqua)); }
.tool:active { transform: translateY(0); }
.tool svg { width: 22px; height: 22px; filter: drop-shadow(0 0 8px currentColor); }
.tool.is-off { color: var(--txt-ghost); }
.tool.is-off::after { opacity: 0.18; }

.tool--sound { --tool-accent: var(--aqua); }
.tool--board { --tool-accent: var(--gold); }
.tool--pause { --tool-accent: var(--pink); }
.tool--full  { --tool-accent: var(--mint); }

/* ============================================================
   DRIVE — bottom left
   ============================================================ */

.drive {
  --gp-accent: var(--aqua);
  left: 20px; bottom: 20px;
  width: 310px;
  padding: 14px 18px 16px 21px;
}

.drive__row { display: flex; align-items: flex-end; justify-content: space-between; }

.drive__speed {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--f-mono);
  line-height: 0.86;
}
.drive__speed b {
  font-size: 62px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.05em;
  min-width: 3ch;
  text-align: right;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.7),
    0 0 26px var(--aqua-glow),
    0 0 60px rgba(53, 223, 240, 0.45);
  transition: color 160ms linear, text-shadow 160ms linear;
}
.drive.is-flying .drive__speed b {
  color: #DFFBFF;
  text-shadow:
    0 0 12px #FFFFFF,
    0 0 34px var(--aqua-hi),
    0 0 74px var(--aqua);
}
.drive__speed i {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9FB2E6;
}

.drive__gear {
  font-family: var(--f-display);
  font-size: 38px;
  line-height: 1;
  color: #FF6FBB;
  transform: skewX(-7deg);
  text-shadow: 0 0 10px #FFFFFF, 0 0 26px var(--pink), 0 0 56px var(--pink-glow);
}

/* speed ladder */
.speedbar { display: flex; gap: 2px; height: 8px; margin-top: 11px; }
.speedbar i {
  flex: 1;
  background: rgba(38, 60, 128, 0.9);
  transform: skewX(-22deg);
  transition: background 80ms linear, box-shadow 80ms linear;
}
.speedbar i.is-on { background: var(--aqua); box-shadow: 0 0 8px var(--aqua-glow); }
.speedbar i.is-red { background: var(--pink); box-shadow: 0 0 14px var(--pink), 0 0 26px var(--pink-glow); }

.nitro { margin-top: 11px; }
.nitro__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.nitro__track { display: flex; gap: 2px; height: 13px; }
.nitro__cell {
  flex: 1;
  background: rgba(38, 60, 128, 0.9);
  transform: skewX(-22deg);
  transition: background 80ms linear, box-shadow 80ms linear;
}
.nitro__cell.is-on {
  background: linear-gradient(180deg, var(--aqua-hi), var(--aqua));
  box-shadow: 0 0 9px var(--aqua-glow);
}
.nitro.is-firing .nitro__cell.is-on {
  background: linear-gradient(180deg, #ffffff, var(--aqua-hi));
  box-shadow: 0 0 12px var(--aqua-glow);
}
.nitro.is-empty .nitro__cell.is-on { background: var(--danger); }
.nitro__key {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #A8F4FF;
  padding: 2px 8px;
  box-shadow: inset 0 0 0 1px rgba(53, 223, 240, 0.5);
}

/* ============================================================
   MAP — bottom right
   ============================================================ */

.map {
  --gp-accent: var(--pink);
  right: 20px; bottom: 20px;
  width: 238px;
  padding: 11px 12px 12px 15px;
}
.map canvas {
  width: 204px; height: 204px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(86, 120, 214, 0.85);
}
.map__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.map__legend {
  display: flex;
  gap: 12px;
  margin-top: 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93A6DC;
}
.map__legend span { display: inline-flex; align-items: center; gap: 4px; }
.map__legend i { width: 7px; height: 7px; border-radius: 50%; box-shadow: 0 0 7px currentColor; }

/* ============================================================
   COMBO — centre
   ============================================================ */

.combo {
  position: absolute;
  left: 50%;
  top: 21%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}
.combo.is-on { opacity: 1; }
.combo__x {
  font-family: var(--f-display);
  font-size: 72px;
  line-height: 0.82;
  transform: skewX(-8deg);
  background: linear-gradient(180deg, #FFF6EC 6%, var(--gold) 48%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px var(--gold-glow)) drop-shadow(0 0 44px var(--pink-glow));
  animation: combo-beat 620ms var(--ease-out);
}
@keyframes combo-beat {
  0%   { transform: skewX(-8deg) scale(1.35); }
  100% { transform: skewX(-8deg) scale(1); }
}
.combo__cap {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.combo__bar {
  width: 132px; height: 3px;
  margin: 8px auto 0;
  background: rgba(7, 14, 34, 0.8);
  box-shadow: inset 0 0 0 1px rgba(50, 73, 154, 0.8);
}
.combo__bar i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Floating "+1" pickups */
.pickups { position: absolute; inset: 0; overflow: hidden; }
.pickup {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-hi);
  text-shadow: var(--neon-gold);
  animation: pickup-rise 900ms var(--ease-out) forwards;
  white-space: nowrap;
}
.pickup i { font-style: normal; color: var(--pink-hi); }
.pickup.is-big { font-size: 26px; color: var(--gold); }
@keyframes pickup-rise {
  0%   { opacity: 0; transform: translateY(6px) scale(0.85); }
  18%  { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-48px) scale(1); }
}

.stackflash {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: 34px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: var(--neon-gold);
  animation: stack-pop 1.05s var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes stack-pop {
  0%   { opacity: 0; transform: translateX(-50%) skewX(-7deg) scale(0.7); }
  20%  { opacity: 1; transform: translateX(-50%) skewX(-7deg) scale(1.05); }
  70%  { opacity: 1; transform: translateX(-50%) skewX(-7deg) scale(1); }
  100% { opacity: 0; transform: translateX(-50%) skewX(-7deg) scale(1) translateY(-24px); }
}

/* ============================================================
   PRESENCE — bottom centre
   ============================================================ */

.presence {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A8BAEC;
  background: linear-gradient(155deg, rgba(46, 72, 150, 0.8), rgba(13, 25, 58, 0.9));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(86, 120, 214, 0.95);
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
}
.presence b { color: #6BFFC9; font-family: var(--f-mono); font-size: 15px; text-shadow: var(--neon-mint); }
.presence__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint-glow);
  animation: badge-pulse 2.4s var(--ease-in-out) infinite;
}
.presence.is-offline .presence__dot { background: var(--txt-ghost); box-shadow: none; animation: none; }

/* ============================================================
   CONTROLS CARD
   ============================================================ */

.keys {
  --gp-accent: var(--violet);
  left: 20px; top: 128px;
  width: 236px;
  padding: 12px 14px 12px 17px;
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.keys.is-hidden { opacity: 0; transform: translateX(-14px); pointer-events: none; }
.keys__row { display: flex; align-items: center; gap: 10px; padding: 5px 0; }
.keys__row + .keys__row { border-top: 1px solid rgba(35, 53, 110, 0.6); }
.kbd {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: rgba(46, 72, 150, 0.92);
  box-shadow: inset 0 0 0 1px rgba(86, 120, 214, 0.95);
  padding: 4px 8px;
  min-width: 56px;
  text-align: center;
  clip-path: polygon(4px 0%, 100% 0%, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0% 100%, 0% 4px);
}
.keys__what { font-size: 11.5px; color: #A8BAEC; }

/* ============================================================
   COUNTDOWN / FLASHES / PAUSE
   ============================================================ */

.countdown { position: absolute; inset: 0; display: none; place-items: center; z-index: 30; pointer-events: none; }
.countdown.is-on { display: grid; }
.countdown__n {
  font-family: var(--f-display);
  font-size: clamp(110px, 19vw, 230px);
  line-height: 0.8;
  transform: skewX(-8deg);
  background: linear-gradient(180deg, #FFF6EC 20%, var(--aqua-hi) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(53, 223, 240, 0.55));
  animation: count-beat 1s var(--ease-out);
}
.countdown__n.is-go {
  background: linear-gradient(180deg, #FFF6EC 10%, var(--gold) 45%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 46px var(--pink-glow));
}
@keyframes count-beat {
  0%   { opacity: 0; transform: skewX(-8deg) scale(1.7); }
  22%  { opacity: 1; transform: skewX(-8deg) scale(1); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: skewX(-8deg) scale(0.92); }
}

.impact {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 25; opacity: 0;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(255, 92, 119, 0.42) 100%);
}
.impact.is-hit { animation: impact-flash 420ms var(--ease-out); }
@keyframes impact-flash { 0% { opacity: 1; } 100% { opacity: 0; } }

.rush {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 24; opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 36%, rgba(53, 223, 240, 0.26) 100%);
  transition: opacity 220ms var(--ease-out);
}
.rush.is-on { opacity: 1; }

.pause {
  position: absolute; inset: 0; z-index: 40;
  display: none; place-items: center;
  background: rgba(4, 9, 26, 0.86);
  backdrop-filter: blur(12px);
}
.pause.is-on { display: grid; }
.pause__box { width: min(380px, 84vw); padding: 30px 32px; text-align: left; }
.pause__title {
  font-family: var(--f-display);
  font-size: 46px;
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--txt-hi);
  transform: skewX(-7deg);
  margin-bottom: 22px;
  text-shadow: 0 0 34px var(--pink-glow);
}
.pause__cta { display: grid; gap: 8px; margin-top: 22px; }

.perf {
  position: absolute;
  left: 22px; top: 132px;
  padding: 8px 11px;
  font-family: var(--f-mono);
  font-size: 10px;
  line-height: 1.6;
  color: var(--aqua);
  background: rgba(7, 14, 34, 0.86);
  box-shadow: inset 0 0 0 1px var(--line);
  display: none;
  white-space: pre;
}
.perf.is-on { display: block; }

@media (max-width: 1080px) {
  .keys, .map { display: none; }
  .obj { width: 268px; }
  .drive { width: 244px; }
  .drive__speed b { font-size: 42px; }
  .brandbar__mark { font-size: 19px; }
}


/* ============================================================
   DOCKED LEADERBOARD — top right, always on
   A five-row read-out you can glance at mid-corner; clicking it
   opens the full season table.
   ============================================================ */

.lbdock {
  --gp-accent: var(--gold);
  position: absolute;
  right: 20px;
  top: 86px;
  width: 268px;
  padding: 12px 14px 10px 17px;
  text-align: left;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast);
}
.lbdock:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px var(--gold),
    0 0 26px rgba(255, 201, 60, 0.35),
    var(--lift-2);
}
.lbdock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(86, 120, 214, 0.5);
}
.lbdock__more {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

.lbdock__row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
}
.lbdock__row + .lbdock__row { border-top: 1px solid rgba(86, 120, 214, 0.22); }
.lbdock__n {
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1;
  color: #7E93D0;
  transform: skewX(-7deg);
}
.lbdock__row:nth-child(1) .lbdock__n { color: #FFD75E; text-shadow: 0 0 12px var(--gold-glow); }
.lbdock__row:nth-child(2) .lbdock__n { color: #A8F4FF; }
.lbdock__row:nth-child(3) .lbdock__n { color: #FF8AC8; }
.lbdock__name {
  font-size: 12px;
  font-weight: 600;
  color: #E7EEFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lbdock__t {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: #FFD75E;
}
.lbdock__row.is-you { background: rgba(70, 229, 176, 0.13); }
.lbdock__row.is-you .lbdock__name { color: #6BFFC9; }
.lbdock__prize {
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid rgba(86, 120, 214, 0.28);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A44E;
  text-align: center;
}
.lbdock__empty {
  padding: 10px 2px;
  font-size: 11px;
  line-height: 1.6;
  color: #93A6DC;
}

@media (max-width: 1240px) { .lbdock { display: none; } }
