.header{
  background: rgba(10, 10, 20, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* NAV LAYOUT CLEAN VIP */
.nav{
  display: flex;
  align-items: center;
  gap: 26px;
}

/* ITEM STYLE */
.nav a{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding: 6px 0;
  transition: all 0.25s ease;
}

/* ICON */
.nav a i{
  font-size: 14px;
  opacity: 0.85;
  transition: all 0.25s ease;
}

/* UNDERLINE ANIMATION VIP (SMOOTH) */
.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#e94560,#f5a623);
  transition: width 0.3s ease;
  border-radius: 10px;
}

/* HOVER STATE */
.nav a:hover{
  color: #fff;
}

.nav a:hover i{
  color: #f5a623;
  transform: translateY(-1px) scale(1.08);
  opacity: 1;
}

.nav a:hover::after{
  width: 100%;
}

/* ACTIVE STATE */
.nav a.active{
  color: #fff;
  font-weight: 600;
}

.nav a.active::after{
  width: 100%;
  box-shadow: 0 0 10px rgba(233,69,96,0.4);
}

/* CTA VIP BUTTON */
.nav-cta{
  background: linear-gradient(135deg,#e94560,#f5a623);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(233,69,96,0.25);
  transition: all 0.25s ease;
}

/* CTA HOVER */
.nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(233,69,96,0.38);
}

/* HEADER SCROLL EFFECT (VIP CASINO STYLE) */
.header.scrolled{
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(26px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* MOBILE NAV VIP */
@media (max-width: 768px){
  .nav{
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10,10,20,0.98);
    backdrop-filter: blur(25px);
    padding: 30px 20px;
    gap: 18px;
  }

  .nav a{
    font-size: 16px;
    padding: 12px 0;
  }

  .nav-cta{
    width: 100%;
    justify-content: center;
  }
}