:root {
  --rocket-mint: #23b79c;
  --rocket-mint-deep: #149e86;
  --rocket-mint-soft: #dff7f1;
  --rocket-ink: #101828;
  --rocket-muted: #607086;
  --rocket-line: rgba(18, 32, 46, 0.08);
  --rocket-shell: #f5f8fb;
  --rocket-card: #ffffff;
  --rocket-space: #050811;
  --rocket-shadow: 0 24px 48px rgba(16, 24, 40, 0.08);
  --rocket-shadow-soft: 0 12px 28px rgba(16, 24, 40, 0.06);
  --rocket-radius-xl: 32px;
  --rocket-radius-lg: 24px;
  --rocket-radius-md: 18px;
  --rocket-radius-sm: 14px;
  --rocket-max: 1200px;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--rocket-shell);
  color: var(--rocket-ink);
  overflow-x: hidden;
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

body,
input,
textarea,
select,
button {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

html[data-rocket-route="public"] #app,
html[data-rocket-route="dashboard-home"] #app {
  display: none !important;
}

html[data-rocket-route="public"],
html[data-rocket-route="public"] body,
html[data-rocket-route="public"] #rocket-root,
html[data-rocket-route="public"] .rocket-root,
html[data-rocket-route="public"] .rocket-public,
html[data-rocket-route="dashboard-home"],
html[data-rocket-route="dashboard-home"] body,
html[data-rocket-route="dashboard-home"] #rocket-root,
html[data-rocket-route="dashboard-home"] .rocket-root,
html[data-rocket-route="dashboard-home"] .rocket-dashboard-home {
  height: auto !important;
  min-height: 100vh;
  overflow-y: auto !important;
}

html[data-rocket-route="public"] body,
html[data-rocket-route="dashboard-home"] body {
  position: static !important;
}

.rocket-root {
  min-height: 100vh;
}

.rocket-container {
  width: min(var(--rocket-max), calc(100% - 32px));
  margin: 0 auto;
}

.rocket-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rocket-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  flex: 0 0 auto;
}

.rocket-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(180deg, #7af6dd, var(--rocket-mint));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 12px 24px rgba(35, 183, 156, 0.35);
  position: relative;
}

.rocket-brand-mark::before,
.rocket-brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.rocket-brand-mark::before {
  top: 8px;
  width: 18px;
  height: 22px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.65));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.rocket-brand-mark::after {
  bottom: 7px;
  width: 16px;
  height: 4px;
  background: rgba(255, 255, 255, 0.88);
}

.rocket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rocket-button:hover {
  transform: translateY(-1px);
}

.rocket-button-primary {
  background: linear-gradient(135deg, #38ddc0, var(--rocket-mint));
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(35, 183, 156, 0.28);
}

.rocket-button-primary:hover {
  box-shadow: 0 20px 34px rgba(35, 183, 156, 0.34);
}

.rocket-button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rocket-button-light {
  background: #ffffff;
  color: var(--rocket-ink);
  box-shadow: var(--rocket-shadow-soft);
}

.rocket-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.rocket-public {
  background:
    radial-gradient(circle at top center, rgba(61, 108, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #0a0f1c 0%, #060914 26%, #f5f8fb 26.1%, #f5f8fb 100%);
}

.rocket-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.rocket-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rocket-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #2f3a4a;
  font-size: 14px;
}

.rocket-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rocket-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 38px 38px;
  min-height: 740px;
  padding: 68px 0 110px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(3, 7, 16, 0.02), rgba(3, 7, 16, 0.12)),
    url('https://github.com/dc8683/picx-images-hosting/raw/master/rocket/space-unsplash.6m42pbctq4.webp') center top / cover no-repeat;
}

.rocket-hero::before {
  content: "";
  position: absolute;
  inset: auto 50% -340px;
  transform: translateX(-50%);
  width: min(1200px, 130vw);
  height: min(1200px, 130vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(90, 122, 255, 0.2), rgba(9, 14, 28, 0) 34%),
    radial-gradient(circle at 50% 100%, rgba(74, 126, 255, 0.3), rgba(31, 73, 184, 0.06) 48%, rgba(8, 10, 17, 0.96) 66%);
  box-shadow: inset 0 12px 32px rgba(123, 170, 255, 0.18);
}

.rocket-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 198px;
  transform: translateX(-50%);
  width: min(880px, 88vw);
  height: min(440px, 44vw);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(3, 7, 17, 0.15) 45%, rgba(3, 7, 17, 0.88) 100%),
    url('https://github.com/dc8683/picx-images-hosting/raw/master/rocket/8k_earth_nightmap.3yemews86x.webp') center top / cover no-repeat;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  filter: drop-shadow(0 -22px 55px rgba(99, 137, 255, 0.25));
}

.rocket-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 60px;
}

.rocket-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #9ec3ff;
  background: rgba(61, 92, 255, 0.22);
  border: 1px solid rgba(140, 173, 255, 0.3);
  font-size: 13px;
  font-weight: 700;
}

