#voyalyo-static-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 65px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(7,16,29,.95);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  backdrop-filter: blur(18px);
}

.vh-inner {
  width: 100%;
  max-width: 1600px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vh-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 4px 8px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.vh-logo img {
  display: block;
  width: auto;
  height: 36px;
}

.vh-nav,
.vh-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vh-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.70);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition: .2s ease;
}

.vh-link:hover,
.vh-link.active {
  color: #70e0df;
  background: rgba(53,200,200,.15);
}

.vh-link svg,
.vh-icon svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vh-icon {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: .2s ease;
}

.vh-icon:hover {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.vh-icon.pro {
  color: #fbbf24;
}

.vh-login {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.vh-login:hover {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.vh-register {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: #35c8c8;
  color: #07101d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.vh-register:hover {
  background: #54d5d5;
}

@media (max-width: 1050px) {
  .vh-nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .vh-actions .vh-icon:nth-child(-n+3) {
    display: none;
  }

  .vh-login {
    padding-inline: 10px;
  }

  .vh-register {
    padding-inline: 12px;
  }
}

#voyalyo-static-header .vh-nav { min-height: 0; }
