/* === Glassy Floating Bottom Navigation === */
.glassy-nav {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 500px;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  /* background: rgba(25, 25, 25, 0.6); */
  background: #0F172A;
  border-radius: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
}

/* Divider lines between icons */
.nav-divider {
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.15);
}

/* Navigation item styling */
.bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  color: #ddd;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.bottom-nav .nav-item i {
  display: block;
  font-size: 22px;
  margin-bottom: 2px;
  /* color: #0a2c33; */
  color: #fff;
  transition: all 0.3s ease;
}

.bottom-nav .nav-item span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #eee;
}

/* Hover & active states */
.bottom-nav .nav-item:hover i,
.bottom-nav .nav-item.active i {
  color: #F97316;
  transform: scale(1.2);
}

.bottom-nav .nav-item:hover span,
.bottom-nav .nav-item.active span {
  color: #F97316;
}

/* === Big Center Wallet Button === */
.wallet-btn {
  position: relative;
  top: -25px;
  z-index: 10;
  flex: 1.4;
}

.wallet-circle {
  /* background: radial-gradient(circle at top, #F97316, #F97316); */
  background: #0F172A;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px 	#F97316;
  border: 3px solid 	#F97316;
  transition: all 0.3s ease;
}

.wallet-circle i {
  font-size: 30px;
  color: #fff;
}

.wallet-btn span {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}

/* Wallet glow on hover */
.wallet-btn:hover .wallet-circle {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgb(255, 255, 255);
}

/* Responsive adjustments */
@media (max-width: 720px) {
  .wallet-circle {
    width: 60px;
    height: 60px;
  }

  .bottom-nav .nav-item i {
    font-size: 19px;
  }

  .bottom-nav .nav-item span {
    font-size: 10px;
  }
}
