:root {
  --bg-main: #070711;
  --bg-surface: rgba(22, 18, 45, 0.78);
  --bg-surface-strong: rgba(30, 24, 60, 0.9);
  --border-soft: rgba(158, 136, 255, 0.14);
  --text-main: #f5f2ff;
  --text-muted: #ffffff;
  --accent-a: #6366f1;
  --accent-b: #d946ef;
  --accent-c: #8b5cf6;
  --shadow-lg: 0 22px 70px rgba(8, 6, 24, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.22), transparent 22%),
    radial-gradient(circle at 20% 72%, rgba(168, 85, 247, 0.18), transparent 20%),
    linear-gradient(180deg, #090814 0%, #0b0a18 40%, #090814 100%);
  min-height: 100vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html,
body,
body *:not(svg):not(path) {
  font-family: "Inter", sans-serif !important;
}

::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
}

a {
  color: inherit;
}

.subpage-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.subpage-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  background: rgba(9, 8, 22, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand-link {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #eef2ff 0%, #9ea8ff 34%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ghost-btn,
.primary-btn,
.chip-btn {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ghost-btn {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
}

.primary-btn {
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
  font-weight: 700;
}

.ghost-btn:hover,
.primary-btn:hover,
.chip-btn:hover {
  transform: translateY(-2px);
}

.hero {
  max-width: 840px;
  margin: 0 auto;
  padding: 78px 24px 34px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(168, 85, 247, 0.16));
  border: 1px solid rgba(140, 122, 255, 0.26);
  color: #bba8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 22px 0 16px;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
}

.hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 90px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
}

.section-heading::before {
  content: "";
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-a), var(--accent-b));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.tool-card,
.surface-card,
.order-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(27, 22, 57, 0.8), rgba(12, 12, 33, 0.9));
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.tool-card {
  padding: 22px;
}

.tool-card::before,
.surface-card::before,
.order-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 55%),
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.09), transparent 28%);
}

.tool-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.icon-box {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
}

.tool-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #d7ceff;
}

.tool-card p,
.surface-card p,
.helper-text {
  color: var(--text-muted);
  line-height: 1.65;
}

.tool-card p {
  margin: 0 0 16px;
  min-height: 66px;
  font-size: 0.92rem;
}

.tool-card .primary-btn {
  width: 100%;
}

.notice-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 24px;
  margin-top: 28px;
}

