.weirdo-mobile-navbar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 30px;
  vertical-align: middle;
}

.weirdo-mobile-navbar__toggle {
  width: 30px;
  height: 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.weirdo-mobile-navbar__toggle span {
  width: 24px;
  height: 3px;
  display: block;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.weirdo-mobile-navbar.is-open .weirdo-mobile-navbar__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.weirdo-mobile-navbar.is-open .weirdo-mobile-navbar__toggle span:nth-child(2) {
  opacity: 0;
}

.weirdo-mobile-navbar.is-open .weirdo-mobile-navbar__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.weirdo-mobile-navbar__drawer {
  --weirdo-mobile-navbar-top: 56px;
  position: fixed;
  inset: var(--weirdo-mobile-navbar-top) 0 0;
  z-index: 10000;
  display: none;
  overflow: hidden;
  background: #ffffff;
  color: #333333;
  font-family: 'Be Vietnam Pro', Arial, sans-serif;
}

.weirdo-mobile-navbar.is-open .weirdo-mobile-navbar__drawer,
.weirdo-mobile-navbar__drawer.is-open {
  display: block;
}

.weirdo-mobile-navbar__main,
.weirdo-mobile-navbar__submenu {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--weirdo-mobile-navbar-top));
  padding: 18px 18px 28px;
  overflow-y: auto;
  background: #ffffff;
  transition: transform 0.22s ease;
}

.weirdo-mobile-navbar__main {
  transform: translateX(0);
}

.weirdo-mobile-navbar.has-submenu .weirdo-mobile-navbar__main,
.weirdo-mobile-navbar__drawer.has-submenu .weirdo-mobile-navbar__main {
  transform: translateX(-24%);
}

.weirdo-mobile-navbar__submenu {
  transform: translateX(100%);
}

.weirdo-mobile-navbar__submenu.is-active {
  transform: translateX(0);
}

.weirdo-mobile-navbar__search {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  box-sizing: border-box;
}

.weirdo-mobile-navbar__search input {
  width: 100%;
  max-width: 100%;
  height: 44px;
  padding: 0 72px 0 14px;
  background: #f7f7f7;
  border: 1px solid #d3d3d3;
  border-radius: 12px;
  box-sizing: border-box;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  outline: 0;
}

.weirdo-mobile-navbar__search input:focus {
  border-color: #ff8a00;
  background: #ffffff;
}

.weirdo-mobile-navbar__search input::-webkit-search-cancel-button {
  margin-right: 34px;
  cursor: pointer;
}

.weirdo-mobile-navbar__search button {
  position: absolute;
  right: 8px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.weirdo-mobile-navbar__search button span {
  width: 17px;
  height: 17px;
  display: block;
  border: 2px solid #666666;
  border-radius: 50%;
  position: relative;
}

.weirdo-mobile-navbar__search button span::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: #666666;
  border-radius: 999px;
  transform: rotate(45deg);
}

.weirdo-mobile-navbar__search-results {
  display: none;
  width: 100%;
  max-width: 100%;
  margin: -6px 0 16px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.weirdo-mobile-navbar__search-results.is-visible {
  display: block;
}

.weirdo-mobile-navbar__search-results p {
  margin: 0;
  color: #666666;
  font-size: 13px;
  line-height: 20px;
}

.w2w-mobile-quick-search {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #333333;
}

.w2w-mobile-quick-search__empty {
  color: #666666;
  font-size: 13px;
  line-height: 20px;
}

.w2w-mobile-quick-search__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.w2w-mobile-quick-search__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}

.w2w-mobile-quick-search__head h3 {
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
}

.w2w-mobile-quick-search__head a {
  flex: 0 0 auto;
  color: #666666;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
}

.w2w-mobile-quick-search__head a:hover,
.w2w-mobile-quick-search__head a:focus-visible {
  color: #ff8a00;
  outline: 0;
}

