:root {
  --bg: #0b1020;
  --panel: #111a33;
  --panel2: #0f1730;
  --text: #e9eefc;
  --muted: #a8b3d6;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius: 14px;
  --cell: 56px;
  --gap: 8px;
}

* {
  box-sizing: border-box
}

html,
body {
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Pangolin", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 27px;
  line-height: 1.2;
  touch-action: manipulation;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(131, 149, 255, .25), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(80, 255, 198, .18), transparent 45%),
    var(--bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text);
}

header {
  padding: 14px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 64px;
  position: relative;
}

.headerRow {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  margin-bottom: -6px;
}

.title {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.title h1 {
  margin: 0;
  font-size: 27px;
  letter-spacing: .2px;
  font-weight: 700;
  white-space: nowrap;
}

.title h1 a {
  color: var(--text);
  text-decoration: none;
}

.title h1 a:hover {
  opacity: .9;
}

.wave {
  display: inline-block;
  white-space: nowrap;
}

.wave span {
  display: inline-block;
  animation: waveFloat 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.06s);
}

@keyframes waveFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  white-space: nowrap;
}

.subtitleRow {
  display: flex;
  justify-content: center;
}

.wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0 8px 8px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.boardCard {
  position: relative;
  padding: 8px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.scoreBox {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 19px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}

.pill b {
  color: var(--text);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.btnRow {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

button {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 9px 10px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 24px;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform .05s ease, background .15s ease, border-color .15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btnSmall {
  font-size: 19px;
  padding: 6px 9px;
}

.btnAccent {
  background: rgba(110, 220, 200, .22);
  border-color: rgba(110, 220, 200, .55);
  color: #eafff8;
}

.btnAccent:hover {
  background: rgba(110, 220, 200, .32);
}

.btnWarm {
  background: rgba(255, 200, 120, .20);
  border-color: rgba(255, 200, 120, .55);
  color: #fff3e2;
}

.btnWarm:hover {
  background: rgba(255, 200, 120, .30);
}

.btnSuccess {
  background: rgba(120, 220, 130, .25);
  border-color: rgba(120, 220, 130, .6);
  color: #eefaf1;
}

.btnSuccess:hover {
  background: rgba(120, 220, 130, .35);
}

button:disabled,
button[disabled] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

button:hover {
  background: rgba(255, 255, 255, .09);
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  opacity: .45;
  cursor: not-allowed;
}


.gridWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 2px;
  flex: 1;
}

.boardFrame {
  position: relative;
  display: inline-block;
}

.grid {
  display: grid;
  gap: var(--gap);
  touch-action: manipulation;
  position: relative;
  z-index: 2;
}


.cell {
  width: var(--cell);
  height: var(--cell);
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden;
}

.cell.pickup {
  cursor: grab;
}

.cell.pickup:active {
  cursor: grabbing;
}

.cell.wall {
  visibility: hidden;
  pointer-events: none;
}

.cell.wall.reveal {
  visibility: visible;
  background: transparent;
  border-color: transparent;
}

.cell.wall.reveal::after {
  display: none;
}

.cell.wall::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .20) 0 8px,
      rgba(255, 255, 255, 0) 8px 16px);
  transform: rotate(10deg);
  opacity: .7;
}

.effectBadge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #f2f6ff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
  letter-spacing: .2px;
  z-index: 2;
}

.fill {
  position: absolute;
  inset: 0;
  background: var(--fill, rgba(255, 255, 255, .25));
  opacity: .88;
  border-radius: 11px;
}

.fill.pulse {
  animation: placePulse 1.1s ease-out;
}

.fill.glimmer::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg,
      transparent 22%,
      rgba(255, 255, 255, .7) 46%,
      rgba(255, 255, 255, .35) 54%,
      transparent 78%);
  opacity: 0;
  transform: translateX(-60%) rotate(8deg);
  animation: glimmerSweep 3s ease-in-out infinite;
  animation-delay: var(--glimmer-offset, 0s);
  pointer-events: none;
}

.fill::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, .35), transparent 45%);
  opacity: .7;
}

.fill.fadeOut {
  animation: removePulse .22s ease-in forwards;
  animation-delay: var(--fade-offset, 0s);
}

@keyframes placePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
    transform: scale(0.9);
  }

  40% {
    box-shadow: 0 0 22px 6px rgba(255, 255, 255, .5);
    transform: scale(1.12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
    transform: scale(1);
  }
}

@keyframes removePulse {
  0% {
    transform: scale(1);
    opacity: .9;
  }

  100% {
    transform: scale(0.6);
    opacity: 0;
  }
}

@keyframes glimmerSweep {
  0% {
    opacity: 0;
    transform: translateX(-70%) rotate(8deg);
  }

  12% {
    opacity: .7;
    transform: translateX(-12%) rotate(8deg);
  }

  24% {
    opacity: 0;
    transform: translateX(50%) rotate(8deg);
  }

  100% {
    opacity: 0;
    transform: translateX(50%) rotate(8deg);
  }
}

