html.mnx-is-mobile {
  --mnx-m-header-h: 52px;
  --mnx-m-tabbar-h: 62px;
  --mnx-m-safe-t: env(safe-area-inset-top, 0px);
  --mnx-m-safe-b: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 900px) {
  html.mnx-is-mobile {
    --section-padding: 40px 16px;
  }
}

html.mnx-is-mobile body {
  overflow-x: hidden;
}

html.mnx-is-mobile footer.footer {
  position: relative;
  z-index: 10;
  padding-bottom: calc(var(--mnx-m-tabbar-h) + var(--mnx-m-safe-b) + 90px);
}

html.mnx-is-mobile a,
html.mnx-is-mobile button {
  -webkit-tap-highlight-color: transparent;
}

.mnx-m-header {
  position: fixed;
  top: calc(var(--mnx-m-safe-t) + 10px);
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury), visibility 0.4s;
}

.mnx-m-header.mnx-m-header--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mnx-m-infobar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 5px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(201, 162, 39, 0.06);
}

.mnx-m-infobar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 203, 119, 0.6), transparent);
  pointer-events: none;
}

.mnx-m-infobar__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  margin-right: 2px;
}

.mnx-m-infobar__brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px rgba(46, 204, 113, 0.6);
  animation: mnx-brand-pulse 2.5s ease-in-out infinite;
}

@keyframes mnx-brand-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px rgba(46, 204, 113, 0.6);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 3px rgba(46, 204, 113, 0.3);
  }
}

.mnx-m-infobar__brand-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mnx-m-infobar__metrics {
  display: flex;
  align-items: center;
  gap: 0;
}

.mnx-m-infobar__sep {
  width: 1px;
  height: 16px;
  background: rgba(201, 162, 39, 0.18);
  flex-shrink: 0;
}

.mnx-m-infobar__pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s var(--ease-luxury);
}

.mnx-m-infobar__pill:active {
  background: rgba(201, 162, 39, 0.16);
}

.mnx-m-infobar__icon {
  display: flex;
  color: var(--color-gold-light);
}

.mnx-m-infobar__icon svg {
  width: 14px;
  height: 14px;
}

.mnx-m-infobar__value {
  font-family: var(--font-numeral);
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}

.mnx-m-infobar__dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fbf6a;
  border: 1.5px solid rgba(11, 11, 12, 0.9);
}

.mnx-m-infobar__dot.mnx-m-dot--moderate {
  background: #e08a3c;
}

.mnx-m-infobar__dot.mnx-m-dot--bad {
  background: #c9392f;
}

.mnx-m-infobar__lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 9px;
  margin-left: auto;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.28);
  font-family: var(--font-display, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  touch-action: manipulation;
  transition: all 0.2s ease;
  user-select: none;
  flex-shrink: 0;
}

.mnx-m-infobar__lang:active {
  transform: scale(0.94);
  background: rgba(201, 162, 39, 0.18);
}

.mnx-m-infobar__lang .is-active {
  color: #e8cb77;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(232, 203, 119, 0.4);
}

.mnx-m-infobar__lang .mnx-m-lang-sep {
  opacity: 0.35;
  font-size: 0.65rem;
}


@media (max-width: 360px) {
  .mnx-m-infobar__pill {
    padding: 6px 7px;
    gap: 4px;
  }

  .mnx-m-infobar__value {
    font-size: 0.68rem;
  }

  .mnx-m-infobar__brand-text {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .mnx-m-infobar__brand {
    padding: 6px 8px 6px 8px;
  }

  .mnx-m-infobar__icon svg {
    width: 12px;
    height: 12px;
  }
}

.mnx-m-dropdown--from-tabbar {
  position: fixed;
  left: var(--mnx-m-dd-left, 50%);
  bottom: calc(var(--mnx-m-tabbar-h) + var(--mnx-m-safe-b) + 6px);
  transform: translateX(-50%) translateY(10px) scale(0.94);
  transform-origin: center bottom;
  z-index: 615;
  width: min(268px, calc(100vw - 28px));
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(201, 162, 39, 0);
  border-radius: 22px;
  box-shadow: none;
  transition: max-height 0.32s var(--ease-luxury), opacity 0.22s var(--ease-luxury),
    border-color 0.28s var(--ease-luxury), transform 0.32s var(--ease-luxury);
  pointer-events: none;
}

.mnx-m-dropdown--from-tabbar.is-open {
  max-height: min(60vh, 336px);
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 46px rgba(0, 0, 0, 0.48);
  pointer-events: auto;
}

.mnx-m-dropdown__inner {
  max-height: min(60vh, 336px);
  overflow-y: auto;
  padding: 7px;
}

.mnx-m-dropdown--from-tabbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 203, 119, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

.mnx-m-dropdown--from-tabbar::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 12px;
  height: 12px;
  background: rgba(11, 11, 12, 0.95);
  border: 1px solid rgba(201, 162, 39, 0);
  border-top: none;
  border-left: none;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 0 0 3px 0;
  opacity: 0;
  transition: opacity 0.22s var(--ease-luxury), border-color 0.28s var(--ease-luxury);
  pointer-events: none;
  z-index: -1;
}

