@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700;800&family=Poppins:wght@400;500;600;700&display=swap");


.lumox-nav,
.lumox-nav *,
.lumox-nav *::before,
.lumox-nav *::after,
.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after,
.mobile-menu,
.mobile-menu *,
.mobile-menu *::before,
.mobile-menu *::after {
  box-sizing: border-box;
}

.lumox-nav,
.site-footer,
.mobile-menu {
  --lumox-bg: #f4f7fb;
  --lumox-text: #e5eef8;
  --lumox-accent: #35d6ff;
  --lumox-panel: linear-gradient(180deg, rgba(9, 16, 34, 0.98), rgba(6, 12, 25, 0.98));
  --lumox-border: rgba(117, 146, 199, 0.2);
  --lumox-muted: #9db0cb;
  --lumox-green: #14c56a;
  font-family: "Poppins", sans-serif;
  color: var(--lumox-text);
}

.lumox-nav a,
.site-footer a,
.mobile-menu a {
  text-decoration: none;
}

.lumox-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-footer {
  margin-top: auto;
}
.lumox-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.94), rgba(10, 18, 32, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(2, 8, 20, 0.18);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lumox-nav.scrolled {
  background: rgba(9, 15, 28, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(111, 166, 255, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: auto;
  height: 40px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  height: 80px;
}

.desktop-menu > * {
  display: inline-flex;
  align-items: center;
}

.desktop-menu a,
.dropdown-toggle,
.order-btn {
  font-family: "Poppins", sans-serif;
}

.desktop-menu a,
.dropdown-toggle {
  color: rgba(244, 248, 255, 0.92);
  font-size: 15px;
  font-weight: 300;
  padding: 10px 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.desktop-menu a:hover,
.dropdown-toggle:hover {
  color: var(--lumox-accent);
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shop-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  padding: 8px 0;
  border-radius: 12px;
  background: rgba(30, 27, 75, 0.95);
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #d1d5db;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
  background: rgba(99, 102, 241, 0.06);
  color: #fff;
}

.dropdown-content img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: cover;
}

.dropdown-servers .servers-mega {
  min-width: 720px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(6, 11, 28, 0.985), rgba(7, 14, 34, 0.97));
  border: 1px solid rgba(86, 117, 190, 0.28);
  box-shadow: 0 22px 48px rgba(2, 8, 28, 0.72);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.server-link {
  min-height: 84px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(126, 151, 210, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.server-link:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 187, 255, 0.44);
  background: linear-gradient(180deg, rgba(26, 49, 96, 0.36), rgba(22, 40, 78, 0.2));
}

.server-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.server-copy strong {
  color: #f4fbff;
  font-family: "Oxanium", "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.server-copy small {
  color: #9eb5dc;
  font-size: 12px;
  font-weight: 600;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f3f8ff;
  font-family: "Oxanium", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.order-btn:hover {
  background: rgba(53, 214, 255, 0.16);
  border-color: rgba(53, 214, 255, 0.35);
  color: #fff;
  transform: translateY(-1px);
}

.icon-left {
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 12px;
  right: 12px;
  width: auto;
  height: calc(100vh - 84px);
  padding: 14px 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(86, 108, 156, 0.24);
  background: var(--lumox-panel);
  box-shadow: 0 20px 48px rgba(1, 8, 22, 0.46);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.985);
  transform-origin: top center;
  transition: transform 0.35s cubic-bezier(.22, .9, .3, 1), opacity 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-nav-link,
.mobile-dropdown-toggle.mobile-nav-link {
  width: calc(100% - 32px);
  margin: 0 16px;
  padding: 15px 16px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: #edf2ff;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.mobile-nav-link:hover,
.mobile-dropdown-toggle.mobile-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--lumox-border);
}

.mobile-nav-link--active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(101, 127, 185, 0.18);
}

.mobile-nav-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1ee46f;
  flex: 0 0 28px;
}

.mobile-nav-icon svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.mobile-nav-copy strong {
  color: #f0f4ff;
  font-size: 16px;
  font-weight: 200;
}

.mobile-nav-copy small {
  margin-top: 3px;
  color: var(--lumox-muted);
  font-size: 13px;
}

.mobile-nav-arrow {
  margin-left: auto;
  color: #c0cbe3;
  font-size: 18px;
  line-height: 1;
}

.mobile-dropdown-toggle .arrow.mobile-nav-arrow {
  transition: transform 0.28s ease, color 0.22s ease;
}

.mobile-dropdown-toggle.active .arrow.mobile-nav-arrow {
  transform: rotate(180deg);
  color: #f2f6ff;
}

.mobile-dropdown-content {
  width: calc(100% - 32px);
  margin: 6px 16px 10px;
  max-height: 0;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.34s cubic-bezier(.22, .9, .3, 1), opacity 0.24s ease, transform 0.24s ease;
}

.mobile-dropdown-content.show {
  max-height: 460px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-games-panel {
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(10, 16, 38, 0.86), rgba(8, 13, 30, 0.92));
  border: 1px solid rgba(84, 104, 150, 0.16);
}

.mobile-game-item,
.mobile-dropdown-content:not(.mobile-games-panel) a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 10px 0;
  color: #edf2ff;
  font-size: 15px;
  font-weight: 300;
}