.rocket-hero-title {
  margin: 18px 0 14px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.rocket-hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.rocket-hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rocket-hero-features {
  position: absolute;
  inset: auto 0 34px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rocket-section {
  padding: 88px 0;
}

.rocket-section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.rocket-section-kicker {
  color: var(--rocket-mint-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.rocket-section-title {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.rocket-section-desc {
  color: var(--rocket-muted);
  font-size: 16px;
  line-height: 1.8;
}

.rocket-clients-grid,
.rocket-service-grid,
.rocket-plan-grid,
.rocket-auth-feature-grid,
.rocket-overview-metrics,
.rocket-overview-shortcuts {
  display: grid;
  gap: 20px;
}

.rocket-clients-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rocket-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rocket-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rocket-client-card,
.rocket-service-card,
.rocket-plan-card,
.rocket-nodes-card,
.rocket-auth-feature,
.rocket-metric-card,
.rocket-panel-card {
  background: #ffffff;
  border: 1px solid var(--rocket-line);
  border-radius: var(--rocket-radius-lg);
  box-shadow: var(--rocket-shadow-soft);
}

.rocket-client-card {
  overflow: hidden;
  min-height: 232px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #17202f;
}

.rocket-client-card:first-child {
  background: linear-gradient(160deg, #ffffff, #f1f4f9);
}

.rocket-client-card:nth-child(2) {
  background: linear-gradient(160deg, #ede6ff, #c5beff);
}

.rocket-client-card:nth-child(3) {
  background: linear-gradient(160deg, #dcfff4, #bdf2e2);
}

.rocket-client-card:nth-child(4) {
  background: linear-gradient(160deg, #ddf0ff, #b9dcff);
}

.rocket-client-art {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rocket-client-name {
  font-size: 22px;
  font-weight: 800;
}

.rocket-client-copy {
  color: rgba(23, 32, 47, 0.7);
  line-height: 1.7;
}

.rocket-nodes-card {
  padding: 28px;
}

.rocket-nodes-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.rocket-node-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  background: #f7fafc;
  color: #223247;
  font-size: 15px;
  font-weight: 700;
}

.rocket-node-flag {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(18, 32, 46, 0.08);
  background: #ffffff;
}

.rocket-node-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rocket-plan-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rocket-plan-card.is-featured {
  background: linear-gradient(180deg, #ecfffa 0%, #ffffff 100%);
  border-color: rgba(35, 183, 156, 0.32);
  transform: translateY(-10px);
}

.rocket-plan-name {
  font-size: 22px;
  font-weight: 800;
}

.rocket-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 18px;
  color: var(--rocket-muted);
}

.rocket-plan-price strong {
  font-size: 46px;
  line-height: 1;
  color: var(--rocket-ink);
}

.rocket-plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rocket-plan-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4f7;
  color: #304257;
  font-size: 13px;
  font-weight: 700;
}

.rocket-plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #304257;
}

.rocket-plan-features li {
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
}

.rocket-plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rocket-mint);
  box-shadow: 0 0 0 5px rgba(35, 183, 156, 0.13);
}

.rocket-service-card {
  padding: 28px;
}

.rocket-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(35, 183, 156, 0.16), rgba(35, 183, 156, 0.04));
  color: var(--rocket-mint-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.rocket-service-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.rocket-service-copy {
  color: var(--rocket-muted);
  line-height: 1.8;
}

.rocket-public-footer {
  padding: 26px 0 44px;
  color: #728197;
  font-size: 14px;
  text-align: center;
}

.rocket-auth-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7, 16, 34, 0.3), rgba(7, 16, 34, 0.5)),
    url('https://github.com/dc8683/picx-images-hosting/raw/master/rocket/Fluid-gradient-background.1e8s2bjtsj.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 34px 0;
}

.rocket-auth-layout {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(4, 12, 30, 0.24);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
}

.rocket-auth-aside {
  padding: 44px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(124, 230, 212, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(7, 14, 28, 0.88), rgba(5, 10, 22, 0.96)),
    url('https://github.com/dc8683/picx-images-hosting/raw/master/rocket/space-unsplash.6m42pbctq4.webp') center center / cover no-repeat;
}

.rocket-auth-copy {
  max-width: 520px;
}

.rocket-auth-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.rocket-auth-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  font-size: 16px;
}

.rocket-auth-feature-grid {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rocket-auth-feature {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
}

.rocket-auth-feature img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

.rocket-auth-feature strong {
  display: block;
  margin-top: 14px;
  font-size: 16px;
}

.rocket-auth-feature span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.rocket-auth-main {
  padding: 44px;
  background: rgba(250, 253, 255, 0.98);
}

.rocket-auth-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: #edf3f7;
  border-radius: 999px;
}

.rocket-auth-tabs a {
  min-width: 92px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #496074;
  font-size: 14px;
  font-weight: 700;
}

.rocket-auth-tabs a.is-active {
  background: #ffffff;
  color: var(--rocket-ink);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.rocket-auth-panel {
  margin-top: 26px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--rocket-line);
  border-radius: 30px;
  box-shadow: var(--rocket-shadow-soft);
}

.rocket-auth-panel h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.rocket-auth-panel p {
  margin: 12px 0 0;
  color: var(--rocket-muted);
  line-height: 1.8;
}

.rocket-auth-alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4f8fb;
  color: #375065;
  font-size: 14px;
  line-height: 1.7;
}

.rocket-auth-alert.is-error {
  background: #fff1f2;
  color: #b42318;
}

.rocket-auth-alert.is-success {
  background: #ecfdf3;
  color: #027a48;
}

.rocket-auth-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.rocket-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rocket-field {
  display: grid;
  gap: 8px;
}

.rocket-field label {
  font-size: 14px;
  font-weight: 700;
  color: #1b2f45;
}

.rocket-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 32, 46, 0.12);
  background: #f8fbfd;
  color: var(--rocket-ink);
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
}

.rocket-field input:focus {
  border-color: rgba(35, 183, 156, 0.62);
  box-shadow: 0 0 0 4px rgba(35, 183, 156, 0.12);
  background: #ffffff;
}

.rocket-send-row {
  display: flex;
  gap: 12px;
}

.rocket-send-row input {
  flex: 1;
}

.rocket-send-row button {
  min-width: 136px;
  min-height: 56px;
  border-radius: 18px;
}

.rocket-auth-submit {
  margin-top: 6px;
  width: 100%;
}

.rocket-auth-meta {
  margin-top: 18px;
  text-align: center;
  color: var(--rocket-muted);
  font-size: 14px;
}

.rocket-auth-meta a {
  color: var(--rocket-mint-deep);
  font-weight: 700;
}

.rocket-dashboard-home {
  min-height: 100vh;
  background: #f6f9fc;
}

.rocket-dashboard-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
  align-items: stretch;
}

.rocket-dashboard-side {
  background: #ffffff;
  border-right: 1px solid var(--rocket-line);
  padding: 24px 16px 20px;
  position: sticky;
  top: 0;
  height: auto;
  min-height: 100%;
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.rocket-dashboard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px 18px;
}

.rocket-dashboard-menu {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  flex: 1 1 auto;
  align-content: start;
}

.rocket-dashboard-menu a {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #243446;
  font-size: 15px;
  font-weight: 700;
}