.notice-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.boost-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.surface-card {
  padding: 24px;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip-btn {
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.chip-btn.active {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.24);
}

.platform-chip-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.platform-chip-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-chip-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.field-group {
  margin-bottom: 16px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.select-field,
.number-field {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}

.select-field {
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.select-field option {
  background: #17132f;
  color: #f5f2ff;
}

.service-list {
  display: grid;
  gap: 10px;
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}

.service-item {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.service-item:hover {
  transform: translateY(-1px);
  border-color: rgba(140, 122, 255, 0.3);
}

.service-item.active {
  background: rgba(99, 102, 241, 0.11);
  border-color: rgba(140, 122, 255, 0.38);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.service-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.service-price {
  color: #d8b4fe;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.service-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-badge {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-badge.ok {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.service-badge.no {
  background: rgba(251, 146, 60, 0.12);
  color: #fdba74;
  border: 1px solid rgba(251, 146, 60, 0.22);
}

.order-card {
  padding: 24px;
  position: sticky;
  top: 96px;
  align-self: start;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.summary-line strong {
  color: white;
}

.total-box {
  margin: 18px 0 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.total-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  margin-bottom: 8px;
}

.total-value {
  font-family: "Inter", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
}

.footer-note {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 38px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  text-align: center;
}

.ghost-btn[type="button"],
.primary-btn[type="button"] {
  font: inherit;
  cursor: pointer;
}

.subpage-pay-modal[hidden] {
  display: none;
}

.subpage-pay-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow-y: auto;
}

.subpage-pay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 14, 0.78);
  backdrop-filter: blur(10px);
}

.subpage-pay-box {
  position: relative;
  z-index: 1;
  width: min(94vw, 760px);
  margin: 0;
  padding: 26px 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(27, 22, 57, 0.96), rgba(12, 12, 33, 0.96));
  border: 1px solid rgba(158, 136, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  max-height: min(88vh, 920px);
  overflow-y: auto;
}

.subpage-pay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: white;
  cursor: pointer;
  font-size: 0;
  padding: 0;
}
.subpage-pay-close::before {
  content: "×";
  font-size: 22px;
  line-height: 1;
  transform: translateY(0);
}

.subpage-pay-box h3 {
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
}

.subpage-pay-sub {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.subpage-pay-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.subpage-pay-qr {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.subpage-pay-qr img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: white;
}

.subpage-pay-summary,
.subpage-pay-note {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(129,108,255,0.14);
  color: var(--text-muted);
  line-height: 1.7;
}

.subpage-pay-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.copy-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: text !important;
  -webkit-user-select: text !important;
}

.copy-phone::after {
  content: none;
}

.subpage-pay-summary strong,
.subpage-pay-note strong {
  color: white;
}

.subpage-pay-note strong {
  display: block;
  margin-top: 7px;
  font-size: 0.92rem;
}

.subpage-pay-actions .primary-btn,
.subpage-pay-actions .ghost-btn {
  min-height: 48px;
  border-radius: 13px !important;
  padding: 12px 15px !important;
  font-size: 0.86rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .subpage-pay-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .subpage-pay-box {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100dvh - 24px);
    margin-top: max(8px, env(safe-area-inset-top));
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .subpage-pay-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .subpage-pay-actions {
    grid-template-columns: 1fr;
  }

  .subpage-pay-qr {
    padding: 12px;
    border-radius: 18px;
  }

  .subpage-pay-qr img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .subpage-pay-summary,
  .subpage-pay-note {
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
  }
}

@media (max-width: 900px) {
  .boost-layout {
    grid-template-columns: 1fr;
  }

  .order-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .subpage-nav {
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions a {
    flex: 1 1 0;
  }

  .hero {
    padding: 64px 16px 28px;
  }

  .section-wrap,
  .footer-note {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tool-card,
  .surface-card,
  .order-card,
  .notice-card {
    padding: 18px;
    border-radius: 18px;
  }

  .section-heading {
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .surface-card p,
  .helper-text {
    font-size: 0.93rem;
    line-height: 1.72;
  }

  .order-card {
    position: static;
    top: auto;
    gap: 0;
  }

  .summary-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .summary-line:last-of-type {
    border-bottom: 0;
  }

  .total-box {
    margin: 16px 0 18px;
    padding: 15px 16px;
    border-radius: 18px;
  }

  .subpage-pay-box h3 {
    font-size: 1.38rem;
  }

  .subpage-pay-sub {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .tool-card p {
    min-height: 0;
  }
}


:root {
  --bg-main: #070711;
  --bg-surface: rgba(34, 26, 73, 0.84);
  --bg-surface-strong: rgba(18, 14, 42, 0.94);
  --border-soft: rgba(165, 140, 255, 0.18);
  --text-main: #ffffff;
  --text-muted: #ffffff;
  --accent-a: #7c3aed;
  --accent-b: #a855f7;
  --accent-c: #d946ef;
  --shadow-lg: 0 16px 34px rgba(5, 5, 18, 0.28);
  --purple-gradient: linear-gradient(135deg, var(--accent-a), var(--accent-b) 56%, var(--accent-c));
}

body {
  color: var(--text-main);
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(circle at 14% 16%, rgba(124, 58, 237, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(168, 85, 247, 0.12), transparent 32%),
    linear-gradient(180deg, #070711 0%, #0b0818 48%, #06050d 100%) !important;
  background-size: 42px 42px, 42px 42px, auto, auto, auto !important;
  background-attachment: fixed !important;
}

html {
  background: #070711 !important;
}

body::before {
  display: none !important;
}

.subpage-nav {
  background: rgba(10, 8, 25, 0.88) !important;
  backdrop-filter: blur(8px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(125%) !important;
  border-color: var(--border-soft) !important;
}

.gradient-text,
.primary-btn,
.chip-btn.active,
.section-heading::before,
.total-value {
  background: var(--purple-gradient) !important;
  background-image: var(--purple-gradient) !important;
}

.primary-btn,
.chip-btn.active {
  color: #fff !important;
  border-color: rgba(216, 180, 254, 0.26) !important;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.20) !important;
}

.ghost-btn,
.chip-btn,
.tool-card,
.surface-card,
.order-card,
.notice-card,
.service-item,
.payment-box,
.subpage-pay-box,
.tag,
.total-box,
.summary-row,
.summary-line,
.field-group input,
.field-group select,
.field-group textarea,
.category-card,
.package-card,
.verify-card,
.verify-sidebar,
.verify-package,
.font-card,
.list-card,
.hub-card,
.software-card,
.resource-card,
.repair-card {
  background: linear-gradient(180deg, rgba(34, 26, 73, 0.84), rgba(18, 14, 42, 0.92)) !important;
  border-color: var(--border-soft) !important;
  color: var(--text-main) !important;
  box-shadow: var(--shadow-lg) !important;
}

.tool-card::before,
.surface-card::before,
.order-card::before,
.hub-card::before,
.software-card::before,
.resource-card::before,
.repair-card::before {
  display: none !important;
  opacity: 0 !important;
}

.tool-title,
.section-heading,
.hero h1,
.tool-card h3,
.surface-card h3,
.order-card h3,
.service-name,
.verify-title,
.verify-card h2,
.verify-package h3,
.font-card h3,
.list-card h3,
.hub-card h3,
.software-card h3,
.resource-card h3,
.repair-card h3 {
  color: rgba(246, 244, 255, 0.82) !important;
  text-shadow: none !important;
}

.hero p,
.tool-card p,
.surface-card p,
.helper-text,
.tag,
.chip-btn,
.service-badge,
.summary-row,
.summary-line,
.total-label,
.subpage-pay-sub,
.notice-card,
.font-card p,
.list-card p,
.hub-card p,
.software-card p,
.resource-card p,
.repair-card p {
  color: var(--text-main) !important;
  text-shadow: none !important;
}

a:hover,
a:focus-visible,
button:hover,
button:focus-visible,
.ghost-btn:hover,
.chip-btn:hover,
.primary-btn:hover,
.service-item.active,
.service-item:hover,
.category-card.active,
.package-card.active,
.verify-package.active {
  color: #fff !important;
  border-color: rgba(216, 180, 254, 0.42) !important;
}

.service-item.active,
.category-card.active,
.package-card.active,
.verify-package.active {
  background: linear-gradient(180deg, rgba(88, 63, 191, 0.34), rgba(54, 39, 129, 0.32)) !important;
}

.payment-modal,
.subpage-payment-modal {
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

[style*="#10b981"],
[style*="#06b6d4"],
[style*="#38bdf8"],
[style*="#22c55e"],
[style*="#34d399"],
[style*="#14b8a6"],
[style*="#f59e0b"],
[style*="#ef4444"],
[style*="#f97316"],
[style*="#fbbf24"],
[style*="#60a5fa"],
[style*="#4ade80"],
[style*="rgba(16,185,129"],
[style*="rgba(6,182,212"],
[style*="rgba(59,130,246"],
[style*="rgba(245,158,11"],
[style*="rgba(239,68,68"],
[style*="rgba(34,197,94"] {
  color: var(--text-main) !important;
  border-color: var(--border-soft) !important;
  box-shadow: none !important;
}

[style*="linear-gradient"][style*="#10b981"],
[style*="linear-gradient"][style*="#059669"],
[style*="linear-gradient"][style*="#06b6d4"],
[style*="linear-gradient"][style*="#38bdf8"],
[style*="linear-gradient"][style*="#22c55e"],
[style*="linear-gradient"][style*="#14b8a6"],
[style*="linear-gradient"][style*="#f59e0b"],
[style*="linear-gradient"][style*="#ef4444"],
[style*="linear-gradient"][style*="#f97316"],
[style*="linear-gradient"][style*="#fbbf24"],
[style*="background:rgba(16,185,129"],
[style*="background:rgba(6,182,212"],
[style*="background:rgba(59,130,246"],
[style*="background:rgba(245,158,11"],
[style*="background:rgba(239,68,68"],
[style*="background:rgba(34,197,94"] {
  background: var(--purple-gradient) !important;
  color: #fff !important;
}

@media (max-width: 720px) {
  body {
    background-attachment: scroll !important;
    background-size: 38px 38px, 38px 38px, auto, auto, auto !important;
  }
}

.gradient-text {
  background: var(--purple-gradient) !important;
  background-image: var(--purple-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

@media (max-width: 720px) {
  html,
  body,
  .subpage-shell {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .subpage-nav,
  .section-wrap,
  .hero,
  .pm-banner-wrap {
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    box-sizing: border-box !important;
  }

  .section-wrap,
  .pm-banner-wrap,
  .account-banner-wrap,
  .tt-banner-wrap,
  .kh-banner-wrap,
  .tn-banner-wrap,
  .repair-banner-wrap,
  .font-banner-wrap {
    width: min(100%, calc(100vw - 48px)) !important;
    max-width: calc(100vw - 48px) !important;
  }

  .section-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hub-grid,
  .software-grid,
  .card-grid,
  .resource-grid,
  .repair-grid,
  .font-grid,
  .list-grid,
  .category-grid,
  .package-grid,
  .verify-grid {
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
  }

  .hub-card,
  .software-card,
  .resource-card,
  .repair-card,
  .font-card,
  .list-card,
  .tool-card,
  .surface-card,
  .order-card,
  .notice-card {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .software-card {
    grid-template-columns: 1fr !important;
  }

  img,
  video,
  canvas {
    max-width: 100% !important;
  }
}


:root {
  --text-main: #ffffff;
  --text-muted: #ffffff;
}

body,
.subpage-shell,
.hero p,
.tool-card p,
.surface-card p,
.helper-text,
.tag,
.chip-btn,
.service-badge,
.summary-row,
.summary-line,
.total-label,
.subpage-pay-sub,
.notice-card,
.font-card p,
.list-card p,
.hub-card p,
.software-card p,
.resource-card p,
.repair-card p,
[style*="color: rgba(255, 255, 255, 0."],
[style*="color:rgba(255,255,255,0."],
[style*="color: var(--text-muted)"] {
  color: #ffffff !important;
  -webkit-text-fill-color: currentColor !important;
}

.ghost-btn,
.chip-btn,
.tool-card,
.surface-card,
.order-card,
.notice-card,
.service-item,
.payment-box,
.subpage-pay-box,
.tag,
.total-box,
.summary-row,
.summary-line,
.field-group input,
.field-group select,
.field-group textarea,
.category-card,
.package-card,
.verify-card,
.verify-sidebar,
.verify-package,
.font-card,
.list-card,
.hub-card,
.software-card,
.resource-card,
.repair-card {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
  will-change: auto !important;
}

.ghost-btn:hover,
.primary-btn:hover,
.chip-btn:hover,
.tool-card:hover,
.surface-card:hover,
.service-item:hover,
.category-card:hover,
.package-card:hover,
.verify-package:hover,
.hub-card:hover,
.software-card:hover,
.resource-card:hover,
.repair-card:hover {
  transform: translateY(-2px) !important;
}

img,
video,
canvas {
  max-width: 100%;
}


html,
body {
  background-attachment: scroll !important;
}

body {
  text-rendering: optimizeLegibility;
}

body.subpage-smooth-scroll,
body.subpage-smooth-scroll * {
  scroll-behavior: auto !important;
}

body.subpage-smooth-virtual {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.subpage-smooth-virtual .subpage-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
}

body.subpage-smooth-virtual .ntxv-smooth-stage {
  position: fixed;
  top: var(--ntxv-smooth-nav-h, 80px);
  left: 0;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transform-style: flat;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  filter: none !important;
}

.subpage-nav {
  backdrop-filter: blur(6px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(6px) saturate(120%) !important;
}

.primary-btn,
.ghost-btn,
.chip-btn,
.tool-card,
.surface-card,
.order-card,
.notice-card,
.service-item,
.hub-card,
.software-card,
.resource-card,
.repair-card,
.font-card,
.list-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, opacity 0.18s ease !important;
  will-change: auto !important;
}

.primary-btn,
.chip-btn.active {
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.14) !important;
}

.primary-btn:hover,
.ghost-btn:hover,
.chip-btn:hover,
.tool-card:hover,
.surface-card:hover,
.service-item:hover,
.category-card:hover,
.package-card:hover,
.verify-package:hover,
.hub-card:hover,
.software-card:hover,
.resource-card:hover,
.repair-card:hover {
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-lg) !important;
  filter: none !important;
}

.tool-card::before,
.surface-card::before,
.order-card::before,
.hub-card::before,
.software-card::before,
.resource-card::before,
.repair-card::before {
  display: none !important;
}

@keyframes ntxvSubpageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.subpage-shell .hero,
.section-wrap > *,
.tool-card,
.surface-card,
.order-card,
.notice-card,
.hub-card,
.software-card,
.resource-card,
.repair-card,
.font-card,
.list-card {
  animation: ntxvSubpageIn 0.42s ease both;
}

.section-wrap > *:nth-child(2),
.software-card:nth-child(2),
.hub-card:nth-child(2),
.tool-card:nth-child(2) {
  animation-delay: 0.04s;
}

.section-wrap > *:nth-child(3),
.software-card:nth-child(3),
.hub-card:nth-child(3),
.tool-card:nth-child(3) {
  animation-delay: 0.08s;
}

body.reduced-fx *,
body.reduced-fx *::before,
body.reduced-fx *::after {
  animation: none !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

body.reduced-fx .ntxv-smooth-cursor,
body.reduced-fx .ntxv-smooth-cursor-dot {
  display: none !important;
}

@media (max-width: 720px) {
  .subpage-shell .hero,
  .section-wrap > *,
  .tool-card,
  .surface-card,
  .order-card,
  .notice-card,
  .hub-card,
  .software-card,
  .resource-card,
  .repair-card,
  .font-card,
  .list-card {
    animation-duration: 0.28s;
    animation-delay: 0s !important;
  }
}


.subpage-pay-close::before {
  content: "\00d7" !important;
}

@media (max-width: 720px) {
  html,
  body,
  .subpage-shell {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .subpage-nav,
  .section-wrap,
  .hero,
  .pm-banner-wrap,
  .account-banner-wrap,
  .tt-banner-wrap,
  .kh-banner-wrap,
  .tn-banner-wrap,
  .repair-banner-wrap,
  .font-banner-wrap {
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .pm-banner,
  .account-banner,
  .tt-banner,
  .kh-banner,
  .tn-banner,
  .repair-banner,
  .font-banner {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .primary-btn,
  .ghost-btn,
  .chip-btn {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }

  .hub-card .primary-btn,
  .tool-card .primary-btn,
  .software-card .primary-btn,
  .resource-card .primary-btn,
  .repair-card .primary-btn,
  .font-card .primary-btn {
    width: 100% !important;
  }

  .hub-card,
  .software-card,
  .resource-card,
  .repair-card,
  .font-card,
  .account-card,
  .account-top,
  .account-top > div,
  .software-main,
  .software-head {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hub-card h3,
  .hub-card p,
  .software-card h3,
  .software-card p,
  .account-name,
  .account-desc,
  .account-package,
  .section-heading {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}


html,
body,
body *:not(svg):not(path) {
  font-family: "Inter", sans-serif !important;
}

.hub-card,
.software-card,
.resource-card,
.repair-card,
.font-card,
.account-card,
.tool-card,
.list-card,
.blog-post-card {
  box-shadow: 0 8px 18px rgba(5, 6, 18, 0.14) !important;
}

button:active,
button:focus,
button:focus-visible,
a:active,
a:focus,
a:focus-visible,
.primary-btn:active,
.primary-btn:focus,
.ghost-btn:active,
.ghost-btn:focus {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}


