/* style.css — Header v5 Clean & Minimal */

.header-v5 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #0f0f1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
}

.footer .container{
  display: block;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
}

.highlight {
  color: #00ffea;
}

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

.nav-menu a {
  color: #d0d0ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #ffffff;
}

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

.balance {
  font-weight: 600;
  font-size: 1.1rem;
  color: #00ffea;
}

.btn-deposit, .btn-login {
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
}

.btn-deposit {
  background: #00ffea;
  color: #000;
}

.btn-deposit:hover {
  background: #00e6d6;
  transform: translateY(-1px);
}

.btn-login {
  background: transparent;
  border: 1px solid #ffffff;
  color: white;
  text-decoration: none;
}

.btn-login:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  text-decoration: none;
}

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

.burger span {
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s;
}

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