.lux-nav,
.lux-nav-frame,
body {
  min-height: 100vh;
  min-height: 100dvh;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #f5e6c8;
  background: #0a0608;
  height: 100%;
  overflow: hidden;
}
.is-hidden,
[hidden] {
  display: none !important;
}
.lux-nav {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
}
.lux-nav-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 120% 80% at 50% -20%,
      rgba(120, 53, 15, 0.45),
      transparent 55%
    ),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(60, 20, 10, 0.6), transparent 50%),
    linear-gradient(180deg, #120a0c 0, #1a0e12 35%, #0d080a 100%);
  pointer-events: none;
}
.lux-nav-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 20% 30%, rgba(212, 168, 83, 0.15) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.12) 0, transparent 35%),
    repeating-linear-gradient(45deg, #d4a853 0, #d4a853 1px, transparent 1px, transparent 14px);
}
.lux-nav-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.lux-nav-bg-glow--top {
  width: 320px;
  height: 200px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(212, 168, 83, 0.2);
}
.lux-nav-bg-glow--bottom {
  width: 280px;
  height: 180px;
  bottom: -40px;
  right: -40px;
  background: rgba(139, 69, 19, 0.25);
}
.lux-nav-frame {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.lux-nav-header {
  text-align: center;
  padding: 2px 0 10px;
  flex-shrink: 0;
}
.lux-nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: rgba(212, 168, 83, 0.55);
  margin-bottom: 8px;
}
.lux-nav-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.lux-nav-divider::after,
.lux-nav-divider::before {
  content: "";
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a853, transparent);
}
.lux-nav-divider span {
  width: 6px;
  height: 6px;
  background: #d4a853;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.8);
}
.lux-nav-title {
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 900;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  line-height: 1.15;
  background: linear-gradient(
    180deg,
    #fff8e7 0,
    #f5e6b8 28%,
    #d4a853 55%,
    #b8862b 78%,
    #f5e6b8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 24px rgba(212, 168, 83, 0.25);
  animation: 4s ease-in-out infinite lux-title-shine;
}
@keyframes lux-title-shine {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.12);
  }
}
.lux-nav-lottery {
  margin: 0 auto 10px;
  display: inline-block;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f5e6b8;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.18), rgba(90, 55, 20, 0.35));
  border: 1px solid rgba(212, 168, 83, 0.45);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 231, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.lux-nav-lottery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 248, 231, 0.18) 50%,
    transparent 65%
  );
  animation: 3s ease-in-out infinite lux-badge-shine;
}
@keyframes lux-badge-shine {
  0%,
  100% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(120%);
  }
}
.lux-nav-panel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 10px 8px;
  background: linear-gradient(
    165deg,
    rgba(35, 18, 22, 0.95) 0,
    rgba(22, 12, 14, 0.98) 50%,
    rgba(18, 10, 12, 0.99) 100%
  );
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(212, 168, 83, 0.08);
  overflow: hidden;
}
.lux-nav-panel-shine {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 83, 0.55),
    rgba(212, 168, 83, 0.05) 35%,
    rgba(245, 230, 200, 0.35) 50%,
    rgba(212, 168, 83, 0.05) 65%,
    rgba(212, 168, 83, 0.45)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: 5s linear infinite lux-panel-border;
  opacity: 0.65;
}
@keyframes lux-panel-border {
  0%,
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(8deg) brightness(1.15);
  }
}
.lux-nav-panel-texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: radial-gradient(ellipse 80% 50% at 50% 0, rgba(212, 168, 83, 0.08), transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(124, 58, 237, 0.06), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.06), transparent 40%);
  pointer-events: none;
}
.lux-nav-panel > .lux-nav-list,
.lux-nav-panel > .lux-nav-state {
  position: relative;
  z-index: 1;
}
.lux-nav-panel-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #d4a853;
  border-style: solid;
  opacity: 0.85;
}
.lux-nav-panel-corner--tl {
  top: 6px;
  left: 6px;
  border-width: 2px 0 0 2px;
}
.lux-nav-panel-corner--tr {
  top: 6px;
  right: 6px;
  border-width: 2px 2px 0 0;
}
.lux-nav-panel-corner--bl {
  bottom: 6px;
  left: 6px;
  border-width: 0 0 2px 2px;
}
.lux-nav-panel-corner--br {
  bottom: 6px;
  right: 6px;
  border-width: 0 2px 2px 0;
}
.lux-nav-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 12px;
  text-align: center;
}
.lux-nav-state--loading p {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(245, 230, 200, 0.55);
}
.lux-nav-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 83, 0.15);
  border-top-color: #d4a853;
  border-right-color: #f5e6b8;
  animation: 0.9s linear infinite lux-spin;
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.25);
}
@keyframes lux-spin {
  to {
    transform: rotate(360deg);
  }
}
.lux-nav-state--error {
  border: 1px solid rgba(220, 80, 80, 0.4);
  border-radius: 4px;
  background: rgba(80, 20, 20, 0.35);
}
.lux-nav-state--error p {
  font-size: 14px;
  color: #fecaca;
  line-height: 1.55;
}
.lux-nav-retry {
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #1a0e12;
  background: linear-gradient(180deg, #f5e6b8, #d4a853, #9a6b2f);
  border: 1px solid #f5e6b8;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
}
.lux-nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.lux-nav-item {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 8px 8px 8px 10px;
  --lux-circle-size: 30px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(
    135deg,
    rgba(55, 32, 38, 0.92) 0,
    rgba(28, 14, 18, 0.96) 55%,
    rgba(22, 10, 14, 0.98) 100%
  );
  border: 1px solid rgba(212, 168, 83, 0.32);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 248, 231, 0.06);
  transition:
    transform 0.28s,
    border-color 0.28s,
    box-shadow 0.28s;
  animation: 0.55s backwards lux-item-in;
}
.lux-nav-item:first-child {
  animation-delay: 60ms;
}
.lux-nav-item:nth-child(2) {
  animation-delay: 0.14s;
}
.lux-nav-item:nth-child(3) {
  animation-delay: 0.22s;
}
.lux-nav-list.is-restored .lux-nav-item {
  animation: none;
}
@keyframes lux-item-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lux-nav-item-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 0 50%, var(--lux-glow), transparent 55%),
    linear-gradient(90deg, rgba(212, 168, 83, 0.04) 0, transparent 40%);
  pointer-events: none;
  opacity: 0.9;
}
.lux-nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--lux-accent), var(--lux-accent-dim));
  box-shadow: 0 0 12px var(--lux-glow-strong);
}
.lux-nav-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 248, 231, 0.09) 50%,
    transparent 62%
  );
  transform: translateX(-110%);
  transition: transform 0.65s;
  pointer-events: none;
}
.lux-nav-item:active {
  transform: scale(0.985);
}
@media (hover: hover) {
  .lux-nav-item:hover {
    border-color: rgba(245, 230, 200, 0.6);
    box-shadow:
      0 10px 32px rgba(0, 0, 0, 0.5),
      0 0 28px var(--lux-glow-strong),
      inset 0 1px 0 rgba(255, 248, 231, 0.1);
    transform: translateY(-3px);
  }
  .lux-nav-item:hover::after {
    transform: translateX(110%);
  }
  .lux-nav-item:hover .lux-nav-item-enter {
    box-shadow:
      0 6px 20px rgba(212, 168, 83, 0.55),
      0 0 20px rgba(245, 230, 200, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transform: scale(1.08);
  }
  .lux-nav-item:hover .lux-nav-item-enter svg {
    transform: translateX(2px);
  }
  .lux-nav-item:hover .lux-nav-item-url {
    filter: drop-shadow(0 0 10px var(--lux-glow-strong)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
    transform: translateY(-1px);
  }
  .lux-nav-item:hover .lux-nav-item-url::after {
    border-color: color-mix(in srgb, var(--lux-accent) 65%, transparent);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.14) inset,
      0 3px 14px rgba(0, 0, 0, 0.32),
      0 0 18px var(--lux-glow-strong);
  }
}
.lux-nav-item--yima {
  --lux-accent: #fde68a;
  --lux-accent-dim: #eab308;
  --lux-glow: rgba(234, 179, 8, 0.22);
  --lux-glow-strong: rgba(234, 179, 8, 0.35);
}
.lux-nav-item--qdd {
  --lux-accent: #6ee7b7;
  --lux-accent-dim: #059669;
  --lux-glow: rgba(5, 150, 105, 0.22);
  --lux-glow-strong: rgba(5, 150, 105, 0.35);
}
.lux-nav-item--wufu {
  --lux-accent: #fca5a5;
  --lux-accent-dim: #dc2626;
  --lux-glow: rgba(220, 38, 38, 0.22);
  --lux-glow-strong: rgba(220, 38, 38, 0.35);
}
.lux-nav-item--gallery49 {
  --lux-accent: #93c5fd;
  --lux-accent-dim: #2563eb;
  --lux-glow: rgba(37, 99, 235, 0.22);
  --lux-glow-strong: rgba(37, 99, 235, 0.35);
}
.lux-nav-item--baixiaojie {
  --lux-accent: #fca5a5;
  --lux-accent-dim: #dc2626;
  --lux-glow: rgba(220, 38, 38, 0.22);
  --lux-glow-strong: rgba(220, 38, 38, 0.35);
}

.lux-nav-item-rank-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: var(--lux-circle-size);
  height: var(--lux-circle-size);
  min-width: var(--lux-circle-size);
  min-height: var(--lux-circle-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.55);
  background: radial-gradient(circle at 35% 30%, rgba(245, 230, 200, 0.18), transparent 50%),
    linear-gradient(145deg, rgba(60, 35, 40, 0.95), rgba(25, 12, 16, 0.98));
  box-shadow:
    0 0 14px rgba(212, 168, 83, 0.2),
    inset 0 1px 0 rgba(255, 248, 231, 0.12);
}
.lux-nav-item-rank {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff8e7, #f5e6b8 40%, #d4a853);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lux-nav-item-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 4px;
}
.lux-nav-item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.lux-nav-item-title,
.lux-nav-item-url {
  display: inline-flex;
  white-space: nowrap;
}
.lux-nav-item-url {
  position: relative;
  z-index: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: center;
  max-width: calc(100% - 8px);
  margin-left: auto;
  margin-right: auto;
  transform: none;
  padding: 2px 9px 2px 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: "SF Mono", Consolas, Monaco, "Courier New", monospace;
  letter-spacing: 0.05em;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(
    100deg,
    rgba(255, 254, 248, 0.95) 0,
    var(--lux-accent) 45%,
    #f5e6b8 75%,
    rgba(255, 248, 231, 0.9) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 6px var(--lux-glow-strong)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  animation: 6s ease-in-out infinite lux-url-shine;
  transition:
    filter 0.28s,
    transform 0.28s;
}
.lux-nav-item-title-lottery,
.lux-nav-item-title-site {
  letter-spacing: 0.04em;
  line-height: 1.1;
  filter: drop-shadow(0 0 12px var(--lux-glow-strong)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  animation: 5s ease-in-out infinite lux-site-shine;
  font-size: 18px;
  font-weight: 800;
  color: transparent;
  position: relative;
}
.lux-nav-item-url::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: linear-gradient(160deg, var(--lux-accent) 0, var(--lux-accent-dim) 100%);
  opacity: 0.92;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2.2' stroke-linecap='round' d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath stroke='%23000' stroke-width='2.2' stroke-linecap='round' d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2.2' stroke-linecap='round' d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath stroke='%23000' stroke-width='2.2' stroke-linecap='round' d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.lux-nav-item-url::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0,
    var(--lux-glow) 42%,
    rgba(0, 0, 0, 0.28) 100%
  );
  border: 1px solid color-mix(in srgb, var(--lux-accent) 42%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 2px 10px rgba(0, 0, 0, 0.28),
    0 0 14px var(--lux-glow);
  transition:
    border-color 0.28s,
    box-shadow 0.28s;
}
.lux-nav-item-title-lottery::after,
.lux-nav-item-title-site::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--lux-accent) 30%,
    rgba(212, 168, 83, 0.9) 50%,
    var(--lux-accent) 70%,
    transparent
  );
  opacity: 0.75;
}
@keyframes lux-url-shine {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.lux-nav-item-title {
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 7px;
  max-width: 100%;
  transform-origin: center center;
}
.lux-nav-item-title-lottery {
  flex-shrink: 0;
  background: linear-gradient(
    100deg,
    #fffef8 0,
    #fff8e7 18%,
    var(--lux-accent) 42%,
    #f5e6b8 62%,
    #d4a853 82%,
    #fff8e7 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.lux-nav-item-title-sep {
  flex-shrink: 0;
  width: 1px;
  height: 16px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(212, 168, 83, 0.35) 20%,
    rgba(212, 168, 83, 0.95) 50%,
    rgba(212, 168, 83, 0.35) 80%,
    transparent
  );
  box-shadow: 0 0 6px rgba(212, 168, 83, 0.5);
}
.lux-nav-item-title-site {
  flex-shrink: 1;
  min-width: 0;
  background: linear-gradient(
    100deg,
    #fffef8 0,
    #fff8e7 18%,
    var(--lux-accent) 42%,
    #f5e6b8 62%,
    #d4a853 82%,
    #fff8e7 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
@keyframes lux-site-shine {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.lux-nav-item-title--single {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(95deg, #fffef8 0, #f5e6b8 35%, #d4a853 70%, #fff8e7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(212, 168, 83, 0.35));
}
.lux-nav-item-enter {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-self: center;
  width: var(--lux-circle-size);
  height: var(--lux-circle-size);
  min-width: var(--lux-circle-size);
  min-height: var(--lux-circle-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #2a1810;
  background: linear-gradient(
    165deg,
    #fffef8 0,
    #f5e6b8 30%,
    #e8c872 55%,
    #d4a853 80%,
    #c49a3c 100%
  );
  border: 1px solid rgba(255, 248, 231, 0.55);
  box-shadow:
    0 4px 14px rgba(212, 168, 83, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(154, 107, 47, 0.22);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.lux-nav-item-enter svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.25s;
}
.lux-nav-footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
  padding-top: 2px;
}
.lux-nav-footer-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.4), transparent);
}
.lux-nav-footer-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(212, 168, 83, 0.4);
}
@media (min-width: 480px) and (min-height: 780px) {
  .lux-nav-frame {
    padding: 20px 14px 16px;
  }
  .lux-nav-panel {
    padding: 14px 10px;
  }
  .lux-nav-list {
    gap: 10px;
  }
  .lux-nav-item {
    padding: 10px 14px;
    --lux-circle-size: 34px;
  }
  .lux-nav-item-title-lottery,
  .lux-nav-item-title-site,
  .lux-nav-item-title--single {
    font-size: 19px;
  }
  .lux-nav-item-url {
    font-size: 12px;
  }
}
