/* Fixed bottom icon nav (Home/Games/Tournaments/Wallet/Profile), shared by every page via
   _bottom_nav.html + base.html. Styling is a deliberate 1:1 port of the new homepage's own
   .mobile-nav rules (static/css/home-preview.css, under .tsg-home) so the bar looks identical
   site-wide -- home.html doesn't extend base.html, so it keeps its own copy of these rules
   rather than depending on this file loading. */

.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 480px);
  z-index: 50;
  height: 62px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, .97);
  backdrop-filter: blur(10px);
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #777;
  font-size: 7px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav a i {
  font-size: 16px;
}

.mobile-nav a.active {
  color: #E70000;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
