header {
  height: 80px;
  position: fixed;
  background: linear-gradient(to bottom, #0e1212 0%, #0e1212 85%, transparent 100%);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding-right: 16px;
}

header > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  z-index: 1002;
}

header img {
  height: 56px;
  padding-left: 18px;
}

.om-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: calc(100% - 220px);
  margin-left: auto;
  margin-right: 16px;
  position: relative;
}

.om-nav__links {
  list-style: none;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.om-nav__link {
  color: #e8ecef;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.om-nav__link:hover,
.om-nav__item--has-dropdown:hover > .om-nav__link {
  color: #03ccda;
}

.om-nav__link--arrow::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.68rem;
  opacity: 0.8;
  margin-left: 2px;
}

.om-nav__auth {
  display: none;
  align-items: center;
  gap: 10px;
}

.om-btn {
  text-decoration: none;
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid #03ccda;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
}

.om-btn--login {
  color: #03ccda;
  background: transparent;
}

.om-btn--login:hover {
  color: #0e1212;
  background: #03ccda;
}

.om-btn--cta {
  color: #0e1212;
  background: #03ccda;
  box-shadow: 0 8px 20px rgba(3, 204, 218, 0.28);
}

.om-btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(3, 204, 218, 0.34);
}

.om-nav__item--has-dropdown {
  position: relative;
}

.om-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 310px;
  background: #111822;
  border: 1px solid rgba(3, 204, 218, 0.28);
  border-radius: 14px;
  list-style: none;
  margin: 0;
  padding: 10px;
  z-index: 1100;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.om-dropdown--right {
  left: auto;
  right: 0;
  width: 260px;
}

.om-nav__item--has-dropdown:hover > .om-dropdown,
.om-nav__item--has-dropdown.open > .om-dropdown {
  display: block;
}

.om-dropdown__item a {
  text-decoration: none;
  color: #dce3eb;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 9px;
  transition: all 0.18s ease;
}

.om-dropdown__item a:hover {
  background: rgba(3, 204, 218, 0.1);
  color: #03ccda;
}

.om-dropdown__icon {
  margin-top: 2px;
  width: 18px;
  color: #03ccda;
  opacity: 0.9;
}

.om-dropdown__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.om-dropdown__item small {
  display: block;
  color: #9ba9b8;
  font-size: 0.75rem;
  margin-top: 1px;
}

.om-dropdown__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 6px;
}

.om-dropdown__item--danger a:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.om-nav__link--user {
  border: 1px solid rgba(3, 204, 218, 0.35);
  border-radius: 24px;
  padding: 8px 12px;
  background: rgba(3, 204, 218, 0.05);
}

.om-user-name {
  max-width: 130px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.om-chevron {
  font-size: 0.7rem;
  opacity: 0.85;
}

/* Mobile menu trigger and GSAP drawer styles (existing behavior retained) */
.menu-trigger,
.close-trigger {
  position: absolute;
  top: 25px;
  right: 6px;
  display: block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 333;
}

.close-trigger {
  z-index: 5;
  top: 35px;
}

.menu-trigger:hover .menu-trigger-bar:before,
.close-trigger:hover .menu-trigger-bar:before {
  width: 100%;
}

.menu-trigger:hover .close-trigger-bar:before,
.close-trigger:hover .close-trigger-bar:before {
  width: 100%;
}

.menu-trigger-bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin-bottom: 6px;
  transform: rotate(-45deg);
  position: relative;
}

.menu-trigger-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #03ccda;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.menu-trigger-bar.top {
  width: 50%;
}

.menu-trigger-bar.middle:before {
  left: auto;
  right: 0;
}

.menu-trigger-bar.bottom {
  width: 50%;
  margin-left: 50%;
}

.close-trigger-bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #03ccda;
  position: relative;
}

.close-trigger-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.close-trigger-bar.left {
  transform: translateX(100px) translateY(-100px) rotate(-45deg);
}

.close-trigger-bar.right {
  transform: translateX(-100px) translateY(-100px) rotate(45deg);
  top: -3px;
}

.inner-container,
.menu-container {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.inner-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 20;
  display: none;
}

.menu-bg {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: 200vw;
  height: 0;
  background-color: rgba(14, 18, 18, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
  border-radius: 30px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: height 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  will-change: height;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}

.menu {
  display: block;
  width: 100%;
  padding: 16%;
}

.menu li {
  text-align: left;
  display: block;
  padding: 8px 0;
}

.menu a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  padding: 8px 0;
  position: relative;
  font-size: 1.2rem;
}

.menu a:hover {
  color: #03ccda;
}

.menu a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 4px;
  opacity: 0;
  background-color: #03ccda;
  transform: translateX(100px);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.menu a:hover:before {
  opacity: 1;
  transform: translateX(0px);
}

.menu-trigger,
.close-trigger,
.inner-container,
.login-button {
  position: fixed;
}

.login-button {
  right: 64px;
  list-style: none;
  width: 40px;
  height: 40px;
  box-shadow: 0 10px 25px rgba(3, 204, 218, 0.29);
  border-radius: 60px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.login-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: #181e29;
  opacity: 0;
  transition: 0.5s;
}

.login-button::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(45deg, var(--i), var(--j));
  transition: 0.5s;
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
}

.login-button:hover {
  width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}

.login-button:hover .icon {
  display: none;
}

.login-button:hover::before {
  opacity: 1;
}

.login-button:hover::after {
  opacity: 0.5;
}

.login-button span {
  position: absolute;
}

.login-button .title {
  color: #03ccda;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0s;
}

.login-button:hover .title {
  transform: scale(1);
  transition-delay: 0.25s;
}

@media (min-width: 992px) {
  .om-nav__links,
  .om-nav__auth {
    display: flex;
  }

  .menu-trigger,
  .close-trigger,
  .inner-container,
  .menu-container,
  .login-button {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .om-nav {
    width: auto;
    margin-right: 12px;
  }
}
