/* style.css — Header v4 Live Notifications */

.header-v4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.92);
  border-bottom: 1px solid rgba(255, 51, 102, 0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  color: #ffffff;
}

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

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

.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: color 0.3s;
}

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

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

.notifications {
  position: relative;
}

.bell-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
}

.bell-btn i {
  font-size: 1.6rem;
  color: #ff3366;
  transition: transform 0.3s;
}

.bell-btn:hover i {
  transform: rotate(15deg) scale(1.2);
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff3366;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255,51,102,0.6);
}

.notification-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(20,20,60,0.95);
  border: 1px solid rgba(255,51,102,0.3);
  border-radius: 12px;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.notifications:hover .notification-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notif-item {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 1rem;
  transition: background 0.2s;
}

.notif-item:hover {
  background: rgba(255,51,102,0.15);
}

.notif-icon {
  font-size: 1.4rem;
  color: #ff3366;
  flex-shrink: 0;
}

.notif-text {
  flex: 1;
  font-size: 0.95rem;
}

.notif-time {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.3rem;
  display: block;
}

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

.btn-deposit {
  background: #ff3366;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  box-shadow: 0 8px 30px rgba(255,51,102,0.4);
  transition: all 0.3s;
}

.btn-deposit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255,51,102,0.6);
}

.btn-login {
  background: transparent;
  border: 2px solid #ff3366;
  color: #ff3366;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
}

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

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

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

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