#app-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(11, 79, 138, 0.18);
  box-shadow: 0 -12px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  z-index: 800;
}

.bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 6px;
  padding: 0 10px;
  margin: 0;
  width: 100%;
  max-width: none;
}

.bottom-nav-link {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: rgba(11, 79, 138, 0.65);
  border-top: 3px solid transparent;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  transition: color 150ms ease, border-color 150ms ease;
  position: relative;
}

.bottom-nav-link.is-active {
  color: #0B4F8A;
  border-top-color: #0B4F8A;
  font-weight: 700;
}

.bottom-nav-link:hover {
  color: #0B4F8A;
}

.bottom-nav-link .bottom-nav-dot {
  position: absolute;
  top: 8px;
  right: 18%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e53935;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
}

@media (max-width: 600px) {
  .bottom-nav {
    padding: 0 6px;
  }

  .bottom-nav-link {
    font-size: 11px;
    padding: 9px 0;
  }

  .bottom-nav-link .bottom-nav-dot {
    right: 14%;
  }
}