.mnx-m-dropdown--from-tabbar.is-open::after {
  opacity: 1;
  border-color: rgba(201, 162, 39, 0.3);
}

.mnx-m-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  font-weight: 500;
  transition: background 0.2s;
}

.mnx-m-dropdown__item:active {
  background: rgba(201, 162, 39, 0.14);
}

.mnx-m-dropdown__icon {
  display: flex;
  flex-shrink: 0;
  color: var(--color-gold-light);
}

.mnx-m-dropdown__icon svg {
  width: 18px;
  height: 18px;
}

.mnx-m-dropdown--from-header {
  position: fixed;
  left: var(--mnx-m-dd-left, 50%);
  top: calc(var(--mnx-m-safe-t) + 62px);
  transform: translateX(-50%) translateY(-10px) scale(0.94);
  transform-origin: center top;
  z-index: 615;
  width: min(300px, calc(100vw - 28px));
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(201, 162, 39, 0);
  border-radius: 22px;
  box-shadow: none;
  transition: max-height 0.32s var(--ease-luxury), opacity 0.22s var(--ease-luxury),
    border-color 0.28s var(--ease-luxury), transform 0.32s var(--ease-luxury);
  pointer-events: none;
}

.mnx-m-dropdown--from-header.is-open {
  max-height: min(74vh, 480px);
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 46px rgba(0, 0, 0, 0.48);
  pointer-events: auto;
}

.mnx-m-dropdown--from-header .mnx-m-dropdown__inner {
  max-height: min(74vh, 480px);
}

.mnx-m-dropdown--from-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 203, 119, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

.mnx-m-dropdown--from-header::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -5px;
  width: 12px;
  height: 12px;
  background: rgba(11, 11, 12, 0.95);
  border: 1px solid rgba(201, 162, 39, 0);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px 0 0 0;
  opacity: 0;
  transition: opacity 0.22s var(--ease-luxury), border-color 0.28s var(--ease-luxury);
  pointer-events: none;
  z-index: -1;
}

.mnx-m-dropdown--from-header.is-open::after {
  opacity: 1;
  border-color: rgba(201, 162, 39, 0.3);
}

.mnx-m-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 610;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.mnx-m-overlay.is-visible {
  display: block;
  background: rgba(0, 0, 0, 0.55);
}

.mnx-m-env-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  max-width: 100%;
}

.mnx-m-env-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s var(--ease-luxury);
}

.mnx-m-env-tab svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mnx-m-env-tab.is-active {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--color-black);
  font-weight: 600;
}

.mnx-m-env-value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.mnx-m-env-value-row__num {
  font-family: var(--font-numeral);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.mnx-m-env-value-row__unit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.mnx-m-env-status {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.mnx-m-env-chart-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  margin-bottom: 18px;
}

#mnx-m-env-chart {
  width: 100% !important;
  height: 100% !important;
}

.mnx-m-env-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.mnx-m-env-download svg {
  width: 16px;
  height: 16px;
}

.mnx-m-env-download:active {
  background: var(--color-gold);
  color: var(--color-black);
}

.mnx-m-tabbar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + var(--mnx-m-safe-b));
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 64px;
  background: rgba(28, 28, 30, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury), visibility 0.4s;
}

.mnx-m-tabbar.mnx-m-tabbar--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Tab Button ---- */
.mnx-m-tabbar__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  height: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: none;
  transition: color 0.3s ease;
}

