/* style.css — Header v2 Glass VIP */

.header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 20, 60, 0.65);
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  color: #ffffff;
}

.header-v2 .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-size: 2.3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight { color: #ffaa00; }

.nav-menu ul {
  display: flex;
  gap: 2.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #d0d0ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffd700;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #ffd700;
  transition: width 0.3s;
}

.nav-menu a:hover::after { width: 100%; }

.user-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.vip-badge {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.balance {
  background: rgba(255, 215, 0, 0.12);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: bold;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.btn-login, .btn-signup {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-login {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.btn-login:hover {
  background: #ffd700;
  color: #ffffff;
}

.btn-signup {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  color: #000;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-signup:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 30px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 992px) {
  .nav-menu, .user-actions { display: none; }
  .burger { display: flex; }
}