/* header.css — extracted from header.php inline style */

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -2; /* ensures it stays beneath ::before overlays */
  opacity: 0.15;
  filter: grayscale(100%) contrast(120%) brightness(60%);
  pointer-events: none;
}

.btn-upgrade {
  background-color: #facc15;
  color: #111827;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(250, 204, 21, .7);
  transition: transform .2s, box-shadow .3s;
}

.btn-upgrade:hover {
  background: #eab308;
  transform: scale(1.05);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, .7); }
  70% { box-shadow: 0 0 0 10px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

.genheader {
  background: #0A1929;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.auth-buttons,
.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auth-button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background .2s;
}

.auth-button:hover {
  background: rgba(255, 255, 255, .1);
}

.dropdown-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  background: #0A1929;
  padding: 1rem;
  width: 100%;
}

.dropdown-menu a {
  margin-bottom: 0.5rem;
}

@media(max-width:768px) {
  .auth-buttons { display: none; }
  .dropdown-toggle { display: inline-block; }
  .dropdown-menu.show { display: flex; }
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: white;
}