.w2w-mobile-quick-search__movies,
.w2w-mobile-quick-search__posts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.w2w-mobile-quick-search__movie,
.w2w-mobile-quick-search__post {
  display: grid;
  align-items: start;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.w2w-mobile-quick-search__movie {
  grid-template-columns: minmax(72px, 1fr) minmax(0, 3fr);
}

.w2w-mobile-quick-search__post {
  grid-template-columns: minmax(92px, 1fr) minmax(0, 2fr);
}

.w2w-mobile-quick-search__movie img,
.w2w-mobile-quick-search__post img {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #eeeeee;
  border-radius: 6px;
}

.w2w-mobile-quick-search__movie img {
  aspect-ratio: 2 / 3;
}

.w2w-mobile-quick-search__post img {
  aspect-ratio: 10 / 6;
}

.w2w-mobile-quick-search__movie-info,
.w2w-mobile-quick-search__post-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.w2w-mobile-quick-search__movie-info {
  gap: 8px;
  padding-top: 4px;
}

.w2w-mobile-quick-search__post-info {
  gap: 6px;
  padding-top: 1px;
}

.w2w-mobile-quick-search__movie-info strong,
.w2w-mobile-quick-search__post-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: #333333;
  font-weight: 700;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.w2w-mobile-quick-search__movie-info strong {
  font-size: 16px;
  line-height: 21px;
  -webkit-line-clamp: 2;
}

.w2w-mobile-quick-search__post-info strong {
  font-size: 14px;
  line-height: 19px;
  -webkit-line-clamp: 2;
}

.w2w-mobile-quick-search__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.w2w-mobile-quick-search__genres span {
  max-width: 100%;
  padding: 4px 8px;
  overflow: hidden;
  background: #8d8d8d;
  border-radius: 4px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.w2w-mobile-quick-search__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.w2w-mobile-quick-search__rating span {
  color: #ff8a00;
  font-size: 16px;
  line-height: 1;
}

.w2w-mobile-quick-search__meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.w2w-mobile-quick-search__author {
  color: #333333;
  font-weight: 700;
}

.weirdo-mobile-navbar__menu {
  display: flex;
  flex-direction: column;
}

.weirdo-mobile-navbar__item {
  width: 100%;
  min-height: 56px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 0 8px 0 10px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  color: #333333;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.weirdo-mobile-navbar__item--has-children {
  grid-template-columns: 44px minmax(0, 1fr) 22px;
}

.weirdo-mobile-navbar__item--child {
  grid-template-columns: minmax(0, 1fr);
  padding-left: 10px;
}

.weirdo-mobile-navbar__item-icon,
.weirdo-mobile-navbar__item-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.weirdo-mobile-navbar__item-icon svg,
.weirdo-mobile-navbar__item-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.weirdo-mobile-navbar__item-arrow svg {
  width: 16px;
  height: 16px;
}

.weirdo-mobile-navbar__item-label {
  overflow: hidden;
  color: currentColor;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weirdo-mobile-navbar__item:hover,
.weirdo-mobile-navbar__item:focus-visible,
.weirdo-mobile-navbar__item.is-active {
  color: #ff8a00;
  outline: 0;
}

.weirdo-mobile-navbar__back {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #333333;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.weirdo-mobile-navbar__back span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  transform: rotate(180deg);
}

.weirdo-mobile-navbar__back svg {
  width: 20px;
  height: 20px;
}

.weirdo-mobile-navbar__welcome {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(96px, 2fr);
  align-items: end;
  gap: 12px;
  margin-top: auto;
  padding: 48px 12px 0;
}

.weirdo-mobile-navbar__welcome-copy strong {
  display: block;
  margin: 0 0 12px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.weirdo-mobile-navbar__welcome-copy p {
  margin: 0 0 16px;
  color: #4b4b4b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.weirdo-mobile-navbar__join {
  min-width: 158px;
  min-height: 40px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #ff8a00;
  border-radius: 6px;
  color: #ff8a00;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.weirdo-mobile-navbar__welcome-img {
  width: 100%;
  max-width: 156px;
  justify-self: end;
  object-fit: contain;
}

html.weirdo-mobile-navbar-open {
  overflow: hidden;
}

.w2w-desktop-navbar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: 'Be Vietnam Pro', Arial, sans-serif;
}

.w2w-desktop-navbar__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.w2w-desktop-navbar__item--has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

.w2w-desktop-navbar__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.w2w-desktop-navbar__icon,
.w2w-desktop-navbar__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.w2w-desktop-navbar__icon svg,
.w2w-desktop-navbar__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.w2w-desktop-navbar__arrow svg {
  width: 13px;
  height: 13px;
}

.w2w-desktop-navbar__label {
  color: currentColor;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

.w2w-desktop-navbar__link:hover,
.w2w-desktop-navbar__link:focus-visible,
.w2w-desktop-navbar__item.is-open > .w2w-desktop-navbar__link {
  background: rgba(255, 138, 0, 0.08);
  color: #ff8a00;
  outline: 0;
}

.w2w-desktop-navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10001;
  width: max-content;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.w2w-desktop-navbar__item:hover > .w2w-desktop-navbar__dropdown,
.w2w-desktop-navbar__item:focus-within > .w2w-desktop-navbar__dropdown,
.w2w-desktop-navbar__item.is-open > .w2w-desktop-navbar__dropdown {
  display: flex;
}

.w2w-desktop-navbar__dropdown-link {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.w2w-desktop-navbar__dropdown-link:hover,
.w2w-desktop-navbar__dropdown-link:focus-visible {
  background: rgba(255, 138, 0, 0.08);
  color: #ff8a00;
  outline: 0;
}