.mnx-m-tabbar__icon {
  position: relative;
  z-index: 1;
  display: flex;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.mnx-m-tabbar__icon svg {
  width: 22px;
  height: 22px;
}

.mnx-m-tabbar__label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.mnx-m-tabbar__btn.is-active,
.mnx-m-tabbar__btn.is-dropdown-active {
  color: #D4AF37;
}

.mnx-m-tabbar__btn.is-active .mnx-m-tabbar__icon,
.mnx-m-tabbar__btn.is-dropdown-active .mnx-m-tabbar__icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

.mnx-m-tabbar__btn.is-active .mnx-m-tabbar__icon svg,
.mnx-m-tabbar__btn.is-dropdown-active .mnx-m-tabbar__icon svg {
  stroke-width: 2.2;
}

.mnx-m-tabbar__btn.is-active .mnx-m-tabbar__label {
  transform: translateY(-1px);
  font-weight: 600;
}

.mnx-m-dropdown-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.mnx-m-dropdown-search__icon {
  position: absolute;
  left: 14px;
  display: flex;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.mnx-m-dropdown-search__icon svg {
  width: 15px;
  height: 15px;
}

.mnx-m-dropdown-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 11px 14px 11px 38px;
  color: var(--color-white);
  font-size: 0.86rem;
  font-family: var(--font-body);
}

.mnx-m-dropdown-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.mnx-m-dropdown-search input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
}

.mnx-m-dropdown-search-results {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s var(--ease-luxury);
}

.mnx-m-dropdown-search-results.is-open {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 4px;
}

.mnx-m-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 9px 8px;
  border-radius: 14px;
  text-align: left;
  transition: background 0.2s;
}

.mnx-m-search-result:active {
  background: rgba(201, 162, 39, 0.14);
}

.mnx-m-search-result img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.mnx-m-search-result strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-white);
}

.mnx-m-search-result small {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.mnx-m-search-result__pin {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.mnx-m-search-empty {
  padding: 16px 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.mnx-m-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 10px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  transition: background 0.2s;
}

.mnx-m-menu-item:active {
  background: rgba(201, 162, 39, 0.14);
}

.mnx-m-menu-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  flex-shrink: 0;
  color: var(--color-gold-light);
}

.mnx-m-menu-item__icon svg {
  width: 18px;
  height: 18px;
}

.mnx-m-menu-item--danger .mnx-m-menu-item__icon {
  color: #e2685f;
}

.mnx-m-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.mnx-m-menu-account-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 12px;
}

.mnx-m-menu-account-head img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.4);
  flex-shrink: 0;
}

.mnx-m-menu-account-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-white);
}