.mobile-dropdown-content:not(.mobile-games-panel) a {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-content img,
.Dedicatedicon,
.vpsicon,
.webicon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.mobile-menu-footer {
  margin-top: 12px;
  padding: 14px 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-client-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 12px;
  background: var(--lumox-green);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.site-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(180deg, rgba(8, 15, 29, 0.96), rgba(4, 9, 18, 0.99));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 42px 22px 24px;
  color: #cbd8e8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(22px, 2.8vw, 42px);
  align-items: start;
  padding-bottom: 24px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .footer-logo {
  margin-bottom: 18px;
}

.footer-brand .footer-logo img {
  height: 42px;
  width: auto;
}

.footer-desc {
  margin: 0 0 20px;
  color: #9fb0bf;
  line-height: 1.75;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.92;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer-socials svg {
  width: 100%;
  height: 100%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h3 {
  margin: 4px 0 12px;
  color: #00e6ff;
  font-size: 1rem;
  font-weight: 700;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: #d6e9f0;
  line-height: 1.45;
  padding: 4px 0;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #06d975;
  transform: translateX(2px);
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pay-title {
  color: #00e6ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: auto;
  height: 26px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  color: #9fb0bf;
  font-size: 0.9rem;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-bottom a {
  color: #9fb0bf;
}

.footer-bottom a:hover {
  color: #00e6ff;
}

@media (max-width: 1024px) {
  .lumox-nav {
    height: 72px;
    background: rgba(9, 16, 30, 0.95);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom-color: rgba(111, 166, 255, 0.18);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  }

  .nav-container {
    height: 72px;
    padding: 0 18px;
  }

  .desktop-menu,
  .desktop-actions {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-meta {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 28px 16px 18px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    padding-bottom: 14px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-links h3 {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .footer-links a {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .footer-meta {
    gap: 14px;
    padding-top: 14px;
  }

  .footer-payments {
    align-items: flex-start;
    gap: 8px;
  }

  .payment-icons {
    gap: 10px;
  }

  .payment-icons img {
    height: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.82rem;
  }

  .footer-right {
    gap: 10px;
  }
}
/* 🔥 FIX SVG VISIBILITY */

.nav-link-icon svg,
.action-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  display: block;
}

/* spacing */
.nav-link-icon,
.action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-link-icon svg,
.action-icon svg {
  color: #cfe6ff;
}
.order-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

/* rotate on hover */
.dropdown:hover .arrow svg {
  transform: rotate(180deg);
}
.arrow svg {

  margin-top: 1px; /* 🔥 tiny fix */
}
.dropdown-toggle::after {
  display: none !important;
}
.mobile-menu-footer {
  margin-top: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* each row */
.mobile-auth-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.25s ease;
}

/* hover */
.mobile-auth-item:hover {
  background: rgba(88,101,242,0.12);
  transform: translateX(3px);
}

/* icon */
.auth-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(88,101,242,0.15);
}

.auth-icon svg {
  width: 18px;
  height: 18px;
}

/* arrow */
.auth-arrow {
  margin-left: auto;
  opacity: 0.6;
  font-size: 18px;
}