/* assets/css/menu.css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #050505;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.top-bar {
  background: #ffffff;
  color: #050505;
  min-height: 34px;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.main-nav {
  min-height: 86px;
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 58px;
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
}
.nav-links a {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--dark);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
}
.btn-live {
  background: #ffffff;
  color: #050505 !important;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
}
.btn-live:hover {
  background: #e8e8e8;
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.2);
  background: #ffffff;
  color: #050505;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
}
@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    background: #050505;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .25s ease;
  }


 .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    color: #ffffff;
  }
  .btn-live {
    justify-content: center;
    color: #050505 !important;
  }
}