.rocket-dashboard-menu a.is-active {
  background: linear-gradient(180deg, #ecfffa, #e6f9f4);
  color: var(--rocket-mint-deep);
}

.rocket-dashboard-user {
  margin-top: auto;
  padding: 18px 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.rocket-dashboard-user strong {
  display: block;
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rocket-dashboard-user div div {
  color: #7a8a9d;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rocket-dashboard-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d9fff4, #bcece2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--rocket-mint-deep);
}

.rocket-dashboard-main {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.rocket-dashboard-topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rocket-dashboard-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.rocket-dashboard-grid {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.82fr);
  align-items: stretch;
  flex: 1 1 auto;
}

.rocket-dashboard-grid > div:last-child {
  display: grid;
  align-content: start;
  gap: 20px;
}

.rocket-dashboard-primary,
.rocket-dashboard-secondary {
  display: grid;
  align-content: start;
  gap: 20px;
}

.rocket-dashboard-secondary {
  min-height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
}

.rocket-dashboard-secondary .rocket-notice-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.rocket-dashboard-secondary .rocket-announcement-list {
  flex: 1 1 auto;
}

.rocket-dashboard-primary .rocket-overview-metrics,
.rocket-dashboard-primary .rocket-overview-shortcuts,
.rocket-subscribe-card,
.rocket-traffic-card {
  margin-top: 0 !important;
}

.rocket-welcome-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 260px;
  border-radius: 28px;
  background: linear-gradient(135deg, #58d7c0 0%, #a6ede1 100%);
  color: #0f1b2d;
  box-shadow: 0 24px 48px rgba(35, 183, 156, 0.2);
}

.rocket-welcome-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.rocket-welcome-card h1 {
  margin: 12px 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.rocket-welcome-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(15, 27, 45, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.rocket-overview-metrics {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rocket-metric-card {
  padding: 22px;
}

.rocket-metric-label {
  color: var(--rocket-muted);
  font-size: 13px;
  font-weight: 700;
}

.rocket-metric-value {
  margin-top: 12px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.rocket-overview-shortcuts {
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rocket-shortcut {
  min-height: 146px;
  padding: 20px;
  border-radius: 24px;
  box-shadow: var(--rocket-shadow-soft);
  color: #243446;
}

.rocket-shortcut:nth-child(1) {
  background: linear-gradient(160deg, #dceeff, #b8d8ff);
}

.rocket-shortcut:nth-child(2) {
  background: linear-gradient(160deg, #e1dcff, #c4c1ff);
}

.rocket-shortcut:nth-child(3) {
  background: linear-gradient(160deg, #defdf4, #b9f0dd);
}

.rocket-shortcut:nth-child(4) {
  background: linear-gradient(160deg, #eceef2, #d7d9df);
}

.rocket-shortcut strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.rocket-shortcut span {
  display: block;
  margin-top: 8px;
  color: rgba(36, 52, 70, 0.72);
  line-height: 1.7;
  font-size: 14px;
}

.rocket-panel-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 32, 46, 0.06);
  box-shadow: var(--rocket-shadow-soft);
}

.rocket-panel-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.rocket-notice-card {
  min-height: 260px;
  max-height: 360px;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff, #f2fbf8);
  border-color: rgba(35, 183, 156, 0.1);
}

.rocket-announcement-list {
  display: grid;
  gap: 14px;
}

.rocket-announcement-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 183, 156, 0.1);
}

.rocket-announcement-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rocket-announcement-head strong {
  font-size: 15px;
  line-height: 1.6;
  color: #183246;
}

.rocket-announcement-head span {
  flex: 0 0 auto;
  color: #6f8193;
  font-size: 12px;
}

.rocket-announcement-body {
  margin-top: 10px;
  color: #4a5e74;
  line-height: 1.85;
  font-size: 14px;
}

.rocket-announcement-body p {
  margin: 0;
}

.rocket-announcement-body p + p {
  margin-top: 10px;
}

.rocket-announcement-body a {
  color: var(--rocket-mint-deep);
  font-weight: 700;
  text-decoration: underline;
}

.rocket-announcement-body strong {
  color: #173246;
}

.rocket-subscribe-box {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #f7fafc;
  border-radius: 18px;
  border: 1px solid rgba(18, 32, 46, 0.06);
}

.rocket-subscribe-box code {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #2d4056;
  font-size: 14px;
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  font-weight: 500;
}

.rocket-subscribe-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: start;
}

.rocket-subscribe-main {
  display: grid;
  gap: 18px;
}

.rocket-subscribe-tools {
  display: grid;
  gap: 14px;
}

.rocket-subscribe-tools-title {
  color: #607086;
  font-size: 14px;
  font-weight: 700;
}

.rocket-subscribe-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rocket-subscribe-app {
  width: 84px;
  min-height: 92px;
  padding: 10px 8px;
  border-radius: 20px;
  background: #f7fafc;
  border: 1px solid rgba(18, 32, 46, 0.06);
  box-shadow: var(--rocket-shadow-soft);
  display: grid;
  grid-template-rows: 42px minmax(28px, auto);
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rocket-subscribe-app:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 183, 156, 0.16);
  box-shadow: 0 18px 30px rgba(16, 24, 40, 0.08);
}

.rocket-subscribe-app-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(18, 32, 46, 0.06);
}

.rocket-subscribe-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rocket-subscribe-app-icon.is-fallback {
  background: linear-gradient(135deg, #0f1726, #232f45);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.rocket-subscribe-app strong {
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #223246;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.rocket-subscribe-qr {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.rocket-subscribe-qr-frame {
  width: 180px;
  height: 180px;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 32, 46, 0.08);
  box-shadow: var(--rocket-shadow-soft);
}

.rocket-subscribe-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rocket-subscribe-qr-copy {
  text-align: center;
  color: #607086;
  font-size: 13px;
  line-height: 1.7;
}

.rocket-progress-ring {
  width: 220px;
  height: 220px;
  margin: 8px auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #ffffff 0 58%, transparent 58.5%),
    conic-gradient(var(--rocket-mint) var(--progress), #d9f1ec 0);
}

.rocket-progress-ring strong {
  display: block;
  text-align: center;
  font-size: 28px;
  line-height: 1.1;
}

.rocket-progress-ring span {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: var(--rocket-muted);
  font-size: 14px;
}

.rocket-empty-state {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--rocket-muted);
  line-height: 1.8;
}

html[data-rocket-route="dashboard-app"] body {
  background:
    radial-gradient(circle at top right, rgba(35, 183, 156, 0.08), transparent 26%),
    linear-gradient(180deg, #f6f9fc 0%, #f5f8fb 100%);
}

html[data-rocket-route="dashboard-app"] #app,
html[data-rocket-route="dashboard-app"] #page-container,
html[data-rocket-route="dashboard-app"] #main-container,
html[data-rocket-route="dashboard-app"] .content {
  position: relative;
  z-index: 1;
}

html[data-rocket-route="dashboard-app"] #page-container,
html[data-rocket-route="dashboard-app"] #main-container,
html[data-rocket-route="dashboard-app"] .content,
html[data-rocket-route="dashboard-app"] .content-header,
html[data-rocket-route="dashboard-app"] .content-header-section {
  background: transparent !important;
}

html[data-rocket-route="dashboard-app"] #page-header,
html[data-rocket-route="dashboard-app"] #sidebar {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(18px);
  border-color: rgba(18, 32, 46, 0.06) !important;
}

html[data-rocket-route="dashboard-app"] #page-header {
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.04);
}

html[data-rocket-route="dashboard-app"] #sidebar {
  border-right: 1px solid rgba(18, 32, 46, 0.06) !important;
}

html[data-rocket-route="dashboard-app"] .nav-main-link,
html[data-rocket-route="dashboard-app"] .nav-main-link:hover,
html[data-rocket-route="dashboard-app"] .nav-main-link:focus {
  color: #223247 !important;
}

html[data-rocket-route="dashboard-app"] .nav-main-link {
  margin: 4px 10px;
  border-radius: 14px;
}

html[data-rocket-route="dashboard-app"] .nav-main-link.active,
html[data-rocket-route="dashboard-app"] .nav-main-link.router-link-active,
html[data-rocket-route="dashboard-app"] .nav-main-link[aria-current="page"] {
  background: linear-gradient(180deg, #ecfffa, #e6f9f4) !important;
  color: var(--rocket-mint-deep) !important;
}

html[data-rocket-route="dashboard-app"] .nav-main-link .nav-main-link-icon,
html[data-rocket-route="dashboard-app"] .nav-main-link.active .nav-main-link-icon {
  color: var(--rocket-mint-deep) !important;
}

html[data-rocket-route="dashboard-app"] .content-heading,
html[data-rocket-route="dashboard-app"] .block-title,
html[data-rocket-route="dashboard-app"] .xboard-container-title,
html[data-rocket-route="dashboard-app"] .ant-modal-title,
html[data-rocket-route="dashboard-app"] .ant-drawer-title {
  color: var(--rocket-ink) !important;
  letter-spacing: -0.03em;
}

html[data-rocket-route="dashboard-app"] .xboard-container-title::before {
  content: "ROCKET PANEL";
  display: block;
  margin-bottom: 4px;
  color: rgba(20, 158, 134, 0.75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

html[data-rocket-route="dashboard-app"] .block,
html[data-rocket-route="dashboard-app"] .block-content,
html[data-rocket-route="dashboard-app"] .block-header,
html[data-rocket-route="dashboard-app"] .ant-card,
html[data-rocket-route="dashboard-app"] .ant-modal-content,
html[data-rocket-route="dashboard-app"] .ant-drawer-content,
html[data-rocket-route="dashboard-app"] .ant-list-item,
html[data-rocket-route="dashboard-app"] .ant-table,
html[data-rocket-route="dashboard-app"] .ant-table-container,
html[data-rocket-route="dashboard-app"] .ant-collapse,
html[data-rocket-route="dashboard-app"] .ant-collapse-item,
html[data-rocket-route="dashboard-app"] .ant-input,
html[data-rocket-route="dashboard-app"] .ant-input-affix-wrapper,
html[data-rocket-route="dashboard-app"] .ant-select-selector,
html[data-rocket-route="dashboard-app"] .ant-radio-button-wrapper,
html[data-rocket-route="dashboard-app"] .form-control {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(18, 32, 46, 0.08) !important;
}

html[data-rocket-route="dashboard-app"] .block,
html[data-rocket-route="dashboard-app"] .ant-card,
html[data-rocket-route="dashboard-app"] .ant-table-wrapper,
html[data-rocket-route="dashboard-app"] .ant-modal-content,
html[data-rocket-route="dashboard-app"] .ant-drawer-content {
  border-radius: 24px !important;
  box-shadow: var(--rocket-shadow-soft) !important;
}

html[data-rocket-route="dashboard-app"] .block-content,
html[data-rocket-route="dashboard-app"] .ant-card-body,
html[data-rocket-route="dashboard-app"] .ant-modal-body,
html[data-rocket-route="dashboard-app"] .ant-drawer-body {
  backdrop-filter: blur(10px);
}

html[data-rocket-route="dashboard-app"] .btn-primary,
html[data-rocket-route="dashboard-app"] .btn-hero-primary,
html[data-rocket-route="dashboard-app"] .ant-btn-primary,
html[data-rocket-route="dashboard-app"] .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  background: linear-gradient(135deg, #38ddc0, var(--rocket-mint)) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 14px 24px rgba(35, 183, 156, 0.24) !important;
}

html[data-rocket-route="dashboard-app"] .btn-primary:hover,
html[data-rocket-route="dashboard-app"] .btn-hero-primary:hover,
html[data-rocket-route="dashboard-app"] .ant-btn-primary:hover,
html[data-rocket-route="dashboard-app"] .ant-btn-primary:focus {
  background: linear-gradient(135deg, #2bcfb4, #16a085) !important;
  border-color: transparent !important;
}

html[data-rocket-route="dashboard-app"] .btn-alt-primary,
html[data-rocket-route="dashboard-app"] .btn-alt-secondary,
html[data-rocket-route="dashboard-app"] .btn-alt-light,
html[data-rocket-route="dashboard-app"] .ant-btn-default,
html[data-rocket-route="dashboard-app"] .ant-radio-button-wrapper {
  border-radius: 999px !important;
}

html[data-rocket-route="dashboard-app"] .ant-input,
html[data-rocket-route="dashboard-app"] .ant-input-affix-wrapper,
html[data-rocket-route="dashboard-app"] .ant-select-selector,
html[data-rocket-route="dashboard-app"] .ant-picker,
html[data-rocket-route="dashboard-app"] .form-control {
  border-radius: 16px !important;
  box-shadow: none !important;
}

html[data-rocket-route="dashboard-app"] .ant-input:focus,
html[data-rocket-route="dashboard-app"] .ant-input-affix-wrapper-focused,
html[data-rocket-route="dashboard-app"] .ant-select-focused .ant-select-selector,
html[data-rocket-route="dashboard-app"] .form-control:focus {
  border-color: rgba(35, 183, 156, 0.38) !important;
  box-shadow: 0 0 0 4px rgba(35, 183, 156, 0.1) !important;
}

html[data-rocket-route="dashboard-app"] .xboard-plan-tabs,
.xboard-plan-tabs,
.v2board-plan-tabs,
html[data-rocket-route="dashboard-app"] .v2board-plan-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(18, 32, 46, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
}

html[data-rocket-route="dashboard-app"] .xboard-plan-tabs > span,
.xboard-plan-tabs > span,
.v2board-plan-tabs > span,
html[data-rocket-route="dashboard-app"] .v2board-plan-tabs > span {
  min-width: 86px;
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--rocket-muted);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
}

html[data-rocket-route="dashboard-app"] .xboard-plan-tabs > .active,
html[data-rocket-route="dashboard-app"] .v2board-plan-tabs > .active {
  background: linear-gradient(135deg, #38ddc0, var(--rocket-mint));
  color: #ffffff;
}

html[data-rocket-route="dashboard-app"] .xboard-plan-features > li,
html[data-rocket-route="dashboard-app"] .v2board-plan-features > li {
  color: #3a4b5e;
}

html[data-rocket-route="dashboard-app"] .xboard-plan-features > li:before,
html[data-rocket-route="dashboard-app"] .v2board-plan-features > li:before {
  color: var(--rocket-mint-deep);
}

html[data-rocket-route="dashboard-app"] .xboard-shortcuts-item,
html[data-rocket-route="dashboard-app"] .v2board-shortcuts-item {
  border: 1px solid rgba(18, 32, 46, 0.08);
  border-radius: 22px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--rocket-shadow-soft);
}

html[data-rocket-route="dashboard-app"] .xboard-shortcuts-item:hover,
html[data-rocket-route="dashboard-app"] .v2board-shortcuts-item:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

html[data-rocket-route="dashboard-app"] .n-qr-code,
html[data-rocket-route="dashboard-app"] .xboard-payment-qrcode {
  background: #ffffff;
  border: 1px solid rgba(18, 32, 46, 0.08);
  border-radius: 18px;
  display: inline-flex;
  padding: 12px;
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.08);
}

html[data-rocket-route="dashboard-app"] .n-qr-code canvas,
html[data-rocket-route="dashboard-app"] .n-qr-code svg,
html[data-rocket-route="dashboard-app"] .xboard-payment-qrcode canvas,
html[data-rocket-route="dashboard-app"] .xboard-payment-qrcode svg {
  image-rendering: pixelated;
}

html[data-rocket-route="dashboard-app"] .xboard-copyright,
html[data-rocket-route="dashboard-app"] .v2board-copyright {
  opacity: 0.42;
  font-size: 11px;
  letter-spacing: 0.08em;
}

html[data-rocket-route="dashboard-app"] .custom-html-style,
html[data-rocket-route="dashboard-app"] .custom-html-style p,
html[data-rocket-route="dashboard-app"] .custom-html-style li {
  color: var(--rocket-ink) !important;
}

html[data-rocket-route="dashboard-app"] .custom-html-style a {
  color: var(--rocket-mint-deep) !important;
}

html[data-rocket-route="dashboard-app"] .n-layout,
html[data-rocket-route="dashboard-app"] .n-layout-scroll-container,
html[data-rocket-route="dashboard-app"] .n-layout-content {
  background: transparent !important;
}

html[data-rocket-route="dashboard-app"] .n-layout-sider {
  background: rgba(255, 255, 255, 0.92) !important;
  border-right: 1px solid var(--rocket-line);
  box-shadow: 12px 0 32px rgba(16, 24, 40, 0.03);
}

html[data-rocket-route="dashboard-app"] .n-layout-header,
html[data-rocket-route="dashboard-app"] .n-card,
html[data-rocket-route="dashboard-app"] .n-data-table,
html[data-rocket-route="dashboard-app"] .n-modal,
html[data-rocket-route="dashboard-app"] .n-drawer,
html[data-rocket-route="dashboard-app"] .n-tabs-nav,
html[data-rocket-route="dashboard-app"] .n-input,
html[data-rocket-route="dashboard-app"] .n-input-wrapper,
html[data-rocket-route="dashboard-app"] .n-base-selection,
html[data-rocket-route="dashboard-app"] .n-alert,
html[data-rocket-route="dashboard-app"] .n-popover,
html[data-rocket-route="dashboard-app"] .n-empty,
html[data-rocket-route="dashboard-app"] .n-list {
  border-radius: 22px !important;
}

html[data-rocket-route="dashboard-app"] .n-card,
html[data-rocket-route="dashboard-app"] .n-data-table-wrapper,
html[data-rocket-route="dashboard-app"] .n-modal-body-wrapper .n-modal,
html[data-rocket-route="dashboard-app"] .n-drawer {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(18, 32, 46, 0.06) !important;
  box-shadow: var(--rocket-shadow) !important;
}

html[data-rocket-route="dashboard-app"] .n-button--primary-type,
html[data-rocket-route="dashboard-app"] .n-button--success-type {
  background: linear-gradient(135deg, #38ddc0, var(--rocket-mint)) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 14px 26px rgba(35, 183, 156, 0.24);
}

html[data-rocket-route="dashboard-app"] .n-button:not(.n-button--primary-type):not(.n-button--success-type) {
  border-radius: 999px !important;
}

html[data-rocket-route="dashboard-app"] .n-menu-item-content {
  border-radius: 14px !important;
}

html[data-rocket-route="dashboard-app"] .n-menu-item-content--selected {
  background: linear-gradient(180deg, #ecfffa, #e6f9f4) !important;
  color: var(--rocket-mint-deep) !important;
}

html[data-rocket-route="dashboard-app"] .n-input,
html[data-rocket-route="dashboard-app"] .n-input-wrapper,
html[data-rocket-route="dashboard-app"] .n-base-selection {
  background: #f8fbfd !important;
  border-color: rgba(18, 32, 46, 0.08) !important;
}

html[data-rocket-route="dashboard-app"] .n-layout-header {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 32, 46, 0.05);
}

html[data-rocket-route="dashboard-app"] .n-data-table-th {
  background: #f7fafc !important;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container {
  min-height: 100vh;
  align-items: stretch;
  width: 100%;
}

html[data-rocket-route="dashboard-app"] .rocket-app-scroll {
  display: block !important;
  width: 100%;
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar {
  position: fixed;
  top: 12px;
  left: 12px;
  bottom: 12px;
  width: 220px;
  padding: 26px 16px 22px;
  background: rgba(255, 255, 255, 0.92);
  border-right: 1px solid rgba(18, 32, 46, 0.06);
  border-radius: 28px;
  box-shadow: 18px 24px 42px rgba(16, 24, 40, 0.08);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  z-index: 70;
  pointer-events: auto;
  overflow: auto;
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar-brand {
  padding: 0 12px 18px;
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar-menu {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar-menu a {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #243446;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar-menu a.is-active {
  background: linear-gradient(180deg, #ecfffa, #e6f9f4);
  color: var(--rocket-mint-deep);
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar-user {
  margin-top: auto;
  padding: 18px 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d9fff4, #bcece2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rocket-mint-deep);
  font-size: 20px;
  font-weight: 800;
}

html[data-rocket-route="dashboard-app"] .rocket-app-sidebar-user strong {
  display: block;
  color: #1e3045;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article {
  min-width: 0;
  min-height: 100vh;
  background: transparent !important;
}

html[data-rocket-route="dashboard-app"] .rocket-app-article-shell {
  padding: 104px 24px 28px;
}

html[data-rocket-route="dashboard-app"] .rocket-app-topbar-shell {
  position: fixed;
  top: 12px;
  left: 244px;
  right: 12px;
  min-height: 74px;
  padding: 0 24px;
  border-radius: 24px;
  border: 1px solid rgba(18, 32, 46, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 65;
}

html[data-rocket-route="dashboard-app"] .rocket-app-topbar-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a2b3f;
}

html[data-rocket-route="dashboard-app"] .rocket-app-topbar-title span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 183, 156, 0.08);
  color: var(--rocket-mint-deep);
  font-size: 14px;
}

html[data-rocket-route="dashboard-app"] .rocket-app-topbar-title strong {
  font-size: 16px;
  font-weight: 800;
}

html[data-rocket-route="dashboard-app"] .rocket-app-topbar-user {
  color: #536579;
  font-size: 14px;
  font-weight: 700;
  max-width: min(28vw, 320px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > header {
  position: sticky;
  top: 16px;
  z-index: 30;
  min-height: 70px;
  height: auto !important;
  margin: 16px 18px 0;
  padding: 12px 22px !important;
  border: 1px solid rgba(18, 32, 46, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.06);
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > section {
  flex: 1;
  overflow: auto !important;
  padding: 18px;
  background: transparent !important;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > section > section {
  min-height: calc(100vh - 154px);
  padding: 6px !important;
  background: transparent !important;
  overflow-y: auto !important;
}

html[data-rocket-route="dashboard-app"] [class*="max-w-1200"] {
  max-width: 1240px !important;
  margin: 0 auto !important;
}

html[data-rocket-route="dashboard-app"] .side-menu {
  padding: 12px 10px 16px;
}

html[data-rocket-route="dashboard-app"] .rocket-menu-item {
  min-height: 52px;
  padding: 0 14px !important;
  gap: 12px;
  font-size: 15px !important;
  font-weight: 700 !important;
}

html[data-rocket-route="dashboard-app"] .rocket-menu-item .n-menu-item-content__icon {
  display: none !important;
}

html[data-rocket-route="dashboard-app"] .rocket-menu-item::before {
  content: attr(data-rocket-icon);
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 183, 156, 0.08);
  color: var(--rocket-mint-deep);
  font-size: 14px;
  flex: 0 0 auto;
}

html[data-rocket-route="dashboard-app"] .title-text {
  color: var(--rocket-ink) !important;
  font-size: 18px !important;
  letter-spacing: -0.03em;
}

html[data-rocket-route="dashboard-app"] .n-breadcrumb-item__link,
html[data-rocket-route="dashboard-app"] .n-breadcrumb .n-icon,
html[data-rocket-route="dashboard-app"] .n-breadcrumb-item__separator {
  color: #4d5d70 !important;
}

html[data-rocket-route="dashboard-app"] .n-breadcrumb-item__link {
  font-weight: 700;
}

html[data-rocket-route="dashboard-app"] .n-menu-item-content__icon {
  color: inherit !important;
}

html[data-rocket-route="dashboard-app"] .rocket-header-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a2b3f;
  font-size: 15px;
  font-weight: 800;
}

html[data-rocket-route="dashboard-app"] .rocket-header-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 183, 156, 0.08);
  color: var(--rocket-mint-deep);
  font-size: 14px;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > header .n-button--default-type,
html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > header > div:last-child > .n-icon {
  color: #4d5d70 !important;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > header .n-button--default-type:hover {
  color: var(--rocket-mint-deep) !important;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > header .n-button--default-type .hidden {
  font-weight: 700;
  color: #1f3044;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article h1,
html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article h2,
html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article h3 {
  color: #162233;
  letter-spacing: -0.04em;
}

html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article h2 {
  margin: 8px 10px 18px !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 800 !important;
  line-height: 1.06;
}

@media (min-width: 821px) {
  html[data-rocket-route="dashboard-app"] body {
    background:
      radial-gradient(circle at top right, rgba(35, 183, 156, 0.08), transparent 24%),
      linear-gradient(180deg, #f7fbfd 0%, #edf5f8 100%);
  }

  html[data-rocket-route="dashboard-app"] .rocket-native-sidebar,
  html[data-rocket-route="dashboard-app"] .rocket-native-topbar,
  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > aside,
  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > header {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container {
    padding-left: 232px;
  }
}

html[data-rocket-route="dashboard-app"] .rocket-app-block {
  margin-bottom: 18px;
}

html[data-rocket-route="dashboard-app"] .rocket-app-toolbar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(18, 32, 46, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--rocket-shadow-soft);
}

html[data-rocket-route="dashboard-app"] .rocket-app-toolbar .n-button {
  width: auto !important;
  min-width: 116px;
}

html[data-rocket-route="dashboard-app"] .rocket-kb-placeholder {
  min-height: 240px;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  border: 1px dashed rgba(35, 183, 156, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(35, 183, 156, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.9);
  color: #5f6f83;
}

html[data-rocket-route="dashboard-app"] .rocket-kb-placeholder strong {
  font-size: 22px;
  color: #162233;
}

html[data-rocket-route="dashboard-app"] .rocket-kb-placeholder span {
  max-width: 520px;
  line-height: 1.8;
}

html[data-rocket-route="dashboard-app"] .card-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

html[data-rocket-route="dashboard-app"] .card-container .card-item {
  min-width: 0 !important;
}

html[data-rocket-route="dashboard-app"] .card-container .n-card {
  height: 100%;
}

html[data-rocket-route="dashboard-app"] .n-card-header {
  align-items: flex-start !important;
  gap: 18px;
}

html[data-rocket-route="dashboard-app"] .n-card-header__main {
  color: #172334 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
}

html[data-rocket-route="dashboard-app"] .n-card-header__extra {
  color: #55657a;
}

html[data-rocket-route="dashboard-app"] .n-card__content {
  color: #425468;
  line-height: 1.85;
}

html[data-rocket-route="dashboard-app"] .n-card__action {
  background: transparent !important;
  border-top: 0 !important;
  padding-top: 0 !important;
}

html[data-rocket-route="dashboard-app"] .n-card__action .n-button {
  width: 100%;
  justify-content: center;
}

html[data-rocket-route="dashboard-app"] .markdown-body,
html[data-rocket-route="dashboard-app"] .markdown-body p,
html[data-rocket-route="dashboard-app"] .markdown-body li {
  color: #425468 !important;
  line-height: 1.9 !important;
}

html[data-rocket-route="dashboard-app"] .markdown-body p {
  margin: 0 !important;
}

html[data-rocket-route="dashboard-app"] .markdown-body a {
  color: var(--rocket-mint-deep) !important;
}

html[data-rocket-route="dashboard-app"] .n-radio-group--button-group {
  display: inline-flex !important;
  gap: 8px;
  padding: 7px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(18, 32, 46, 0.08) !important;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
}

html[data-rocket-route="dashboard-app"] .n-radio-group__splitor {
  display: none !important;
}

html[data-rocket-route="dashboard-app"] .n-radio-button {
  border: 0 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-radius: 999px !important;
  overflow: hidden;
  color: #334155 !important;
}

html[data-rocket-route="dashboard-app"] .n-radio-button .n-radio__label {
  padding: 0 16px;
  font-weight: 700;
  color: #334155 !important;
}

html[data-rocket-route="dashboard-app"] .n-radio-button--checked {
  background: linear-gradient(135deg, #38ddc0, var(--rocket-mint)) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(35, 183, 156, 0.24);
}

html[data-rocket-route="dashboard-app"] .n-radio-button--checked .n-radio__label {
  color: #ffffff !important;
}

html[data-rocket-route="dashboard-app"] .n-input,
html[data-rocket-route="dashboard-app"] .n-input-wrapper {
  min-height: 52px;
}

html[data-rocket-route="dashboard-app"] .n-input .n-input__input-el,
html[data-rocket-route="dashboard-app"] .n-input input {
  color: #1a2a3d !important;
}

html[data-rocket-route="dashboard-app"] .n-input .n-input__placeholder,
html[data-rocket-route="dashboard-app"] .n-input input::placeholder {
  color: #93a0b1 !important;
}

html[data-rocket-route="dashboard-app"] .n-button {
  border-radius: 999px !important;
  font-weight: 700 !important;
}

html[data-rocket-route="dashboard-app"] .n-button__content {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

html[data-rocket-route="dashboard-app"] .n-button--small-type {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

html[data-rocket-route="dashboard-app"] .n-button--error-type {
  background: linear-gradient(135deg, #ff7a90, #f04466) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(240, 68, 102, 0.22);
}

html[data-rocket-route="dashboard-app"] .n-switch {
  --n-rail-color: #d8e7e3;
  --n-rail-color-active: #23b79c;
}

html[data-rocket-route="dashboard-app"] .n-alert {
  background: #fff7ed !important;
  border: 1px solid rgba(245, 158, 11, 0.16) !important;
  color: #9a5b14 !important;
  border-radius: 24px !important;
  box-shadow: var(--rocket-shadow-soft) !important;
}

html[data-rocket-route="dashboard-app"] .n-data-table-wrapper {
  overflow: hidden;
  border-radius: 22px !important;
}

html[data-rocket-route="dashboard-app"] .n-data-table {
  border-radius: 26px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(18, 32, 46, 0.06) !important;
  box-shadow: var(--rocket-shadow-soft) !important;
}

html[data-rocket-route="dashboard-app"] .n-data-table-table {
  background: #ffffff !important;
}

html[data-rocket-route="dashboard-app"] .n-data-table-table thead th,
html[data-rocket-route="dashboard-app"] .n-data-table-th {
  background: #f7fafc !important;
  color: #5b6c80 !important;
  font-weight: 800 !important;
}

html[data-rocket-route="dashboard-app"] .n-data-table-table tbody td {
  color: #2a3a4f !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

html[data-rocket-route="dashboard-app"] .n-data-table-empty {
  padding: 42px 0 !important;
}

html[data-rocket-route="dashboard-app"] .n-empty {
  color: #91a0b2 !important;
}

html[data-rocket-route="dashboard-app"] .n-pagination,
html[data-rocket-route="dashboard-app"] .n-data-table .n-pagination {
  margin-top: 16px;
  justify-content: flex-end;
}

html[data-rocket-route="dashboard-app"] .n-pagination-item,
html[data-rocket-route="dashboard-app"] .n-pagination-item--button {
  border-radius: 12px !important;
}

html[data-rocket-route="dashboard-app"] .text-gray-500 {
  color: #7b8a9b !important;
}

html[data-rocket-route="dashboard-app"] .text-5xl,
html[data-rocket-route="dashboard-app"] .text-3xl {
  letter-spacing: -0.04em;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-input,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-input-wrapper,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-base-selection,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-base-selection-label {
  display: flex !important;
  align-items: center !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-input .n-input__input-el,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-input input,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-base-selection-input__content,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="knowledge"] .n-base-selection-placeholder {
  height: 100% !important;
  line-height: 1.4 !important;
  display: inline-flex !important;
  align-items: center !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="plan"] .n-radio-group--button-group {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: stretch !important;
  flex-wrap: nowrap !important;
  gap: 6px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 6px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(18, 32, 46, 0.08) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05) !important;
  overflow: hidden !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="plan"] .n-radio-button,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="plan"] .xboard-plan-tabs > span,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="plan"] .v2board-plan-tabs > span {
  min-height: 42px !important;
  min-width: 0 !important;
  flex: 1 1 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  color: #334155 !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="plan"] .n-radio-button .n-radio__label {
  min-height: 42px !important;
  width: 100% !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  color: #334155 !important;
  text-align: center !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="plan"] .n-radio-button--checked,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="plan"] .n-radio-button--checked .n-radio__label {
  background: linear-gradient(135deg, #38ddc0, var(--rocket-mint)) !important;
  color: #ffffff !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="ticket"] .n-data-table .n-button,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="ticket"] .n-card .n-button,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="ticket"] .n-modal .n-button {
  min-width: 74px !important;
  height: 36px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="ticket"] .n-tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 32px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="order"] .n-data-table .n-button,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="order"] .n-card .n-button,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="order"] .n-modal .n-button {
  min-width: 84px !important;
  height: 34px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  border-radius: 999px !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="order"] .n-data-table .n-button .n-button__content,
html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="order"] .n-card .n-button .n-button__content {
  line-height: 1 !important;
}

html[data-rocket-route="dashboard-app"][data-rocket-dashboard-view="order"] .n-data-table .n-button--disabled {
  background: #e8eef4 !important;
  color: #7b8a9b !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

html[data-rocket-route="dashboard-app"] [class*="cursor-pointer"] {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

html[data-rocket-route="dashboard-app"] .card-container .cursor-pointer:hover,
html[data-rocket-route="dashboard-app"] .n-card.cursor-pointer:hover {
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .rocket-plan-grid,
  .rocket-clients-grid,
  .rocket-service-grid,
  .rocket-overview-shortcuts,
  .rocket-overview-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rocket-nodes-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .rocket-auth-layout,
  .rocket-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .rocket-dashboard-shell {
    grid-template-columns: 1fr;
  }

  .rocket-dashboard-side {
    position: static;
    height: auto;
  }

  html[data-rocket-route="dashboard-app"] .card-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .rocket-nav-links {
    display: none;
  }

  .rocket-hero {
    min-height: 660px;
    padding-bottom: 94px;
  }

  .rocket-section {
    padding: 66px 0;
  }

  .rocket-clients-grid,
  .rocket-service-grid,
  .rocket-plan-grid,
  .rocket-auth-feature-grid,
  .rocket-overview-shortcuts,
  .rocket-overview-metrics,
  .rocket-field-row {
    grid-template-columns: 1fr;
  }

  .rocket-nodes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rocket-auth-aside,
  .rocket-auth-main,
  .rocket-auth-panel {
    padding: 24px;
  }

  .rocket-auth-page {
    padding: 16px 0;
  }

  .rocket-dashboard-main {
    padding: 12px;
  }

  .rocket-subscribe-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rocket-subscribe-qr {
    justify-items: center;
  }

  html[data-rocket-route="dashboard-app"] #sidebar {
    background: rgba(255, 255, 255, 0.96) !important;
  }

  .rocket-dashboard-topbar {
    display: none;
  }

  .rocket-dashboard-grid {
    margin-top: 14px;
    gap: 14px;
    align-items: start;
  }

  .rocket-dashboard-side {
    position: static;
    height: auto;
    padding: 14px 12px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--rocket-line);
    gap: 12px;
  }

  .rocket-dashboard-brand {
    padding: 0 4px 4px;
  }

  .rocket-dashboard-menu {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    overflow-x: auto;
    padding: 0 2px 6px;
    scrollbar-width: none;
  }

  .rocket-dashboard-menu::-webkit-scrollbar {
    display: none;
  }

  .rocket-dashboard-menu a {
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 14px;
    border-radius: 999px;
    background: #f7fafc;
  }

  .rocket-dashboard-user {
    margin-top: 0;
    padding: 8px 4px 0;
    gap: 10px;
  }

  .rocket-dashboard-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 18px;
  }

  .rocket-dashboard-user strong {
    font-size: 14px;
  }

  .rocket-dashboard-user div div {
    font-size: 12px;
  }

  .rocket-welcome-card {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .rocket-welcome-card h1 {
    margin: 10px 0 8px;
    font-size: clamp(30px, 10vw, 42px);
  }

  .rocket-welcome-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .rocket-metric-card,
  .rocket-shortcut,
  .rocket-panel-card {
    padding: 18px;
  }

  .rocket-metric-value {
    font-size: 28px;
  }

  .rocket-shortcut {
    min-height: 124px;
  }

  .rocket-shortcut strong {
    margin-top: 12px;
    font-size: 18px;
  }

  .rocket-shortcut span {
    margin-top: 6px;
    font-size: 13px;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > header {
    margin: 10px 10px 0;
    padding: 10px 14px !important;
    border-radius: 20px;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > section {
    padding: 10px;
  }

  html[data-rocket-route="dashboard-app"] .card-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  html[data-rocket-route="dashboard-app"] .rocket-announcement-head {
    flex-direction: column;
  }

  html[data-rocket-route="dashboard-app"] .rocket-app-toolbar {
    grid-template-columns: 1fr;
  }

  html[data-rocket-route="dashboard-app"] .rocket-app-scroll {
    display: block !important;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container {
    padding-left: 0 !important;
    flex-direction: row !important;
    align-items: stretch !important;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article {
    min-height: auto;
    width: 100%;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-scroll-container > article > section > section {
    min-height: auto;
    padding: 0 !important;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-sider {
    display: none !important;
    flex: 0 0 auto;
    box-shadow: none;
    border-right: 0;
    background: transparent !important;
    overflow: hidden !important;
  }

  html[data-rocket-route="dashboard-app"] .n-layout-sider.n-layout-sider--collapsed {
    min-width: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
  }

  html[data-rocket-route="dashboard-app"] .rocket-app-sidebar {
    display: none !important;
  }

  html[data-rocket-route="dashboard-app"] .rocket-app-article-shell {
    padding: 12px;
  }

  html[data-rocket-route="dashboard-app"] .rocket-app-topbar-shell {
    display: none !important;
  }

  .rocket-subscribe-box {
    flex-direction: column;
    align-items: stretch;
  }

  .rocket-subscribe-box code {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.6;
    font-size: 13px;
  }

  .rocket-subscribe-apps {
    gap: 10px;
  }

  .rocket-subscribe-app {
    width: calc(33.333% - 7px);
    min-width: 0;
    flex: 1 1 calc(33.333% - 7px);
  }

  .rocket-subscribe-qr-frame {
    width: min(180px, 56vw);
    height: min(180px, 56vw);
  }

  .rocket-notice-card {
    max-height: none;
  }
}