.mnx-m-menu-account-email {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.mnx-m-menu-auth-row {
  display: flex;
  gap: 10px;
  padding: 6px 10px 4px;
}

.mnx-m-menu-auth-row .btn {
  flex: 1;
  justify-content: center;
}

.mnx-m-menu-item--danger {
  color: #e2685f;
}

html.mnx-is-mobile .hero {
  height: 100dvh;
  min-height: 480px;
}

html.mnx-is-mobile .hero__content {
  padding: 0 22px;
}

html.mnx-is-mobile .hero__title {
  font-size: clamp(1.45rem, 5.8vw, 2.2rem);
  line-height: 1.22;
}

html.mnx-is-mobile .hero__subtitle {
  font-size: 0.88rem;
}

html.mnx-is-mobile .hero__cta {
  flex-direction: column;
  width: 100%;
  max-width: 260px;
  gap: 12px;
}

html.mnx-is-mobile .hero__cta .btn {
  width: 100%;
}

html.mnx-is-mobile .page-hero {
  height: 46vh;
  min-height: 280px;
  max-height: 380px;
}

html.mnx-is-mobile .page-hero__title {
  font-size: clamp(1.4rem, 6.5vw, 2rem);
}

html.mnx-is-mobile .page-hero__subtitle {
  font-size: 0.82rem;
  line-height: 1.55;
}

html.mnx-is-mobile .page-hero__content {
  padding: 0 20px 24px;
}

html.mnx-is-mobile .quick-jump {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0;
  padding: 14px 16px;
  background: var(--color-black);
  position: relative;
  z-index: 6;
}

html.mnx-is-mobile .quick-jump::-webkit-scrollbar {
  display: none;
}

html.mnx-is-mobile .event-popup__card {
  max-width: 92vw;
}

html.mnx-is-mobile .showcase {
  padding: 36px 0 32px;
}

html.mnx-is-mobile .showcase__slider {
  border-radius: 20px;
  margin: 0 16px;
  height: auto;
  min-height: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

html.mnx-is-mobile .showcase__slides {
  display: grid;
}

html.mnx-is-mobile .showcase__slide {
  position: relative;
  grid-area: 1 / 1;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto !important;
  height: auto;
}

html.mnx-is-mobile .showcase__slide-img {
  position: relative;
  height: 52vw;
  max-height: 240px;
  min-height: 180px;
}

html.mnx-is-mobile .showcase__slide-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 22px 22px 26px;
}

html.mnx-is-mobile .showcase__slide-info>* {
  flex-shrink: 0;
}

html.mnx-is-mobile .showcase__slide-tag {
  font-size: 0.7rem;
  margin-bottom: 0;
}

html.mnx-is-mobile .showcase__slide-title {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.3;
}

html.mnx-is-mobile .showcase__slide-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

html.mnx-is-mobile .showcase__slide-meta {
  margin-bottom: 0;
  font-size: 0.74rem;
  flex-wrap: wrap;
  gap: 10px 16px;
}

html.mnx-is-mobile .showcase__btn {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  align-self: flex-start;
  margin-top: 12px !important;
  padding: 10px 24px;
}

html.mnx-is-mobile .showcase__nav {
  left: 20px;
  bottom: auto;
  top: 16px;
}

html.mnx-is-mobile .showcase__arrows {
  display: none;
}

html.mnx-is-mobile .sponsor-widget {
  padding: 14px 16px;
}

html.mnx-is-mobile .sponsor-widget__inner img {
  max-height: 60px;
}

html.mnx-is-mobile .widget-section {
  padding: 32px 0;
}

html.mnx-is-mobile .section-head {
  margin-bottom: 16px;
  gap: 8px;
}

html.mnx-is-mobile .eyebrow {
  font-size: 0.68rem;
}

html.mnx-is-mobile .section-title {
  font-size: clamp(1.1rem, 4.6vw, 1.4rem);
  margin: 4px 0 6px;
}

html.mnx-is-mobile .section-sub {
  font-size: 0.8rem;
  line-height: 1.5;
}

html.mnx-is-mobile .widget-grid,
html.mnx-is-mobile #home-videos-grid {
  display: flex !important;
  grid-template-columns: unset !important;
  gap: 16px !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 18px !important;
  margin: 0 !important;
  width: 100% !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

html.mnx-is-mobile .widget-grid::-webkit-scrollbar,
html.mnx-is-mobile #home-videos-grid::-webkit-scrollbar {
  display: none;
}

html.mnx-is-mobile .widget-card {
  flex: 0 0 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
}

html.mnx-is-mobile .widget-card:hover,
html.mnx-is-mobile .widget-card:active,
html.mnx-is-mobile .widget-card:focus {
  transform: none;
}

html.mnx-is-mobile .widget-card__img-wrap {
  height: 125px;
  flex-shrink: 0;
}

html.mnx-is-mobile .widget-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

html.mnx-is-mobile .widget-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.mnx-is-mobile .widget-card__desc {
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

html.mnx-is-mobile .widget-card__rating,
html.mnx-is-mobile .widget-card__coords {
  font-size: 0.68rem;
}

html.mnx-is-mobile .widget-card__coords {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html.mnx-is-mobile .widget-card__footer {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

html.mnx-is-mobile .widget-card--festival {
  flex: 0 0 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
}

html.mnx-is-mobile #home-videos-grid .video-card {
  flex: 0 0 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  scroll-snap-align: start;
}

html.mnx-is-mobile #section-recommend {
  padding: 28px 0 30px;
  background: transparent;
}

html.mnx-is-mobile #section-recommend .section-head {
  padding: 0 16px;
}

html.mnx-is-mobile #section-recommend .widget-card {
  border: 1px solid rgba(201, 162, 39, 0.22);
}

html.mnx-is-mobile .category-section {
  padding: 30px 0;
}

html.mnx-is-mobile .category-section__head {
  margin-bottom: 16px;
}

html.mnx-is-mobile .category-section__count {
  font-size: 0.74rem;
}

