.tips35-official-nav {
  width: min(1180px, calc(100% - 28px));
  min-height: 66px;
  margin: 16px auto 0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: sticky;
  top: 12px;
  z-index: 1000;
  border: 1px solid rgba(0, 229, 255, .2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 42, 209, .08), rgba(0, 229, 255, .1)),
    rgba(5, 7, 15, .82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}

.tips35-official-nav * {
  box-sizing: border-box;
}

.tips35-nav-brand {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  color: #f7fbff;
  font-family: Outfit, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.tips35-nav-brand span {
  color: #00e5ff;
  font-size: .82rem;
  font-weight: 950;
}

.tips35-nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.tips35-nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #b9c7da;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.tips35-nav-links a:hover,
.tips35-nav-links a:focus-visible {
  color: #f7fbff;
  border-color: rgba(0, 229, 255, .26);
  background: rgba(255, 255, 255, .07);
  transform: translateY(-1px);
  outline: none;
}

.tips35-nav-links .tips35-nav-cta {
  color: #061018;
  border-color: transparent;
  background: linear-gradient(135deg, #39ff14, #00e5ff);
  box-shadow: 0 0 28px rgba(0, 229, 255, .24);
}

.tips35-nav-links .tips35-nav-cta:hover,
.tips35-nav-links .tips35-nav-cta:focus-visible {
  color: #061018;
  background: linear-gradient(135deg, #78ff42, #4aecff);
}

@media (max-width: 860px) {
  .tips35-official-nav {
    align-items: stretch;
    flex-direction: column;
    position: static;
  }

  .tips35-nav-brand {
    width: 100%;
    justify-content: center;
  }

  .tips35-nav-links {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .tips35-nav-links a {
    flex: 0 1 auto;
    min-height: 38px;
  }
}

/* tips35-cwv-compact-mobile-nav */
@media (max-width: 860px) {
  .tips35-official-nav {
    min-height: 60px;
    margin-top: 12px;
    padding: 8px 10px;
    align-items: center;
    flex-direction: row;
    position: sticky;
    top: 8px;
  }

  .tips35-nav-brand {
    width: auto;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 8px;
  }

  .tips35-nav-links {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .tips35-nav-links a:not(.tips35-nav-cta) {
    display: none;
  }

  .tips35-nav-links .tips35-nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }
}
