/* ===== SLINKY STAIRS GAME ===== */
/* Baloo 2 font loaded via <link> in index.html <head> */

#slinkyStairsGame {
  background: #0a0a1a;
  overflow: hidden;
  align-items: stretch;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
}

#slkCanvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.slk-exit-btn {
  position: absolute;
  top: 10px;
  top: max(10px, env(safe-area-inset-top, 10px));
  right: 10px;
  z-index: 30;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.slk-exit-btn:active {
  background: rgba(255,255,255,0.25);
}
