/* Mobile fixed bottom nav — HTML overlay, independent of PixiJS canvas */
.mob-nav {
  display: none;
}
@media (max-width: 768px) {
  .mob-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(10, 6, 0, 0.95);
    border-top: 2px solid #8B6914;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mob-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #886644;
    font-family: Georgia, serif;
    font-size: 10px;
    min-width: 56px;
    min-height: 44px;
    gap: 2px;
    transition: color 0.15s;
  }
  .mob-nav a.active {
    color: #ffd700;
  }
  .mob-nav a .nav-icon {
    font-size: 22px;
    line-height: 1;
  }
  body {
    padding-bottom: 0 !important;
    margin-bottom: 60px !important;
    background: #150c04 !important;
  }
  #game-canvas {
    display: block;
    margin-bottom: 60px;
  }
}
