/* Shared Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.site-header-logo:hover {
  transform: scale(1.05);
}

.site-header-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #00f5d4, #7b2cbf);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(0, 245, 212, 0.2); }
}

.site-header-logo-text {
  background: linear-gradient(135deg, #00f5d4, #f72585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.site-header-link {
  color: #888;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.site-header-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header-link.active {
  color: #00f5d4;
  background: rgba(0, 245, 212, 0.1);
}

.site-header-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00f5d4;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 1px solid #00f5d4;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: bold;
  transition: all 0.3s;
  white-space: nowrap;
}

.site-header-back:hover {
  background: #00f5d4;
  color: #0a0a0a;
}

.site-header-back svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.site-header-back:hover svg {
  transform: translateX(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    padding: 0.8rem 1rem;
  }
  
  .site-header-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .site-header-logo-text {
    display: none;
  }
}