.ghost {
  position: absolute;
  inset: 0;
  background: var(--ghost, rgba(255, 255, 255, .25));
  opacity: .35;
  border-radius: 11px;
  outline: 2px dashed rgba(255, 255, 255, .35);
  outline-offset: -6px;
  z-index: 3;
}

.badGhost {
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 80, .18);
  opacity: .55;
  border-radius: 11px;
  outline: 2px dashed rgba(255, 80, 120, .55);
  outline-offset: -6px;
  z-index: 3;
}

.panel {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sectionTitle {
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 6px;
}

.piecesCarousel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0px;
}

.carouselTrack {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 14px 0;
  min-height: 108px;
}

.carouselTrack {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.carouselTrack[data-move="left"] .carouselSlot {
  animation: carouselSlideLeft .35s ease;
}

.carouselTrack[data-move="right"] .carouselSlot {
  animation: carouselSlideRight .35s ease;
}

@keyframes carouselSlideLeft {
  0% {
    transform: translateX(80px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes carouselSlideRight {
  0% {
    transform: translateX(-80px);
  }

  100% {
    transform: translateX(0);
  }
}

.carouselBtn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text);
  width: 52px;
  height: 80px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  padding: 8px;
  position: relative;
}

.carouselBtn::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.carouselSlot {
  opacity: 1;
}

.pieceBtn {
  --piece-scale: .9;
  display: flex;
  gap: 0px;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  padding: 6px 0;
  cursor: default;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  transform: scale(var(--piece-scale));
  transition: background .15s ease, transform .35s ease, border-color .15s ease;
  min-width: 80px;
  min-height: 100px;
  position: relative;
}

.miniWrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.miniWrap.rotateAnim {
  animation: pieceRotateIn .25s ease;
}

.pieceBtn.selected .miniWrap.rotateAnim {
  animation: pieceRotateIn .25s ease, pieceHover 1.6s ease-in-out infinite;
}

.pieceBtn.center:not(.placed) {
  cursor: grab;
}

.pieceBtn.center {
  --piece-scale: 1.25;
}

.pieceBtn.scaleUp {
  animation: centerGrow .35s ease;
}

.pieceBtn.scaleDown {
  animation: centerShrink .35s ease;
}

.pieceBtn.center:not(.placed):active {
  cursor: grabbing;
}

.pieceBtn.center:hover {
  background: rgba(255, 255, 255, .04);
}

.pieceBtn.center:not(.placed) .mini {
  animation: pieceWobble 1.2s ease-in-out infinite;
}

.pieceBtn.center:active {
  transform: translateY(1px) scale(var(--piece-scale));
}

.pieceBtn.selected {
  border-color: rgba(180, 200, 255, .55);
  background: rgba(120, 150, 255, .12);
  animation: none;
}

.pieceBtn.selected .miniWrap {
  animation: pieceHover 1.6s ease-in-out infinite;
}

.pieceBtn.placed {
  opacity: .7;
}

.pieceBtn.center.placed {
  cursor: pointer;
}

.pieceCheck {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(96, 220, 140, .9);
  color: #0b1020;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

@keyframes selectedPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(160, 190, 255, .0), 0 0 0 0 rgba(160, 190, 255, .0);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(160, 190, 255, .35), 0 0 18px 2px rgba(120, 170, 255, .35);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(160, 190, 255, .0), 0 0 0 0 rgba(160, 190, 255, .0);
  }
}

@keyframes pieceHover {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes pieceWobble {

  0%,
  100% {
    transform: rotate(-12deg);
  }

  50% {
    transform: rotate(-6deg);
  }
}

@keyframes pieceRotateIn {
  0% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes centerGrow {
  0% {
    transform: scale(.9);
  }

  100% {
    transform: scale(1.25);
  }
}

@keyframes centerShrink {
  0% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(.9);
  }
}


.mini {
  display: grid;
  grid-template-columns: repeat(4, 12px);
  grid-template-rows: repeat(4, 12px);
  gap: 3px;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  border: none;
  flex: 0 0 auto;
  transform: rotate(-10deg);
  transform-origin: center;
}

.miniCell {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: transparent;
}

.miniCell.on {
  background: var(--c);
  opacity: .95;
}

.pieceMeta {
  display: flex;
  align-items: center;
}

.pieceMeta .pts {
  font-size: 18px;
  color: var(--muted);
  white-space: nowrap;
}

.help {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.35;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.help kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 17px;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .25);
  color: #eef3ff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: rgba(10, 14, 30, .85);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 20px;
  color: var(--text);
  max-width: min(720px, calc(100vw - 24px));
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1105;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.cornerBtn {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 1001;
}

.cornerBtn:hover {
  background: rgba(255, 255, 255, .09);
}

.menuBtn {
  font-size: 20px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 22, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1000;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.panelModal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateY(6px);
}

.panelModal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.panelCard {
  width: min(340px, 90vw);
  background: #0f1730;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  color: var(--text);
  font-size: 18px;
  position: relative;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.panelCard.wide {
  width: min(470px, 92vw);
}

.panelCard h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.panelCard h2#leaderboardTitle {
  text-align: center;
}

.panelCard h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.panelCard p {
  margin: 0 0 10px;
  color: var(--muted);
}

.panelCard a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .5);
}

