/* Casino-themed bottom navigation — aligned to mobile frame, not full viewport */
.casino-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  margin-left: calc(min(100vw, 28rem) / -2);
  width: min(100vw, 28rem);
  max-width: 28rem;
  z-index: 50;
  background: linear-gradient(0deg, #18153a 0%, #1e1b4b 38%, #312e81 72%, #3730a3 100%);
  box-shadow: 0 -4px 28px rgba(30, 27, 75, 0.55), 0 -1px 0 rgba(251, 191, 36, 0.12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  min-height: calc(4rem + env(safe-area-inset-bottom, 0px));
  border-top: none !important;
  border-radius: 0;
  overflow: visible;
}

.casino-bottom-nav.casino-gold-border {
  border: none;
  overflow: visible;
  border-radius: 0;
}

.casino-bottom-nav.casino-gold-border::after {
  display: none;
}

.casino-bottom-nav::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 5%, #fbbf24 35%, #fde68a 50%, #fbbf24 65%, transparent 95%);
  pointer-events: none;
  z-index: 2;
}

.casino-bottom-nav__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.casino-bottom-nav a {
  position: relative;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.casino-nav-idle {
  color: rgba(196, 181, 253, 0.72);
  transition: color 0.15s ease, transform 0.15s ease;
}

.casino-nav-idle:hover {
  color: #ede9fe;
}

.casino-nav-idle:active {
  transform: scale(0.96);
}

.casino-nav-active {
  color: #fde68a;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.45);
}

.casino-nav-active svg {
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.55));
}

.casino-nav-active::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.125rem;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f59e0b, #fde68a, #f59e0b);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.65);
}