html.mnx-is-mobile .place-card,
html.mnx-is-mobile .video-card {
  width: 168px;
}

html.mnx-is-mobile .place-card__img-wrap {
  height: 118px;
}

html.mnx-is-mobile .place-card__body {
  padding: 11px 12px 14px;
}

html.mnx-is-mobile .place-card__title {
  font-size: 0.84rem;
}

html.mnx-is-mobile .place-card__desc {
  font-size: 0.72rem;
  -webkit-line-clamp: 2;
}

html.mnx-is-mobile .place-card__meta {
  font-size: 0.68rem;
  padding-top: 8px;
}

html.mnx-is-mobile .scroll-row__arrow {
  display: none;
}

html.mnx-is-mobile .site-map {
  padding: 30px 0 26px;
}

html.mnx-is-mobile .site-map__legend {
  gap: 8px 12px;
  margin-bottom: 16px;
  font-size: 0.72rem;
}

html.mnx-is-mobile .site-map__legend-item {
  font-size: 0.72rem;
}

html.mnx-is-mobile .site-map__frame {
  height: min(62vh, 420px);
  min-height: 320px;
  border-radius: 18px;
  margin: 0 -16px;
  border-radius: 0;
}

html.mnx-is-mobile .site-map__hint {
  font-size: 0.72rem;
  padding: 0 16px;
}

html.mnx-is-mobile .leaflet-control-zoom a {
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  font-size: 1.1rem !important;
}

html.mnx-is-mobile .lifestyle-stats {
  margin-top: -20px;
  padding: 0 16px;
}

html.mnx-is-mobile .lifestyle-stat {
  padding: 14px 8px;
}

html.mnx-is-mobile .lifestyle-stat__value {
  font-size: 1.15rem;
}

html.mnx-is-mobile .lifestyle-stat__label {
  font-size: 0.6rem;
}

html.mnx-is-mobile .lifestyle-interest-banner {
  margin-top: 28px;
  padding: 18px 18px;
  border-radius: 20px;
}

html.mnx-is-mobile .lifestyle-interest-banner__count {
  font-size: 1.6rem;
}

html.mnx-is-mobile .lifestyle-interest-banner__label {
  font-size: 0.82rem;
}

html.mnx-is-mobile .lifestyle-popular {
  padding: 34px 0 10px;
}

html.mnx-is-mobile .lifestyle-popular-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

html.mnx-is-mobile .lifestyle-popular-card--rank-1 .lifestyle-popular-card__img-wrap {
  height: 170px;
}

html.mnx-is-mobile .lifestyle-popular-card__img-wrap {
  height: 150px;
}

html.mnx-is-mobile .lifestyle-grid-section {
  padding: 0 0 40px;
}

html.mnx-is-mobile .lifestyle-grid-wrap {
  display: block;
}

html.mnx-is-mobile .lifestyle-ad {
  display: none;
}