.settingsRow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--text);
}

.no-motion *,
.no-motion *::before,
.no-motion *::after {
  animation: none !important;
  transition: none !important;
}

.closeX {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 30px;
  color: var(--text);
  cursor: pointer;
  opacity: .75;
}

.closeX:hover {
  opacity: 1;
}

.pillButton {
  cursor: pointer;
  user-select: none;
}

.pillButton:hover {
  background: rgba(255, 255, 255, .09);
}

.pillButton:active {
  transform: translateY(1px);
}

.pillButton.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.scoreBreakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.scoreRow {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, .03);
}

.scoreRow .sign {
  font-size: 22px;
  color: var(--muted);
  min-width: 16px;
  text-align: center;
  margin-top: 4px;
}

.leaderboardScore {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.leaderboardMessage {
  font-size: 28px;
  text-align: center;
  margin: 6px 0 14px;
  color: var(--text);
}

.leaderboardLabel {
  color: var(--muted);
  font-size: 18px;
}

.leaderboardValue {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}

.leaderboardChart {
  position: relative;
  margin: 10px auto 30px;
  height: 160px;
  width: calc(100% - 16px);
}

.leaderboardSvg {
  width: 100%;
  height: 100%;
  display: block;
}

.leaderboardTooltip {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: var(--muted);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.leaderboardChart.showValue .leaderboardTooltip {
  opacity: 1;
}

.leaderboardYou {
  position: absolute;
  top: 0;
  font-size: 14px;
  color: #9af0b5;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: translate(-50%, -150%);
  pointer-events: none;
}

.leaderboardYou::before {
  content: "⬇";
  font-size: 14px;
}

.leaderboardActions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.leaderboardBar {
  position: relative;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}

.leaderboardBarFill {
  width: 100%;
  border-radius: 8px 8px 4px 4px;
  background: rgba(120, 150, 255, .25);
  border: 1px solid rgba(120, 150, 255, .45);
  transition: height .3s ease;
}

.leaderboardBar.you .leaderboardBarFill {
  background: rgba(120, 220, 130, .35);
  border-color: rgba(120, 220, 130, .75);
}

.leaderboardBarLabel {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.leaderboardYou {
  position: absolute;
  top: -18px;
  font-size: 14px;
  color: #9af0b5;
  display: flex;
  align-items: center;
  gap: 4px;
}

.leaderboardYou::before {
  content: "⬇";
  font-size: 14px;
}

.leaderboardActions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.scoreMeta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.scoreMods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 18px;
}

.scoreTotal {
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
}

.scoreSum {
  border-top: 2px solid rgba(255, 255, 255, .35);
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
  font-size: 22px;
  color: var(--text);
}

.menuPanel {
  position: fixed;
  top: 72px;
  right: 14px;
  width: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1002;
}

.menuPanel.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menuPanel button {
  width: 100%;
  justify-content: center;
}

.dragPreview {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  transform: translate(-9999px, -9999px);
}

.dragPreview .mini {
  --drag-scale: 1.65;
  animation: dragWiggle .6s ease-in-out infinite;
}

.dragPreview .label {
  font-size: 18px;
  color: var(--text);
  white-space: nowrap;
}

.dragPreview.hideLabel .label {
  display: none;
}

@keyframes dragWiggle {

  0%,
  100% {
    transform: rotate(-12deg) translateY(0) scale(var(--drag-scale));
  }

  50% {
    transform: rotate(-6deg) translateY(0px) scale(var(--drag-scale));
  }
}

body.dragging,
body.dragging * {
  cursor: grabbing !important;
}

.dragHint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 3;
}

.dragHint.show {
  opacity: 1;
}

.dragHint #dragHintPath {
  stroke: rgba(255, 255, 255, .7);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.dragHint text {
  fill: var(--text);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}


@media (max-width: 900px) {
  :root {
    --cell: 52px;
  }

  .wrap {
    grid-template-columns: 1fr;
  }

  .boardCard {
    min-height: unset;
  }

  header {
    padding-top: 14px;
  }

  .pill {
    font-size: 16px;
    padding: 5px 7px;
    gap: 5px;
  }

  .btnSmall {
    font-size: 16px;
    padding: 5px 8px;
  }
}