html.mnx-is-mobile .lifestyle-grid-track {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

html.mnx-is-mobile .lifestyle-card__img-wrap {
  height: 118px;
}

html.mnx-is-mobile .lifestyle-card__body {
  padding: 10px 12px 13px;
}

html.mnx-is-mobile .lifestyle-card__title {
  font-size: 0.82rem;
}

html.mnx-is-mobile .lifestyle-card__desc {
  font-size: 0.7rem;
}

html.mnx-is-mobile .lifestyle-video {
  padding: 34px 0 40px;
}

html.mnx-is-mobile .place-modal {
  padding: 0;
  align-items: flex-end;
  justify-content: center;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html.mnx-is-mobile .place-modal__card {
  width: 100vw;
  max-width: none;
  max-height: 92dvh;
  border-radius: 32px 32px 0 0;
  background: #ffffff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: none;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  margin: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

html.mnx-is-mobile .place-modal.is-open .place-modal__card {
  transform: translateY(0);
}

html.mnx-is-mobile .place-modal__layout {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 88dvh;
  overflow: hidden;
  grid-template-columns: unset;
  grid-template-rows: unset;
}

html.mnx-is-mobile .place-modal__gallery {
  flex: 0 0 auto;
  position: relative;
  background: #0d0e12;
  overflow: hidden;
}

html.mnx-is-mobile .place-modal__gallery-viewport {
  position: relative;
  width: 100% !important;
  height: 280px !important;
  max-height: 40dvh !important;
  aspect-ratio: auto !important;
  overflow: hidden;
  background: #0d0e12;
}

html.mnx-is-mobile .place-modal__gallery-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0e12;
  overflow: hidden;
}

/* Ambient soft-blurred backdrop behind uncropped image */
html.mnx-is-mobile .place-modal__gallery-bg {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  object-fit: cover !important;
  filter: blur(30px) brightness(0.65);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.1);
}

/* 100% UNUNCROPPED FOREGROUND IMAGE */
html.mnx-is-mobile .place-modal__gallery-fg {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  cursor: zoom-in;
}

html.mnx-is-mobile .place-modal__close {
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

html.mnx-is-mobile .place-modal__arrow {
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

html.mnx-is-mobile .place-modal__arrow--prev {
  left: 10px;
}

html.mnx-is-mobile .place-modal__arrow--next {
  right: 10px;
}

html.mnx-is-mobile .place-modal__gallery-counter {
  top: 12px;
  left: 12px;
  right: auto;
  z-index: 8;
  background: rgba(11, 11, 12, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

html.mnx-is-mobile .place-modal__gallery-dots {
  padding: 6px 0 8px;
  background: #0d0e12;
}

html.mnx-is-mobile .place-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
}

html.mnx-is-mobile .place-modal__scroll {
  padding: 18px 20px 28px;
}

html.mnx-is-mobile .place-modal__category {
  font-size: 0.7rem;
  color: var(--color-gold-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

html.mnx-is-mobile .place-modal__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

html.mnx-is-mobile .place-modal__desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: #4a4a52;
  margin-bottom: 14px;
}

/* ----------------------------------------------------------
   VIDEO MODAL — Bottom sheet popup on mobile
---------------------------------------------------------- */
html.mnx-is-mobile .video-modal {
  padding: 0;
  align-items: flex-end;
  justify-content: center;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html.mnx-is-mobile .video-modal__card {
  width: 100vw;
  max-width: none;
  max-height: 92dvh;
  border-radius: 32px 32px 0 0;
  background: #ffffff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  border: none;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  grid-template-columns: unset;
  grid-template-rows: unset;
  margin: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

html.mnx-is-mobile .video-modal.is-open .video-modal__card {
  transform: translateY(0);
}

html.mnx-is-mobile .video-modal__player-wrap {
  flex: 0 0 auto;
  position: relative;
  width: 100% !important;
  height: 260px !important;
  max-height: 38dvh !important;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

html.mnx-is-mobile .video-modal__player {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

html.mnx-is-mobile .video-modal__close {
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

html.mnx-is-mobile .video-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
}

html.mnx-is-mobile .video-modal__scroll {
  padding: 18px 20px 24px;
}

/* ----------------------------------------------------------
   AUTH MODAL — Bottom sheet popup on mobile
---------------------------------------------------------- */
html.mnx-is-mobile .auth-modal {
  padding: 0;
  align-items: flex-end;
  justify-content: center;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html.mnx-is-mobile .auth-modal__card {
  width: 100vw;
  max-width: none;
  max-height: 90dvh;
  border-radius: 32px 32px 0 0;
  background: #ffffff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  border: none;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

html.mnx-is-mobile .auth-modal.is-open .auth-modal__card {
  transform: translateY(0);
}

html.mnx-is-mobile .auth-modal__close {
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-ivory);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

html.mnx-is-mobile .auth-modal__body {
  padding: 34px 22px 28px;
}

/* ----------------------------------------------------------
   GALLERY / ABOUT MODAL — centered luxury popup on mobile
---------------------------------------------------------- */
html.mnx-is-mobile .gallery-modal {
  padding: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html.mnx-is-mobile .gallery-modal__content {
  width: 100%;
  max-width: 420px;
  max-height: 85dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html.mnx-is-mobile .gallery-modal__img {
  width: 100%;
  max-height: 68dvh;
  object-fit: contain !important;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

html.mnx-is-mobile .gallery-modal__close {
  top: -42px;
  right: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ----------------------------------------------------------
   14. CHECK-IN PAGE
---------------------------------------------------------- */
html.mnx-is-mobile .upload-slots {
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

html.mnx-is-mobile .upload-video-btn {
  padding: 10px 14px;
}

html.mnx-is-mobile .upload-video-btn__text strong {
  font-size: 0.8rem;
}

html.mnx-is-mobile .upload-video-btn__text small {
  font-size: 0.68rem;
}

html.mnx-is-mobile .upload-video-preview {
  padding: 8px 12px;
  gap: 10px;
}

html.mnx-is-mobile .upload-video-preview__thumb-wrap {
  width: 48px;
  height: 48px;
}

html.mnx-is-mobile .feed-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

html.mnx-is-mobile .post-card,
html.mnx-is-mobile .composer {
  border-radius: 18px;
}

/* ----------------------------------------------------------
   15. VIDEOS PAGE
---------------------------------------------------------- */
html.mnx-is-mobile .videos-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px;
}

html.mnx-is-mobile .videos-page__filters {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
}

/* ----------------------------------------------------------
   16. PROFILE PAGE
---------------------------------------------------------- */
html.mnx-is-mobile .profile-cover {
  height: 150px;
}

html.mnx-is-mobile .profile-cover__avatar {
  width: 80px;
  height: 80px;
}

html.mnx-is-mobile .profile-header {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

html.mnx-is-mobile .profile-stats {
  flex-wrap: nowrap;
  overflow-x: auto;
}

html.mnx-is-mobile .profile-stat {
  min-width: 78px;
  flex-shrink: 0;
}

html.mnx-is-mobile .profile-checkins-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

/* ----------------------------------------------------------
   17. WEATHER PAGE
---------------------------------------------------------- */
html.mnx-is-mobile .weather-hero {
  height: 42vw;
  min-height: 170px;
}

html.mnx-is-mobile .weather-current__temp {
  font-size: clamp(2.6rem, 13vw, 4.2rem);
}

html.mnx-is-mobile .metric-panel {
  padding: 34px 0;
}

html.mnx-is-mobile .metric-panel__body {
  grid-template-columns: 1fr;
  gap: 16px;
}

html.mnx-is-mobile .gauge-card,
html.mnx-is-mobile .chart-card {
  min-width: 0;
  padding: 20px 16px 18px;
}

html.mnx-is-mobile .stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 10px;
}

html.mnx-is-mobile .chart-card__canvas-wrap {
  height: 220px;
  min-width: 0;
}

html.mnx-is-mobile .chart-card__canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

html.mnx-is-mobile .gauge {
  width: 150px;
  height: 150px;
}

html.mnx-is-mobile footer.footer {
  position: relative;
  z-index: 10;
  padding-top: 36px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: calc(var(--mnx-m-tabbar-h) + var(--mnx-m-safe-b) + 90px);
}

html.mnx-is-mobile .footer__inner {
  padding-bottom: 24px;
}

html.mnx-is-mobile .footer__brand {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html.mnx-is-mobile .footer__logo {
  justify-content: center;
  margin-bottom: 10px;
}

html.mnx-is-mobile .footer__tagline {
  font-size: 0.78rem;
  margin-bottom: 14px;
}

html.mnx-is-mobile .footer__social-section {
  margin-top: 16px;
  text-align: center;
}

html.mnx-is-mobile .footer__social-heading {
  font-size: 0.72rem;
  margin-bottom: 10px;
}

html.mnx-is-mobile .footer__socials {
  justify-content: center;
  gap: 10px;
}

html.mnx-is-mobile .footer__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  font-size: 0.78rem;
  min-height: 40px;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(201, 162, 39, 0.25);
}

html.mnx-is-mobile .footer__social-img {
  width: 24px;
  height: 24px;
}

/* NOTE: intentionally NOT using :nth-of-type(odd/even) here — that
   selector counts by TAG NAME only, not class, so with .footer__brand
   also being a <div> sibling, nth-of-type indices get shifted and
   silently drop the 4th .footer__col from the pairing. A plain flex-
   wrap on the container is both simpler and immune to that trap. */
html.mnx-is-mobile .footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

html.mnx-is-mobile .footer__brand {
  flex: 0 0 100%;
}

html.mnx-is-mobile .footer__col {
  flex: 0 0 calc(50% - 8px);
  margin-bottom: 22px;
}

html.mnx-is-mobile .footer__col h5 {
  font-size: 0.74rem;
  margin-bottom: 12px;
}

html.mnx-is-mobile .footer__col {
  gap: 6px;
}

html.mnx-is-mobile .footer__col a {
  display: flex;
  align-items: center;
  font-size: 0.84rem;
  padding: 6px 0;
  min-height: 36px;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(201, 162, 39, 0.25);
}

html.mnx-is-mobile .footer__contact-info {
  font-size: 0.76rem;
  line-height: 1.5;
  padding-top: 4px;
}

html.mnx-is-mobile .footer__bottom {
  flex-direction: column;
  text-align: center;
  gap: 12px;
  padding: 20px 0 0;
}

html.mnx-is-mobile .footer__legal {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

html.mnx-is-mobile .footer__legal a {
  display: inline-block;
  padding: 8px 12px;
  font-size: 0.78rem;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(201, 162, 39, 0.25);
}

/* ----------------------------------------------------------
   19. UTILITY / A11Y
---------------------------------------------------------- */
html.mnx-is-mobile .widget-card:hover,
html.mnx-is-mobile .widget-card:active,
html.mnx-is-mobile .place-card:hover,
html.mnx-is-mobile .place-card:active,
html.mnx-is-mobile .lifestyle-card:hover,
html.mnx-is-mobile .lifestyle-card:active,
html.mnx-is-mobile .lifestyle-popular-card:hover,
html.mnx-is-mobile .lifestyle-popular-card:active,
html.mnx-is-mobile .video-card:hover,
html.mnx-is-mobile .video-card:active {
  transform: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Admin panel is desktop-focused; on mobile, show a brief notice
   instead of trying to cram the full dashboard into a phone screen. */
html.mnx-is-mobile .admin-shell {
  display: none !important;
}

html.mnx-is-mobile .admin-mobile-notice {
  display: flex !important;
}

/* ---- Admin mobile notice ---- */
.admin-mobile-notice {
  display: none;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 12px;
  background: var(--color-black);
  color: var(--color-white);
}

.admin-mobile-notice__icon {
  display: flex;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.admin-mobile-notice__icon svg {
  width: 44px;
  height: 44px;
}

.admin-mobile-notice h2 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.3rem;
}

.admin-mobile-notice p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ============================================================
   MOBILE ZOOM LOCK & iOS AUTO-ZOOM PREVENTION
   Ensures iOS Safari & mobile browsers never auto-zoom on input
   focus, button click, or accidental pinch/double-tap.
   ============================================================ */
@media screen and (max-width: 900px) {

  html,
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  input,
  select,
  textarea,
  .auth-field input,
  .mnx-m-dropdown-search input,
  .checkin-menu__search input,
  .navbar__mobile-search input,
  .composer input,
  .composer textarea,
  .post-card__comment-form input,
  .note-editor input,
  .note-editor textarea,
  .ai-guide-chat__input,
  .video-modal__comment-form input,
  .profile-name-edit input {
    font-size: 16px !important;
    touch-action: manipulation;
  }

  button,
  a,
  .btn,
  [role="button"],
  [data-place-open],
  [data-video-open],
  [data-auth-open],
  .place-card,
  .widget-card,
  .lifestyle-card,
  .lifestyle-popular-card,
  .video-card {
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ----------------------------------------------------------
   Post Card Overlays (Mobile UI enhancements)
---------------------------------------------------------- */
html.mnx-is-mobile .post-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #000;
}

html.mnx-is-mobile .post-card__gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 20px;
}

html.mnx-is-mobile .post-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-white);
  padding: 20px;
  pointer-events: none;
}

html.mnx-is-mobile .post-card__body>* {
  pointer-events: auto;
}

html.mnx-is-mobile .post-card__author-name,
html.mnx-is-mobile .post-card__place {
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

html.mnx-is-mobile .post-card__time {
  color: rgba(255, 255, 255, 0.7);
}

html.mnx-is-mobile .post-card__hashtags span {
  color: var(--color-gold-light);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

html.mnx-is-mobile .post-card__actions {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 10px;
  margin-top: 10px;
}

html.mnx-is-mobile .post-card__action-btn {
  color: rgba(255, 255, 255, 0.9);
}

html.mnx-is-mobile .post-card__action-btn:hover {
  color: var(--color-white);
}

html.mnx-is-mobile .post-card__comments {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 10px;
  margin-top: 10px;
}

html.mnx-is-mobile .post-card__comment-item strong {
  color: var(--color-gold-light);
}

html.mnx-is-mobile .post-card__comment-item span {
  color: var(--color-white);
}