/* JulangCloud Cool user frontend dark-gold professional overrides. */

:root {
  /* Base Background */
  --jc-bg-main: #07090D;
  --jc-bg-layout: #0A0E15;
  --jc-bg-sidebar: #0B0F16;
  --jc-bg-navbar: #0E131C;

  /* Card */
  --jc-card-bg: #111722;
  --jc-card-bg-soft: #171E2B;
  --jc-card-bg-hover: #1B2433;
  --jc-card-header: #141B27;

  /* Border */
  --jc-border: #273041;
  --jc-border-soft: #1F2937;
  --jc-border-strong: #3A465C;

  /* Text */
  --jc-text-title: #F5F7FA;
  --jc-text-main: #D7DEE9;
  --jc-text-secondary: #AAB4C3;
  --jc-text-muted: #7F8A9B;

  /* Brand Gold */
  --jc-gold: #D6A84F;
  --jc-gold-hover: #E8C46A;
  --jc-gold-deep: #A77A28;
  --jc-gold-soft: rgba(214, 168, 79, 0.12);
  --jc-gold-border: rgba(214, 168, 79, 0.32);
  --jc-gold-shadow: rgba(214, 168, 79, 0.18);

  /* Functional Colors */
  --jc-success: #22C55E;
  --jc-success-soft: rgba(34, 197, 94, 0.12);
  --jc-warning: #F59E0B;
  --jc-warning-soft: rgba(245, 158, 11, 0.12);
  --jc-danger: #EF4444;
  --jc-danger-soft: rgba(239, 68, 68, 0.12);
  --jc-info: #38BDF8;
  --jc-info-soft: rgba(56, 189, 248, 0.12);

  /* Existing Julang token aliases. */
  --jl-bg: var(--jc-bg-main);
  --jl-bg-soft: var(--jc-bg-layout);
  --jl-surface: var(--jc-card-bg);
  --jl-surface-2: var(--jc-card-bg-soft);
  --jl-border: var(--jc-border-soft);
  --jl-gold: var(--jc-gold);
  --jl-gold-hover: var(--jc-gold-hover);
  --jl-gold-soft: var(--jc-gold-soft);
  --jl-gold-border: var(--jc-gold-border);
  --jl-text: var(--jc-text-title);
  --jl-text-body: var(--jc-text-main);
  --jl-text-secondary: var(--jc-text-secondary);
  --jl-text-muted: var(--jc-text-muted);
  --jl-success: var(--jc-success);
  --jl-danger: var(--jc-danger);
  --jl-warning: var(--jc-warning);
  --jl-info: var(--jc-info);
  --jl-shell-max: 1280px;
}

html body.julang-user-layout,
html body.julang-auth-layout,
html body.julang-node-detail,
html body.julang-payment-qrcode {
  background:
    radial-gradient(circle at top left, rgba(214, 168, 79, 0.08), transparent 320px),
    linear-gradient(180deg, var(--jc-bg-main) 0%, var(--jc-bg-layout) 100%) !important;
  color: var(--jc-text-main);
  font-family: "Segoe UI", Arial, "Microsoft YaHei", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html body.julang-user-layout a,
html body.julang-auth-layout a,
html body.julang-node-detail a,
html body.julang-payment-qrcode a {
  color: var(--jc-gold-hover);
}

html body.julang-user-layout a:hover,
html body.julang-user-layout a:focus,
html body.julang-auth-layout a:hover,
html body.julang-auth-layout a:focus,
html body.julang-node-detail a:hover,
html body.julang-node-detail a:focus,
html body.julang-payment-qrcode a:hover,
html body.julang-payment-qrcode a:focus {
  color: var(--jc-gold);
  text-decoration: none;
}

html body.julang-user-layout h1,
html body.julang-user-layout h2,
html body.julang-user-layout h3,
html body.julang-user-layout h4,
html body.julang-user-layout h5,
html body.julang-user-layout h6,
html body.julang-auth-layout h1,
html body.julang-auth-layout h2,
html body.julang-auth-layout h3,
html body.julang-auth-layout h4,
html body.julang-auth-layout h5,
html body.julang-auth-layout h6,
html body.julang-node-detail h1,
html body.julang-node-detail h2,
html body.julang-node-detail h3,
html body.julang-node-detail h4,
html body.julang-node-detail h5,
html body.julang-node-detail h6,
html body.julang-payment-qrcode h1,
html body.julang-payment-qrcode h2,
html body.julang-payment-qrcode h3,
html body.julang-payment-qrcode h4,
html body.julang-payment-qrcode h5,
html body.julang-payment-qrcode h6 {
  color: var(--jc-text-title);
  font-weight: 800;
  letter-spacing: 0;
}

html body.julang-user-layout .content-header-title,
html body.julang-user-layout .card-title,
html body.julang-auth-layout .card-title,
html body.julang-node-detail .card-title,
html body.julang-payment-qrcode .card-title {
  color: var(--jc-text-title) !important;
}

html body.julang-user-layout p,
html body.julang-user-layout .card-text,
html body.julang-auth-layout p,
html body.julang-auth-layout .card-text,
html body.julang-node-detail p,
html body.julang-payment-qrcode p {
  color: var(--jc-text-main);
}

html body.julang-user-layout .text-muted,
html body.julang-user-layout small,
html body.julang-auth-layout .text-muted,
html body.julang-auth-layout small,
html body.julang-node-detail .text-muted,
html body.julang-node-detail small,
html body.julang-payment-qrcode .text-muted,
html body.julang-payment-qrcode small {
  color: var(--jc-text-muted) !important;
}

html body.julang-user-layout .text-primary,
html body.julang-user-layout a.text-primary,
html body.julang-auth-layout .text-primary,
html body.julang-auth-layout a.text-primary,
html body.julang-node-detail .text-primary,
html body.julang-node-detail a.text-primary,
html body.julang-payment-qrcode .text-primary,
html body.julang-payment-qrcode a.text-primary {
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .text-success,
html body.julang-auth-layout .text-success,
html body.julang-node-detail .text-success,
html body.julang-payment-qrcode .text-success {
  color: var(--jc-success) !important;
}

html body.julang-user-layout .text-warning,
html body.julang-auth-layout .text-warning,
html body.julang-node-detail .text-warning,
html body.julang-payment-qrcode .text-warning {
  color: var(--jc-warning) !important;
}

html body.julang-user-layout .text-danger,
html body.julang-auth-layout .text-danger,
html body.julang-node-detail .text-danger,
html body.julang-payment-qrcode .text-danger {
  color: var(--jc-danger) !important;
}

html body.julang-user-layout .text-info,
html body.julang-auth-layout .text-info,
html body.julang-node-detail .text-info,
html body.julang-payment-qrcode .text-info {
  color: var(--jc-info) !important;
}

html body.julang-user-layout .content .content-wrapper,
html body.julang-user-layout .julang-topbar-shell,
html body.julang-user-layout .julang-footer-inner {
  max-width: var(--jl-shell-max);
}

html body.julang-user-layout .card,
html body.julang-user-layout .jl-card,
html body.julang-auth-layout .card,
html body.julang-node-detail .card,
html body.julang-payment-qrcode .card {
  background: linear-gradient(180deg, var(--jc-card-bg) 0%, #0F1520 100%) !important;
  border: 1px solid var(--jc-border-soft) !important;
  border-radius: 14px !important;
  color: var(--jc-text-main);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28) !important;
}

html body.julang-user-layout a.jl-card:hover,
html body.julang-user-layout button.jl-card:hover,
html body.julang-user-layout .jl-card[role="button"]:hover,
html body.julang-user-layout .jl-card.is-clickable:hover,
html body.julang-user-layout a.jl-card:focus,
html body.julang-user-layout button.jl-card:focus,
html body.julang-user-layout .jl-card[role="button"]:focus,
html body.julang-user-layout .jl-card.is-clickable:focus,
html body.julang-node-detail a.card:hover,
html body.julang-node-detail .card[role="button"]:hover {
  border-color: var(--jc-gold-border) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34) !important;
}

html body.julang-user-layout .card-header,
html body.julang-user-layout .card-footer,
html body.julang-auth-layout .card-header,
html body.julang-auth-layout .card-footer,
html body.julang-node-detail .card-header,
html body.julang-node-detail .card-footer,
html body.julang-payment-qrcode .card-header,
html body.julang-payment-qrcode .card-footer {
  background: var(--jc-card-header) !important;
  border-color: var(--jc-border-soft) !important;
}

html body.julang-user-layout .card-body,
html body.julang-user-layout .card-content,
html body.julang-auth-layout .card-body,
html body.julang-node-detail .card-body,
html body.julang-payment-qrcode .card-body {
  color: var(--jc-text-main);
}

html body.julang-user-layout .jl-user-hero,
html body.julang-user-layout .jl-shop-hero,
html body.julang-user-layout .jl-node-hero,
html body.julang-user-layout .jl-ticket-hero,
html body.julang-user-layout .jl-wallet-hero,
html body.julang-user-layout .jl-profile-hero,
html body.julang-user-layout .jl-faq-hero,
html body.julang-user-layout .jl-invite-hero,
html body.julang-user-layout .jl-detect-hero,
html body.julang-user-layout .jl-announcement-hero,
html body.julang-user-layout .jl-sublog-hero {
  background:
    radial-gradient(circle at left center, rgba(214, 168, 79, 0.16), transparent 360px),
    linear-gradient(135deg, #151B27 0%, #101620 55%, #0B1018 100%) !important;
  border: 1px solid var(--jc-gold-border) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34) !important;
}

html body.julang-user-layout .jl-user-hero:before,
html body.julang-user-layout .jl-node-hero:before {
  background:
    linear-gradient(135deg, rgba(255, 224, 150, 0.08), rgba(255, 255, 255, 0) 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 52%) !important;
}

html body.julang-user-layout .jl-hero-side,
html body.julang-user-layout .jl-shop-summary,
html body.julang-user-layout .jl-node-summary,
html body.julang-user-layout .jl-dashboard-card,
html body.julang-user-layout .jl-shop-plan-card,
html body.julang-user-layout .jl-ticket-action-card,
html body.julang-user-layout .jl-wallet-record-card,
html body.julang-user-layout .jl-profile-data-card,
html body.julang-user-layout .jl-sublog-record-card {
  background: linear-gradient(180deg, rgba(23, 30, 43, 0.88), rgba(15, 21, 32, 0.96)) !important;
  border-color: var(--jc-border-soft) !important;
  border-radius: 14px !important;
}

html body.julang-user-layout .jl-hero-status-item,
html body.julang-user-layout .jl-shop-summary-item,
html body.julang-user-layout .jl-node-summary-item,
html body.julang-user-layout .jl-shop-feature-list li,
html body.julang-user-layout .jl-node-card,
html body.julang-user-layout .jl-sub-action,
html body.julang-user-layout .cool-item {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: var(--jc-border-soft) !important;
  border-radius: 12px !important;
  color: var(--jc-text-main);
}

html body.julang-user-layout a.jl-node-summary-item:hover,
html body.julang-user-layout .jl-shop-plan-card:hover,
html body.julang-user-layout .jl-ticket-action-card:hover,
html body.julang-user-layout a.cool-item:hover,
html body.julang-user-layout .cool-item[role="button"]:hover {
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: var(--jc-gold-border) !important;
}

html body.julang-user-layout .julang-topbar-shell {
  background: rgba(14, 19, 28, 0.94) !important;
  border-color: var(--jc-border-soft) !important;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.30) !important;
}

html body.julang-user-layout .julang-topbar-control,
html body.julang-user-layout .julang-profile-link {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: var(--jc-border-soft) !important;
  color: var(--jc-text-secondary) !important;
}

html body.julang-user-layout .julang-topbar-control:hover,
html body.julang-user-layout .julang-topbar-control:focus,
html body.julang-user-layout .julang-profile-link:hover,
html body.julang-user-layout .julang-profile-link:focus {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .julang-profile-name {
  color: var(--jc-text-title) !important;
}

html body.julang-user-layout .julang-topbar-shell {
  gap: var(--jlc-space-4);
}

html body.julang-user-layout .julang-topbar-context {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1.2;
}

html body.julang-user-layout .julang-topbar-context span {
  overflow: hidden;
  color: var(--jc-text-title);
  font-size: 14px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html body.julang-user-layout .julang-topbar-context small {
  overflow: hidden;
  color: var(--jc-text-muted);
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html body.julang-user-layout .julang-topbar-menu {
  gap: var(--jlc-space-2);
}

html body.julang-user-layout .julang-mobile-menu-label {
  display: none;
  color: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

html body.julang-user-layout .julang-user-menu {
  display: inline-flex;
  position: relative;
  min-width: 0;
}

html body.julang-user-layout .julang-user-menu-toggle {
  gap: var(--jlc-space-2);
}

html body.julang-user-layout .julang-user-menu-toggle i {
  color: var(--jc-text-muted);
  font-size: 16px;
}

html body.julang-user-layout .julang-user-menu-dropdown {
  min-width: 164px;
  margin-top: var(--jlc-space-2);
  padding: var(--jlc-space-2);
  border: 1px solid var(--jc-border);
  border-radius: var(--jlc-radius-md);
  background: var(--jc-card-bg);
  box-shadow: var(--jlc-shadow-modal);
}

html body.julang-user-layout .julang-user-menu-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--jlc-space-2);
  min-height: 38px;
  padding: .56rem .68rem;
  border-radius: var(--jlc-radius-sm);
  color: var(--jc-text-main);
  font-size: 13px;
  font-weight: 750;
}

html body.julang-user-layout .julang-user-menu-dropdown .dropdown-item:hover,
html body.julang-user-layout .julang-user-menu-dropdown .dropdown-item:focus {
  background: var(--jc-card-bg-hover);
  color: var(--jc-text-title);
}

html body.julang-user-layout .julang-user-menu-dropdown .dropdown-divider {
  border-top-color: var(--jc-border-soft);
}

html body.julang-user-layout .main-menu,
html body.julang-user-layout .main-menu.menu-light,
html body.julang-user-layout .main-menu.menu-dark,
html body.julang-user-layout .main-menu .navbar-header,
html body.julang-user-layout .main-menu.menu-light .navigation,
html body.julang-user-layout .main-menu.menu-dark .navigation,
html body.julang-user-layout .main-menu.menu-light .navigation > li > ul,
html body.julang-user-layout .main-menu.menu-dark .navigation > li > ul {
  background: var(--jc-bg-sidebar) !important;
}

html body.julang-user-layout .main-menu {
  border-right: 1px solid var(--jc-border-soft) !important;
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.24) !important;
}

html body.julang-user-layout .julang-sidebar .navbar-header {
  border-bottom-color: var(--jc-border-soft) !important;
}

html body.julang-user-layout .julang-sidebar .navbar-brand .brand-text,
html body.julang-user-layout .main-menu .navbar-header .navbar-brand .brand-text {
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .main-menu .navigation .navigation-header,
html body.julang-user-layout .julang-sidebar .navigation .navigation-header {
  color: var(--jc-text-muted) !important;
}

html body.julang-user-layout .main-menu .navigation li a,
html body.julang-user-layout .julang-sidebar .navigation li a {
  color: var(--jc-text-secondary) !important;
}

html body.julang-user-layout .main-menu .navigation li a i,
html body.julang-user-layout .julang-sidebar .navigation li a i,
html body.julang-user-layout .julang-sidebar .nav-toggle .toggle-icon {
  color: var(--jc-text-muted) !important;
}

html body.julang-user-layout .main-menu .navigation li a:hover,
html body.julang-user-layout .julang-sidebar .navigation li a:hover {
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--jc-text-title) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html body.julang-user-layout .julang-sidebar .navigation > li.active > a,
html body.julang-user-layout .julang-sidebar .navigation > li.sidebar-group-active > a,
html body.julang-user-layout .main-menu .navigation > li.active > a,
html body.julang-user-layout .main-menu .navigation > li.sidebar-group-active > a {
  background: var(--jc-gold-soft) !important;
  border: 1px solid var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
  box-shadow: none !important;
}

html body.julang-user-layout .julang-sidebar .navigation > li.active > a i,
html body.julang-user-layout .julang-sidebar .navigation > li.active > a .menu-title,
html body.julang-user-layout .julang-sidebar .navigation > li.sidebar-group-active > a i,
html body.julang-user-layout .julang-sidebar .navigation > li.sidebar-group-active > a .menu-title {
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .julang-sidebar .navigation > li.active > a:before,
html body.julang-user-layout .julang-sidebar .navigation > li.sidebar-group-active > a:before {
  background: var(--jc-gold) !important;
}

html body.julang-user-layout .julang-sidebar .navigation hr {
  border-color: var(--jc-border-soft) !important;
}

html body.julang-user-layout .julang-notification-menu,
html body.julang-user-layout .dropdown-menu,
html body.julang-auth-layout .dropdown-menu,
html body.julang-node-detail .dropdown-menu {
  background: var(--jc-card-bg) !important;
  border: 1px solid var(--jc-border-soft) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35) !important;
  color: var(--jc-text-main);
}

html body.julang-user-layout .dropdown-item,
html body.julang-auth-layout .dropdown-item,
html body.julang-node-detail .dropdown-item {
  color: var(--jc-text-secondary) !important;
}

html body.julang-user-layout .dropdown-item:hover,
html body.julang-user-layout .dropdown-item:focus,
html body.julang-auth-layout .dropdown-item:hover,
html body.julang-auth-layout .dropdown-item:focus,
html body.julang-node-detail .dropdown-item:hover,
html body.julang-node-detail .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.055) !important;
  color: var(--jc-text-title) !important;
}

html body.julang-user-layout .dropdown-divider,
html body.julang-auth-layout .dropdown-divider,
html body.julang-node-detail .dropdown-divider {
  border-color: var(--jc-border-soft) !important;
}

html body.julang-user-layout .btn,
html body.julang-auth-layout .btn,
html body.julang-node-detail .btn,
html body.julang-payment-qrcode .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  padding: .62rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: normal;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

html body.julang-user-layout .btn i,
html body.julang-user-layout .btn svg,
html body.julang-auth-layout .btn i,
html body.julang-auth-layout .btn svg,
html body.julang-node-detail .btn i,
html body.julang-node-detail .btn svg,
html body.julang-payment-qrcode .btn i,
html body.julang-payment-qrcode .btn svg {
  flex: 0 0 auto;
  width: 1.15rem;
  min-width: 1.15rem;
  text-align: center;
}

html body.julang-user-layout .btn > span,
html body.julang-auth-layout .btn > span,
html body.julang-node-detail .btn > span,
html body.julang-payment-qrcode .btn > span {
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  word-break: keep-all;
}

html body.julang-user-layout .btn-primary,
html body.julang-user-layout .btn-jl-primary,
html body.julang-user-layout .jl-checkin-btn,
html body.julang-auth-layout .btn-primary,
html body.julang-node-detail .btn-primary,
html body.julang-payment-qrcode .btn-primary {
  background: linear-gradient(135deg, var(--jc-gold) 0%, var(--jc-gold-hover) 100%) !important;
  border: 1px solid var(--jc-gold) !important;
  color: #17110A !important;
  box-shadow: 0 12px 28px rgba(214, 168, 79, 0.18) !important;
}

html body.julang-user-layout .btn-primary:hover,
html body.julang-user-layout .btn-primary:focus,
html body.julang-user-layout .btn-jl-primary:hover,
html body.julang-user-layout .btn-jl-primary:focus,
html body.julang-user-layout .jl-checkin-btn:hover,
html body.julang-user-layout .jl-checkin-btn:focus,
html body.julang-auth-layout .btn-primary:hover,
html body.julang-auth-layout .btn-primary:focus,
html body.julang-node-detail .btn-primary:hover,
html body.julang-node-detail .btn-primary:focus,
html body.julang-payment-qrcode .btn-primary:hover,
html body.julang-payment-qrcode .btn-primary:focus {
  background: linear-gradient(135deg, var(--jc-gold-hover) 0%, var(--jc-gold) 100%) !important;
  border-color: var(--jc-gold-hover) !important;
  color: #17110A !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(214, 168, 79, 0.24) !important;
}

html body.julang-user-layout .btn-jl-primary,
html body.julang-user-layout .btn.btn-jl-primary,
html body.julang-user-layout .jl-checkin-btn {
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
  box-shadow: none !important;
}

html body.julang-user-layout .btn-jl-primary:hover,
html body.julang-user-layout .btn-jl-primary:focus,
html body.julang-user-layout .btn.btn-jl-primary:hover,
html body.julang-user-layout .btn.btn-jl-primary:focus,
html body.julang-user-layout .jl-checkin-btn:hover,
html body.julang-user-layout .jl-checkin-btn:focus {
  background: rgba(214, 168, 79, 0.14) !important;
  border-color: var(--jc-gold-hover) !important;
  color: var(--jc-gold-hover) !important;
  box-shadow: 0 0 0 .12rem rgba(214, 168, 79, 0.12) !important;
}

html body.julang-user-layout .btn-secondary,
html body.julang-user-layout .btn-light,
html body.julang-user-layout .btn-jl-secondary,
html body.julang-user-layout .btn-soft,
html body.julang-auth-layout .btn-secondary,
html body.julang-auth-layout .btn-light,
html body.julang-node-detail .btn-secondary,
html body.julang-node-detail .btn-light,
html body.julang-payment-qrcode .btn-secondary,
html body.julang-payment-qrcode .btn-light {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--jc-border) !important;
  color: var(--jc-text-main) !important;
  box-shadow: none !important;
}

html body.julang-user-layout .btn-secondary:hover,
html body.julang-user-layout .btn-secondary:focus,
html body.julang-user-layout .btn-light:hover,
html body.julang-user-layout .btn-light:focus,
html body.julang-user-layout .btn-jl-secondary:hover,
html body.julang-user-layout .btn-jl-secondary:focus,
html body.julang-user-layout .btn-soft:hover,
html body.julang-user-layout .btn-soft:focus,
html body.julang-auth-layout .btn-secondary:hover,
html body.julang-auth-layout .btn-secondary:focus,
html body.julang-auth-layout .btn-light:hover,
html body.julang-auth-layout .btn-light:focus,
html body.julang-node-detail .btn-secondary:hover,
html body.julang-node-detail .btn-secondary:focus,
html body.julang-node-detail .btn-light:hover,
html body.julang-node-detail .btn-light:focus,
html body.julang-payment-qrcode .btn-secondary:hover,
html body.julang-payment-qrcode .btn-secondary:focus,
html body.julang-payment-qrcode .btn-light:hover,
html body.julang-payment-qrcode .btn-light:focus {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: var(--jc-border-strong) !important;
  color: var(--jc-text-title) !important;
  transform: translateY(-1px);
}

html body.julang-user-layout .btn-info,
html body.julang-auth-layout .btn-info,
html body.julang-node-detail .btn-info,
html body.julang-payment-qrcode .btn-info {
  background: var(--jc-info-soft) !important;
  border: 1px solid rgba(56, 189, 248, 0.34) !important;
  color: #8DDCFF !important;
  box-shadow: none !important;
}

html body.julang-user-layout .btn-info:hover,
html body.julang-user-layout .btn-info:focus,
html body.julang-auth-layout .btn-info:hover,
html body.julang-auth-layout .btn-info:focus,
html body.julang-node-detail .btn-info:hover,
html body.julang-node-detail .btn-info:focus,
html body.julang-payment-qrcode .btn-info:hover,
html body.julang-payment-qrcode .btn-info:focus {
  background: rgba(56, 189, 248, 0.18) !important;
  border-color: rgba(56, 189, 248, 0.48) !important;
  color: #C7F0FF !important;
}

html body.julang-user-layout .btn-success,
html body.julang-auth-layout .btn-success,
html body.julang-node-detail .btn-success,
html body.julang-payment-qrcode .btn-success {
  background: var(--jc-success-soft) !important;
  border: 1px solid rgba(34, 197, 94, 0.38) !important;
  color: #86EFAC !important;
  box-shadow: none !important;
}

html body.julang-user-layout .btn-warning,
html body.julang-auth-layout .btn-warning,
html body.julang-node-detail .btn-warning,
html body.julang-payment-qrcode .btn-warning {
  background: var(--jc-warning-soft) !important;
  border: 1px solid rgba(245, 158, 11, 0.40) !important;
  color: #FCD34D !important;
  box-shadow: none !important;
}

html body.julang-user-layout .btn-danger,
html body.julang-auth-layout .btn-danger,
html body.julang-node-detail .btn-danger,
html body.julang-payment-qrcode .btn-danger {
  background: var(--jc-danger-soft) !important;
  border: 1px solid rgba(239, 68, 68, 0.42) !important;
  color: #FCA5A5 !important;
  box-shadow: none !important;
}

html body.julang-user-layout .btn-success:hover,
html body.julang-user-layout .btn-success:focus,
html body.julang-auth-layout .btn-success:hover,
html body.julang-auth-layout .btn-success:focus,
html body.julang-node-detail .btn-success:hover,
html body.julang-node-detail .btn-success:focus {
  background: rgba(34, 197, 94, 0.18) !important;
  color: #BBF7D0 !important;
}

html body.julang-user-layout .btn-warning:hover,
html body.julang-user-layout .btn-warning:focus,
html body.julang-auth-layout .btn-warning:hover,
html body.julang-auth-layout .btn-warning:focus,
html body.julang-node-detail .btn-warning:hover,
html body.julang-node-detail .btn-warning:focus {
  background: rgba(245, 158, 11, 0.18) !important;
  color: #FDE68A !important;
}

html body.julang-user-layout .btn-danger:hover,
html body.julang-user-layout .btn-danger:focus,
html body.julang-auth-layout .btn-danger:hover,
html body.julang-auth-layout .btn-danger:focus,
html body.julang-node-detail .btn-danger:hover,
html body.julang-node-detail .btn-danger:focus {
  background: rgba(239, 68, 68, 0.18) !important;
  color: #FECACA !important;
}

html body.julang-user-layout .bg-primary,
html body.julang-auth-layout .bg-primary,
html body.julang-node-detail .bg-primary,
html body.julang-payment-qrcode .bg-primary {
  background: var(--jc-gold-soft) !important;
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .bg-info,
html body.julang-auth-layout .bg-info,
html body.julang-node-detail .bg-info,
html body.julang-payment-qrcode .bg-info {
  background: var(--jc-info-soft) !important;
  color: #8DDCFF !important;
}

html body.julang-user-layout .bg-success,
html body.julang-auth-layout .bg-success,
html body.julang-node-detail .bg-success,
html body.julang-payment-qrcode .bg-success {
  background: var(--jc-success-soft) !important;
  color: #86EFAC !important;
}

html body.julang-user-layout .bg-warning,
html body.julang-auth-layout .bg-warning,
html body.julang-node-detail .bg-warning,
html body.julang-payment-qrcode .bg-warning {
  background: var(--jc-warning-soft) !important;
  color: #FCD34D !important;
}

html body.julang-user-layout .bg-danger,
html body.julang-auth-layout .bg-danger,
html body.julang-node-detail .bg-danger,
html body.julang-payment-qrcode .bg-danger {
  background: var(--jc-danger-soft) !important;
  color: #FCA5A5 !important;
}

html body.julang-user-layout .badge,
html body.julang-auth-layout .badge,
html body.julang-node-detail .badge,
html body.julang-payment-qrcode .badge {
  border-radius: 999px;
  border: 1px solid var(--jc-border);
  background: rgba(255, 255, 255, 0.055);
  color: var(--jc-text-secondary);
  font-weight: 800;
}

html body.julang-user-layout .badge-primary,
html body.julang-auth-layout .badge-primary,
html body.julang-node-detail .badge-primary {
  border-color: var(--jc-gold-border) !important;
  background: var(--jc-gold-soft) !important;
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .badge-info,
html body.julang-auth-layout .badge-info,
html body.julang-node-detail .badge-info {
  border-color: rgba(56, 189, 248, 0.34) !important;
  background: var(--jc-info-soft) !important;
  color: #8DDCFF !important;
}

html body.julang-user-layout .badge-success,
html body.julang-auth-layout .badge-success,
html body.julang-node-detail .badge-success {
  border-color: rgba(34, 197, 94, 0.38) !important;
  background: var(--jc-success-soft) !important;
  color: #86EFAC !important;
}

html body.julang-user-layout .badge-warning,
html body.julang-auth-layout .badge-warning,
html body.julang-node-detail .badge-warning {
  border-color: rgba(245, 158, 11, 0.40) !important;
  background: var(--jc-warning-soft) !important;
  color: #FCD34D !important;
}

html body.julang-user-layout .badge-danger,
html body.julang-auth-layout .badge-danger,
html body.julang-node-detail .badge-danger {
  border-color: rgba(239, 68, 68, 0.42) !important;
  background: var(--jc-danger-soft) !important;
  color: #FCA5A5 !important;
}

html body.julang-user-layout .table,
html body.julang-auth-layout .table,
html body.julang-node-detail .table,
html body.julang-payment-qrcode .table {
  color: var(--jc-text-main);
}

html body.julang-user-layout .table thead th,
html body.julang-auth-layout .table thead th,
html body.julang-node-detail .table thead th,
html body.julang-payment-qrcode .table thead th {
  background: var(--jc-card-header) !important;
  color: var(--jc-text-secondary) !important;
  border-bottom: 1px solid var(--jc-border) !important;
  font-weight: 800;
}

html body.julang-user-layout .table tbody td,
html body.julang-auth-layout .table tbody td,
html body.julang-node-detail .table tbody td,
html body.julang-payment-qrcode .table tbody td,
html body.julang-user-layout .table th,
html body.julang-user-layout .table td {
  color: var(--jc-text-main) !important;
  border-color: var(--jc-border-soft) !important;
  padding: 12px 16px;
  vertical-align: middle;
}

html body.julang-user-layout .table-hover tbody tr:hover,
html body.julang-user-layout .table tbody tr:hover,
html body.julang-auth-layout .table-hover tbody tr:hover,
html body.julang-auth-layout .table tbody tr:hover,
html body.julang-node-detail .table-hover tbody tr:hover,
html body.julang-node-detail .table tbody tr:hover,
html body.julang-payment-qrcode .table-hover tbody tr:hover,
html body.julang-payment-qrcode .table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035) !important;
}

html body.julang-user-layout .jl-wallet-table tbody tr:hover td,
html body.julang-user-layout .jl-profile-table tbody tr:hover td,
html body.julang-user-layout .jl-ticket-table tbody tr:hover td,
html body.julang-user-layout .jl-sublog-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: var(--jc-border) !important;
}

html body.julang-user-layout .form-control,
html body.julang-user-layout .custom-select,
html body.julang-user-layout select.form-control,
html body.julang-user-layout textarea.form-control,
html body.julang-auth-layout .form-control,
html body.julang-auth-layout .custom-select,
html body.julang-auth-layout select.form-control,
html body.julang-auth-layout textarea.form-control,
html body.julang-node-detail .form-control,
html body.julang-node-detail .custom-select,
html body.julang-node-detail select.form-control,
html body.julang-node-detail textarea.form-control,
html body.julang-payment-qrcode .form-control,
html body.julang-payment-qrcode .custom-select {
  background: #0D131D !important;
  border: 1px solid var(--jc-border) !important;
  color: var(--jc-text-main) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

html body.julang-user-layout .form-control:focus,
html body.julang-user-layout .custom-select:focus,
html body.julang-user-layout select.form-control:focus,
html body.julang-user-layout textarea.form-control:focus,
html body.julang-auth-layout .form-control:focus,
html body.julang-auth-layout .custom-select:focus,
html body.julang-auth-layout select.form-control:focus,
html body.julang-auth-layout textarea.form-control:focus,
html body.julang-node-detail .form-control:focus,
html body.julang-node-detail .custom-select:focus,
html body.julang-node-detail select.form-control:focus,
html body.julang-node-detail textarea.form-control:focus,
html body.julang-payment-qrcode .form-control:focus,
html body.julang-payment-qrcode .custom-select:focus {
  background: #0D131D !important;
  border-color: var(--jc-gold) !important;
  color: var(--jc-text-title) !important;
  box-shadow: 0 0 0 4px var(--jc-gold-soft) !important;
}

html body.julang-user-layout .form-control::placeholder,
html body.julang-user-layout textarea::placeholder,
html body.julang-auth-layout .form-control::placeholder,
html body.julang-auth-layout textarea::placeholder,
html body.julang-node-detail .form-control::placeholder,
html body.julang-node-detail textarea::placeholder {
  color: var(--jc-text-muted) !important;
}

html body.julang-user-layout label,
html body.julang-auth-layout label,
html body.julang-node-detail label,
html body.julang-payment-qrcode label {
  color: var(--jc-text-secondary);
  font-weight: 700;
}

html body.julang-user-layout .input-group-text,
html body.julang-auth-layout .input-group-text,
html body.julang-node-detail .input-group-text,
html body.julang-payment-qrcode .input-group-text {
  background: #0D131D !important;
  border-color: var(--jc-border) !important;
  color: var(--jc-text-secondary) !important;
}

html body.julang-user-layout .custom-control-label:before,
html body.julang-auth-layout .custom-control-label:before {
  border-color: var(--jc-border) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

html body.julang-user-layout .custom-control-input:checked ~ .custom-control-label:before,
html body.julang-auth-layout .custom-control-input:checked ~ .custom-control-label:before {
  border-color: var(--jc-gold) !important;
  background: var(--jc-gold) !important;
}

html body.julang-user-layout .modal-content,
html body.julang-auth-layout .modal-content,
html body.julang-node-detail .modal-content,
html body.julang-payment-qrcode .modal-content {
  background: linear-gradient(180deg, var(--jc-card-bg) 0%, #0F1520 100%) !important;
  border: 1px solid var(--jc-border) !important;
  border-radius: 16px !important;
  color: var(--jc-text-main) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45) !important;
}

html body.julang-user-layout .modal-header,
html body.julang-auth-layout .modal-header,
html body.julang-node-detail .modal-header,
html body.julang-payment-qrcode .modal-header {
  background: var(--jc-card-header) !important;
  border-bottom: 1px solid var(--jc-border-soft) !important;
  color: var(--jc-text-title) !important;
}

html body.julang-user-layout .modal-footer,
html body.julang-auth-layout .modal-footer,
html body.julang-node-detail .modal-footer,
html body.julang-payment-qrcode .modal-footer {
  border-top: 1px solid var(--jc-border-soft) !important;
}

html body.julang-user-layout .modal-title,
html body.julang-auth-layout .modal-title,
html body.julang-node-detail .modal-title,
html body.julang-payment-qrcode .modal-title {
  color: var(--jc-text-title) !important;
  font-weight: 800;
}

html body.julang-user-layout .modal .close,
html body.julang-auth-layout .modal .close,
html body.julang-node-detail .modal .close,
html body.julang-payment-qrcode .modal .close {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--jc-border) !important;
  color: var(--jc-text-title) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html body.julang-user-layout .modal .close:hover,
html body.julang-auth-layout .modal .close:hover,
html body.julang-node-detail .modal .close:hover,
html body.julang-payment-qrcode .modal .close:hover {
  background: var(--jc-gold-soft) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .modal-backdrop.show,
html body.julang-auth-layout .modal-backdrop.show,
html body.julang-node-detail .modal-backdrop.show,
html body.julang-payment-qrcode .modal-backdrop.show {
  opacity: .72;
}

html body.julang-user-layout .swal2-popup,
html body.julang-auth-layout .swal2-popup,
html body.julang-node-detail .swal2-popup,
html body.julang-payment-qrcode .swal2-popup {
  background: linear-gradient(180deg, var(--jc-card-bg) 0%, #0F1520 100%) !important;
  border: 1px solid var(--jc-border) !important;
  border-radius: 12px !important;
  color: var(--jc-text-main) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45) !important;
}

html body.julang-user-layout .swal2-title,
html body.julang-auth-layout .swal2-title,
html body.julang-node-detail .swal2-title,
html body.julang-payment-qrcode .swal2-title {
  color: var(--jc-text-title) !important;
}

html body.julang-user-layout .swal2-content,
html body.julang-user-layout #swal2-content,
html body.julang-auth-layout .swal2-content,
html body.julang-auth-layout #swal2-content,
html body.julang-node-detail .swal2-content,
html body.julang-node-detail #swal2-content,
html body.julang-payment-qrcode .swal2-content,
html body.julang-payment-qrcode #swal2-content {
  color: var(--jc-text-main) !important;
}

html body.julang-user-layout .swal2-styled.swal2-confirm,
html body.julang-auth-layout .swal2-styled.swal2-confirm,
html body.julang-node-detail .swal2-styled.swal2-confirm,
html body.julang-payment-qrcode .swal2-styled.swal2-confirm {
  background: linear-gradient(135deg, var(--jc-gold) 0%, var(--jc-gold-hover) 100%) !important;
  color: #17110A !important;
  border: 1px solid var(--jc-gold) !important;
  box-shadow: none !important;
}

html body.julang-user-layout .swal2-styled.swal2-cancel,
html body.julang-auth-layout .swal2-styled.swal2-cancel,
html body.julang-node-detail .swal2-styled.swal2-cancel,
html body.julang-payment-qrcode .swal2-styled.swal2-cancel {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--jc-text-main) !important;
  border: 1px solid var(--jc-border) !important;
}

html body.julang-user-layout .alert,
html body.julang-auth-layout .alert,
html body.julang-node-detail .alert,
html body.julang-payment-qrcode .alert {
  border-radius: 10px;
  border: 1px solid var(--jc-border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--jc-text-main);
}

html body.julang-user-layout .alert-primary,
html body.julang-auth-layout .alert-primary,
html body.julang-node-detail .alert-primary {
  background: var(--jc-gold-soft) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .alert-info,
html body.julang-auth-layout .alert-info,
html body.julang-node-detail .alert-info {
  background: var(--jc-info-soft) !important;
  border-color: rgba(56, 189, 248, 0.34) !important;
  color: #8DDCFF !important;
}

html body.julang-user-layout .alert-success,
html body.julang-auth-layout .alert-success,
html body.julang-node-detail .alert-success {
  background: var(--jc-success-soft) !important;
  border-color: rgba(34, 197, 94, 0.38) !important;
  color: #86EFAC !important;
}

html body.julang-user-layout .alert-warning,
html body.julang-auth-layout .alert-warning,
html body.julang-node-detail .alert-warning {
  background: var(--jc-warning-soft) !important;
  border-color: rgba(245, 158, 11, 0.40) !important;
  color: #FCD34D !important;
}

html body.julang-user-layout .alert-danger,
html body.julang-auth-layout .alert-danger,
html body.julang-node-detail .alert-danger {
  background: var(--jc-danger-soft) !important;
  border-color: rgba(239, 68, 68, 0.42) !important;
  color: #FCA5A5 !important;
}

html body.julang-user-layout .nav-pills .nav-link,
html body.julang-user-layout .nav-tabs .nav-link,
html body.julang-node-detail .nav-pills .nav-link,
html body.julang-node-detail .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--jc-text-secondary);
}

html body.julang-user-layout .nav-pills .nav-link:hover,
html body.julang-user-layout .nav-tabs .nav-link:hover,
html body.julang-node-detail .nav-pills .nav-link:hover,
html body.julang-node-detail .nav-tabs .nav-link:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--jc-border) !important;
  color: var(--jc-text-title) !important;
}

html body.julang-user-layout .nav-pills .nav-link.active,
html body.julang-user-layout .nav-tabs .nav-link.active,
html body.julang-node-detail .nav-pills .nav-link.active,
html body.julang-node-detail .nav-tabs .nav-link.active {
  background: var(--jc-gold-soft) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
  box-shadow: none !important;
}

html body.julang-user-layout .progress {
  background: rgba(255, 255, 255, 0.08) !important;
}

html body.julang-user-layout .progress-bar:not(.bg-success):not(.bg-warning):not(.bg-danger):not(.bg-info) {
  background: linear-gradient(90deg, var(--jc-gold-deep), var(--jc-gold-hover)) !important;
}

html body.julang-user-layout .jl-sub-btn,
html body.julang-user-layout .btn-ss,
html body.julang-user-layout .btn-ssr,
html body.julang-user-layout .btn-clash,
html body.julang-user-layout .btn-v2ray,
html body.julang-user-layout .btn-anxray,
html body.julang-user-layout .btn-trojan,
html body.julang-user-layout .btn-surge,
html body.julang-user-layout .btn-shadowrocket,
html body.julang-user-layout .btn-kitsunebi,
html body.julang-user-layout .btn-quantumult,
html body.julang-user-layout .btn-quantumultx,
html body.julang-user-layout .btn-surfboard {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px !important;
  padding: 0 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--jc-border) !important;
  border-radius: 12px !important;
  color: var(--jc-text-main) !important;
  box-shadow: none !important;
  text-align: left;
  white-space: normal !important;
}

html body.julang-user-layout .jl-sub-btn i,
html body.julang-user-layout .btn-ss i,
html body.julang-user-layout .btn-ssr i,
html body.julang-user-layout .btn-clash i,
html body.julang-user-layout .btn-v2ray i,
html body.julang-user-layout .btn-anxray i,
html body.julang-user-layout .btn-trojan i,
html body.julang-user-layout .btn-surge i,
html body.julang-user-layout .btn-shadowrocket i,
html body.julang-user-layout .btn-kitsunebi i,
html body.julang-user-layout .btn-quantumult i,
html body.julang-user-layout .btn-quantumultx i,
html body.julang-user-layout .btn-surfboard i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  width: 22px;
  min-width: 22px;
  height: 22px;
  color: var(--jc-text-secondary) !important;
  font-size: 18px;
  line-height: 1;
}

html body.julang-user-layout .jl-sub-btn .jl-sub-copy,
html body.julang-user-layout .jl-sub-btn > span {
  grid-column: 2;
  display: block;
  min-width: 0;
}

html body.julang-user-layout .jl-sub-btn .jl-sub-copy strong,
html body.julang-user-layout .jl-sub-btn > span strong {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: keep-all;
}

html body.julang-user-layout .jl-sub-btn.dropdown-toggle::after,
html body.julang-user-layout .btn-ssr.dropdown-toggle::after,
html body.julang-user-layout .btn-clash.dropdown-toggle::after,
html body.julang-user-layout .btn-surge.dropdown-toggle::after,
html body.julang-user-layout .btn-shadowrocket.dropdown-toggle::after,
html body.julang-user-layout .btn-quantumult.dropdown-toggle::after {
  grid-column: 3;
  justify-self: end;
  margin: 0;
}

html body.julang-user-layout .jl-sub-btn:hover,
html body.julang-user-layout .jl-sub-btn:focus,
html body.julang-user-layout .btn-ss:hover,
html body.julang-user-layout .btn-ssr:hover,
html body.julang-user-layout .btn-clash:hover,
html body.julang-user-layout .btn-v2ray:hover,
html body.julang-user-layout .btn-anxray:hover,
html body.julang-user-layout .btn-trojan:hover,
html body.julang-user-layout .btn-surge:hover,
html body.julang-user-layout .btn-shadowrocket:hover,
html body.julang-user-layout .btn-kitsunebi:hover,
html body.julang-user-layout .btn-quantumult:hover,
html body.julang-user-layout .btn-quantumultx:hover,
html body.julang-user-layout .btn-surfboard:hover {
  background: rgba(255, 255, 255, 0.065) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-text-title) !important;
  transform: translateY(-1px);
}

html body.julang-user-layout .jl-sub-btn:hover i,
html body.julang-user-layout .jl-sub-btn:focus i {
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .jl-shop-payment-options .nav-link {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: var(--jc-border) !important;
  color: var(--jc-text-secondary) !important;
  cursor: pointer;
  user-select: none;
}

html body.julang-user-layout .jl-shop-payment-options .cursor_onclick {
  cursor: pointer;
}

html body.julang-user-layout .jl-shop-payment-options .nav-alipay .nav-link i {
  color: #38BDF8 !important;
}

html body.julang-user-layout .jl-shop-payment-options .nav-wxpay .nav-link i {
  color: #22C55E !important;
}

html body.julang-user-layout .jl-shop-payment-options .nav-crypto .nav-link i {
  color: #F59E0B !important;
}

html body.julang-user-layout .jl-shop-payment-options .nav-alipay .nav-link.active,
html body.julang-user-layout .jl-shop-payment-options .nav-alipay .nav-link:hover {
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: rgba(56, 189, 248, 0.34) !important;
  color: #8DDCFF !important;
}

html body.julang-user-layout .jl-shop-payment-options .nav-wxpay .nav-link.active,
html body.julang-user-layout .jl-shop-payment-options .nav-wxpay .nav-link:hover {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.38) !important;
  color: #86EFAC !important;
}

html body.julang-user-layout .jl-shop-payment-options .nav-crypto .nav-link.active,
html body.julang-user-layout .jl-shop-payment-options .nav-crypto .nav-link:hover {
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(245, 158, 11, 0.40) !important;
  color: #FCD34D !important;
}

/* Width adaptation for the wider Julang user shell. */
html body.julang-user-layout .row > [class*="col-"] {
  min-width: 0;
}

html body.julang-user-layout .jl-card,
html body.julang-user-layout .card {
  min-width: 0;
}

html body.julang-user-layout .jl-card-actions,
html body.julang-user-layout .jl-client-actions,
html body.julang-user-layout .jl-shop-actions,
html body.julang-user-layout .jl-ticket-hero-actions,
html body.julang-user-layout .jl-invite-actions,
html body.julang-user-layout .jl-ticket-actions {
  align-items: center;
}

html body.julang-user-layout .jl-card-actions .btn,
html body.julang-user-layout .jl-client-actions .btn,
html body.julang-user-layout .jl-shop-actions .btn,
html body.julang-user-layout .jl-ticket-hero-actions .btn,
html body.julang-user-layout .jl-invite-actions .btn,
html body.julang-user-layout .jl-ticket-actions .btn {
  min-height: 42px;
}

html body.julang-user-layout .jl-shop-plan-grid,
html body.julang-user-layout .jl-ticket-action-grid,
html body.julang-user-layout .jl-faq-action-grid,
html body.julang-user-layout .jl-detect-action-grid,
html body.julang-user-layout .jl-sublog-action-grid,
html body.julang-user-layout .jl-profile-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

html body.julang-user-layout .jl-node-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

html body.julang-user-layout .jl-invite-grid,
html body.julang-user-layout .jl-invite-record-grid,
html body.julang-user-layout .jl-profile-data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

html body.julang-user-layout .jl-shop-summary-item,
html body.julang-user-layout .jl-profile-stat,
html body.julang-user-layout .jl-invite-stat {
  align-items: center;
  text-align: center;
}

html body.julang-user-layout .jl-shop-summary-item .jl-shop-icon,
html body.julang-user-layout .jl-profile-stat .jl-profile-summary-icon,
html body.julang-user-layout .jl-invite-stat .jl-invite-icon {
  margin-left: auto;
  margin-right: auto;
}

html body.julang-user-layout .jl-shop-summary-item strong,
html body.julang-user-layout .jl-shop-plan-head h3,
html body.julang-user-layout .jl-shop-feature-list strong,
html body.julang-user-layout .jl-shop-invite-main strong,
html body.julang-user-layout .jl-profile-identity strong,
html body.julang-user-layout .jl-profile-stat strong,
html body.julang-user-layout .jl-profile-action strong,
html body.julang-user-layout .jl-node-summary-item strong,
html body.julang-user-layout .jl-node-title strong,
html body.julang-user-layout .jl-node-metric strong,
html body.julang-user-layout .jl-ticket-status-item strong,
html body.julang-user-layout .jl-ticket-action-card strong,
html body.julang-user-layout .jl-faq-status strong,
html body.julang-user-layout .jl-faq-action strong,
html body.julang-user-layout .jl-faq-support strong,
html body.julang-user-layout .jl-detect-status strong,
html body.julang-user-layout .jl-detect-action strong,
html body.julang-user-layout .jl-sublog-status strong,
html body.julang-user-layout .jl-sublog-action strong,
html body.julang-user-layout .jl-invite-stat strong,
html body.julang-user-layout .jl-ann-index-item strong {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: normal;
  word-break: keep-all;
}

html body.julang-user-layout .jl-shop-invite-main em,
html body.julang-user-layout .jl-profile-action em,
html body.julang-user-layout .jl-ticket-action-card em,
html body.julang-user-layout .jl-faq-action em,
html body.julang-user-layout .jl-faq-support em,
html body.julang-user-layout .jl-detect-action em,
html body.julang-user-layout .jl-sublog-action em {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: normal;
}

html body.julang-user-layout .jl-ticket-title,
html body.julang-user-layout .jl-sublog-agent,
html body.julang-user-layout .jl-detect-regex {
  max-width: none;
  overflow-wrap: anywhere;
}

html body.julang-user-layout .jl-subscription-grid .jl-sub-btn {
  white-space: normal !important;
  min-height: 64px !important;
  height: auto !important;
  overflow: visible !important;
}

html body.julang-user-layout .jl-subscription-grid {
  grid-template-columns: repeat(auto-fit, minmax(214px, 1fr));
}

html body.julang-user-layout .jl-dashboard-card,
html body.julang-user-layout .jl-user-hero,
html body.julang-user-layout .jl-hero-side,
html body.julang-user-layout .jl-stat-card,
html body.julang-user-layout .jl-announcement-card,
html body.julang-user-layout .jl-announcement-summary,
html body.julang-user-layout .jl-notice-card,
html body.julang-user-layout .jl-domain-strip,
html body.julang-user-layout .jl-announcement-console,
html body.julang-user-layout .jl-rule-card,
html body.julang-user-layout .jl-route-item,
html body.julang-user-layout .jl-traffic-card,
html body.julang-user-layout .jl-client-row,
html body.julang-user-layout .jl-subscription-card,
html body.julang-user-layout .jl-sub-assist-item,
html body.julang-user-layout .jl-shop-hero,
html body.julang-user-layout .jl-shop-summary,
html body.julang-user-layout .jl-shop-summary-item,
html body.julang-user-layout .jl-shop-plan-card,
html body.julang-user-layout .jl-shop-redeem-card,
html body.julang-user-layout .jl-shop-invite-strip,
html body.julang-user-layout .jl-shop-order-total-card,
html body.julang-user-layout .jl-shop-order-item,
html body.julang-user-layout .jl-ticket-hero,
html body.julang-user-layout .jl-ticket-status-item,
html body.julang-user-layout .jl-ticket-action-card,
html body.julang-user-layout .jl-ticket-record-card,
html body.julang-user-layout .jl-ticket-empty,
html body.julang-user-layout .jl-faq-hero,
html body.julang-user-layout .jl-faq-status,
html body.julang-user-layout .jl-faq-action,
html body.julang-user-layout .jl-faq-panel,
html body.julang-user-layout .jl-faq-item,
html body.julang-user-layout .jl-faq-support,
html body.julang-user-layout .jl-detect-hero,
html body.julang-user-layout .jl-detect-status,
html body.julang-user-layout .jl-detect-action,
html body.julang-user-layout .jl-detect-record-card,
html body.julang-user-layout .jl-detect-regex,
html body.julang-user-layout .jl-sublog-hero,
html body.julang-user-layout .jl-sublog-status,
html body.julang-user-layout .jl-sublog-action,
html body.julang-user-layout .jl-sublog-record-card,
html body.julang-user-layout .jl-profile-hero,
html body.julang-user-layout .jl-profile-summary,
html body.julang-user-layout .jl-profile-stat,
html body.julang-user-layout .jl-profile-action,
html body.julang-user-layout .jl-profile-data-card,
html body.julang-user-layout .jl-profile-security-card,
html body.julang-user-layout .jl-node-hero,
html body.julang-user-layout .jl-node-summary,
html body.julang-user-layout .jl-node-summary-item,
html body.julang-user-layout .jl-node-card,
html body.julang-user-layout .jl-node-metric,
html body.julang-user-layout .jl-node-filter-panel,
html body.julang-user-layout .jl-node-empty,
html body.julang-user-layout .jl-invite-hero,
html body.julang-user-layout .jl-invite-stat-panel,
html body.julang-user-layout .jl-invite-stat,
html body.julang-user-layout .jl-invite-card,
html body.julang-user-layout .jl-invite-record-card,
html body.julang-user-layout .jl-wallet-hero,
html body.julang-user-layout .jl-wallet-record-card,
html body.julang-user-layout .jl-ann-hero,
html body.julang-user-layout .jl-ann-detail,
html body.julang-user-layout .jl-ann-index,
html body.julang-user-layout .jl-ann-index-item,
html body.julang-node-detail .jl-node-detail-card,
html body.julang-node-detail .card-main,
html body.julang-node-detail .card-inner {
  border-radius: 14px !important;
}

html body.julang-user-layout .jl-announcement-history,
html body.julang-user-layout .jl-ticket-action,
html body.julang-user-layout .jl-ticket-create-btn,
html body.julang-user-layout .jl-wallet-action,
html body.julang-user-layout .jl-shop-payment-options .nav-link,
html body.julang-node-detail .jl-node-actions .btn,
html body.julang-node-detail .nav-pills .nav-link {
  border-radius: 12px !important;
}

html body.julang-user-layout .jl-ticket-action-card,
html body.julang-user-layout .jl-faq-action,
html body.julang-user-layout .jl-faq-support,
html body.julang-user-layout .jl-detect-action,
html body.julang-user-layout .jl-sublog-action,
html body.julang-user-layout .jl-profile-action,
html body.julang-user-layout .jl-node-card {
  min-height: 96px;
}

html body.julang-user-layout .jl-shop-plan-card:hover,
html body.julang-user-layout .jl-shop-plan-card:focus-within,
html body.julang-user-layout .jl-ticket-action-card:hover,
html body.julang-user-layout .jl-ticket-action-card:focus,
html body.julang-user-layout .jl-faq-action:hover,
html body.julang-user-layout .jl-faq-action:focus,
html body.julang-user-layout .jl-faq-support:hover,
html body.julang-user-layout .jl-faq-support:focus,
html body.julang-user-layout .jl-detect-action:hover,
html body.julang-user-layout .jl-detect-action:focus,
html body.julang-user-layout .jl-sublog-action:hover,
html body.julang-user-layout .jl-sublog-action:focus,
html body.julang-user-layout .jl-profile-action:hover,
html body.julang-user-layout .jl-profile-action:focus,
html body.julang-user-layout .jl-node-card:hover,
html body.julang-user-layout .jl-node-card:focus {
  border-color: var(--jc-gold-border) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34) !important;
}

html body.julang-user-layout .jl-legacy-shell .content-header {
  margin-bottom: 1rem;
}

html body.julang-user-layout .jl-legacy-shell .content-header-title {
  float: none !important;
  padding: 0;
  border: 0;
  color: var(--jc-text-title);
  font-size: 1.55rem;
  line-height: 1.25;
}

html body.julang-user-layout .jl-legacy-shell .breadcrumb {
  margin: .45rem 0 0;
  padding: 0;
  background: transparent;
}

html body.julang-user-layout .jl-legacy-shell .breadcrumb-item,
html body.julang-user-layout .jl-legacy-shell .breadcrumb-item a {
  color: var(--jc-text-muted);
}

html body.julang-user-layout .jl-legacy-shell .card {
  border-radius: 14px !important;
  overflow: hidden;
}

html body.julang-user-layout .jl-legacy-shell .card-header {
  padding: 1rem 1.15rem;
}

html body.julang-user-layout .jl-legacy-shell .card-body {
  padding: 1.15rem;
}

html body.julang-user-layout .jl-legacy-shell .card .card {
  background: rgba(255, 255, 255, 0.035) !important;
  box-shadow: none !important;
}

html body.julang-user-layout .jl-legacy-shell .nav-pills {
  gap: .55rem;
}

html body.julang-user-layout .jl-legacy-shell .nav-pills .nav-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .62rem .78rem;
  border: 1px solid var(--jc-border-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--jc-text-secondary);
  font-weight: 800;
}

html body.julang-user-layout .jl-legacy-shell .nav-pills .nav-link.active,
html body.julang-user-layout .jl-legacy-shell .nav-pills .nav-link:hover,
html body.julang-user-layout .jl-legacy-shell .nav-pills .nav-link:focus {
  border-color: var(--jc-gold-border);
  background: var(--jc-gold-soft);
  color: var(--jc-gold-hover);
}

html body.julang-user-layout .jl-legacy-shell .btn-group {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .55rem;
  width: min(100%, 320px);
  margin: .3rem .35rem .3rem 0;
  vertical-align: top;
}

html body.julang-user-layout .jl-legacy-shell .btn-group > .btn {
  width: 100%;
}

html body.julang-user-layout .jl-legacy-shell textarea.form-control {
  min-height: 200px;
}

html body.julang-user-layout .jl-legacy-shell .avatar img,
html body.julang-user-layout .jl-legacy-shell .users-view-image img {
  border: 1px solid var(--jc-border-soft);
  background: rgba(255, 255, 255, 0.04);
}

html body.julang-user-layout .jl-legacy-shell .jl-agent-avatar {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

html body.julang-user-layout .jl-legacy-shell .jl-agent-switch {
  margin-top: 10px;
}

html body.julang-user-layout .jl-legacy-shell .jl-agent-reset-cell {
  margin-top: 8px;
}

html body.julang-user-layout .jl-legacy-shell .alert-text,
html body.julang-user-layout .jl-legacy-shell .cool-item {
  color: var(--jc-text-main);
}

@media (max-width: 768px) {
  html body.julang-user-layout .jl-legacy-shell .btn-group {
    width: 100%;
    margin-right: 0;
  }

  html body.julang-user-layout .jl-legacy-shell .nav-pills {
    margin-bottom: 1rem;
  }
}

html body.julang-auth-layout .app-content,
html body.julang-auth-layout .content-wrapper,
html body.julang-auth-layout .content-body {
  min-height: 100vh;
}

html body.julang-auth-layout .auth-wrapper.auth-v1 .auth-inner:before,
html body.julang-auth-layout .auth-wrapper.auth-v1 .auth-inner:after {
  display: none !important;
}

html body.julang-auth-layout .auth-wrapper.auth-v1 .auth-inner {
  max-width: 420px;
}

html body.julang-auth-layout .auth-wrapper .brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

html body.julang-auth-layout .auth-wrapper .brand-logo svg {
  display: none !important;
}

html body.julang-auth-layout .auth-wrapper .brand-logo:before {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  border: 1px solid var(--jc-gold-border);
  border-radius: 12px;
  background:
    url('/theme/cool/assets/images/brand/julang-mark.png') center / 78% auto no-repeat,
    linear-gradient(135deg, rgba(214, 168, 79, 0.22), rgba(255, 255, 255, 0.04)),
    var(--jc-card-bg-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

html body.julang-auth-layout .auth-wrapper .brand-logo .brand-text {
  color: var(--jc-gold-hover) !important;
  font-weight: 800;
  margin-left: .75rem !important;
}

html body.julang-auth-layout .auth-wrapper .card {
  overflow: hidden;
  border-radius: 16px !important;
}

html body.julang-auth-layout .divider .divider-text {
  background: var(--jc-card-bg);
  color: var(--jc-text-muted);
}

html body.julang-auth-layout .divider:before,
html body.julang-auth-layout .divider:after {
  border-color: var(--jc-border-soft) !important;
}

html body.julang-auth-layout #code_number,
html body.julang-auth-layout .jl-auth-telegram-code {
  color: var(--jc-gold-hover) !important;
}

html body.julang-auth-layout .jl-wechat-browser-warning,
html body.julang-payment-qrcode .jl-wechat-browser-warning {
  margin: 20px;
  color: var(--jc-text-title);
  line-height: 1.7;
}

html body.julang-node-detail .main-content,
html body.julang-node-detail .container-fluid {
  background: transparent !important;
}

html body.julang-node-detail .main-content {
  min-height: 100vh;
  padding: 1rem;
}

html body.julang-node-detail .tab-content,
html body.julang-node-detail pre,
html body.julang-node-detail code,
html body.julang-payment-qrcode code {
  background: #0D131D !important;
  color: var(--jc-text-main) !important;
  border-color: var(--jc-border-soft) !important;
}

html body.julang-payment-qrcode .app-content {
  min-height: 100vh;
  background: transparent !important;
}

html body.julang-payment-qrcode .container {
  max-width: var(--jl-shell-max);
}

html body.julang-payment-qrcode .card {
  border-radius: 16px !important;
}

html body.julang-payment-qrcode .jl-payment-qrcode-header {
  justify-content: center;
  margin: 0;
  padding: 1rem 1.25rem;
}

html body.julang-payment-qrcode #qrcode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 220px;
  padding: 1rem;
  border: 1px solid var(--jc-border-soft);
  border-radius: 14px;
  background: #FFFFFF;
}

html body.julang-payment-success .app-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

html body.julang-payment-success .content-wrapper,
html body.julang-payment-success .content-body,
html body.julang-payment-success .flexbox-container {
  width: 100%;
}

html body.julang-payment-success .auth-card {
  max-width: var(--jl-shell-max);
  margin-inline: auto;
}

html body.julang-payment-success .jl-payment-success-illustration {
  width: min(100%, 360px);
  margin-bottom: 1.5rem;
}

html body.julang-payment-qrcode a[onclick*="history"] {
  color: var(--jc-text-secondary) !important;
}

html body.julang-user-layout .julang-footer-inner {
  background: rgba(14, 19, 28, 0.84) !important;
  border-color: var(--jc-border-soft) !important;
  color: var(--jc-text-muted);
}

html body.julang-user-layout .julang-footer .scroll-top {
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
}

html body.julang-user-layout .copy-text,
html body.julang-user-layout code,
html body.julang-user-layout pre,
html body.julang-user-layout .jl-sub-dropdown .dropdown-item {
  overflow-wrap: anywhere;
  word-break: break-word;
}

html body.julang-user-layout .table-responsive,
html body.julang-auth-layout .table-responsive,
html body.julang-node-detail .table-responsive,
html body.julang-payment-qrcode .table-responsive {
  border-radius: 14px;
}

@media (max-width: 1100px) {
  html body.julang-user-layout .jl-shop-plan-grid,
  html body.julang-user-layout .jl-ticket-action-grid,
  html body.julang-user-layout .jl-faq-action-grid,
  html body.julang-user-layout .jl-detect-action-grid,
  html body.julang-user-layout .jl-sublog-action-grid,
  html body.julang-user-layout .jl-profile-action-grid,
  html body.julang-user-layout .jl-node-grid,
  html body.julang-user-layout .jl-invite-grid,
  html body.julang-user-layout .jl-invite-record-grid,
  html body.julang-user-layout .jl-profile-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  html body.julang-user-layout .content .content-wrapper {
    width: calc(100% - (var(--jl-shell-gutter) * 2));
    margin-right: auto;
    margin-left: auto;
    padding-top: 1rem;
  }

  html body.julang-user-layout .card,
  html body.julang-user-layout .jl-card,
  html body.julang-auth-layout .card,
  html body.julang-node-detail .card,
  html body.julang-payment-qrcode .card {
    padding: 0;
  }

  html body.julang-user-layout .card-body,
  html body.julang-auth-layout .card-body,
  html body.julang-node-detail .card-body,
  html body.julang-payment-qrcode .card-body {
    padding: 16px;
  }

  html body.julang-user-layout .jl-user-hero,
  html body.julang-user-layout .jl-shop-hero,
  html body.julang-user-layout .jl-node-hero,
  html body.julang-user-layout .jl-ticket-hero,
  html body.julang-user-layout .jl-wallet-hero,
  html body.julang-user-layout .jl-profile-hero,
  html body.julang-user-layout .jl-faq-hero,
  html body.julang-user-layout .jl-invite-hero,
  html body.julang-user-layout .jl-detect-hero,
  html body.julang-user-layout .jl-announcement-hero,
  html body.julang-user-layout .jl-sublog-hero {
    padding: 16px;
  }

  html body.julang-user-layout .table-responsive,
  html body.julang-node-detail .table-responsive {
    overflow-x: auto;
  }

  html body.julang-user-layout .btn,
  html body.julang-auth-layout .btn,
  html body.julang-node-detail .btn,
  html body.julang-payment-qrcode .btn {
    max-width: 100%;
  }

  html body.julang-user-layout .modal-dialog,
  html body.julang-auth-layout .modal-dialog,
  html body.julang-node-detail .modal-dialog,
  html body.julang-payment-qrcode .modal-dialog {
    margin: 12px;
  }

  html body.julang-user-layout .modal-footer,
  html body.julang-auth-layout .modal-footer,
  html body.julang-node-detail .modal-footer,
  html body.julang-payment-qrcode .modal-footer {
    gap: .5rem;
  }

  html body.julang-user-layout .modal-footer .btn,
  html body.julang-auth-layout .modal-footer .btn,
  html body.julang-node-detail .modal-footer .btn,
  html body.julang-payment-qrcode .modal-footer .btn {
    flex: 1 1 auto;
  }

  html body.julang-user-layout .jl-shop-payment-options {
    grid-template-columns: 1fr;
  }

  html body.julang-user-layout .jl-shop-plan-grid,
  html body.julang-user-layout .jl-ticket-action-grid,
  html body.julang-user-layout .jl-faq-action-grid,
  html body.julang-user-layout .jl-detect-action-grid,
  html body.julang-user-layout .jl-sublog-action-grid,
  html body.julang-user-layout .jl-profile-action-grid,
  html body.julang-user-layout .jl-node-grid,
  html body.julang-user-layout .jl-invite-grid,
  html body.julang-user-layout .jl-invite-record-grid,
  html body.julang-user-layout .jl-profile-data-grid {
    grid-template-columns: 1fr !important;
  }
}

/* User shell spacing and sparse-page stability. */
html body.julang-user-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html body.julang-user-layout .content.jl-user-shell,
html body.julang-user-layout .app-content.jl-user-shell {
  flex: 1 0 auto;
  min-height: calc(100vh - 132px) !important;
}

html body.julang-user-layout .content.jl-user-shell .content-wrapper {
  width: calc(100% - (var(--jl-shell-gutter) * 2));
  max-width: var(--jl-shell-max);
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 2rem;
}

html body.julang-user-layout .julang-footer {
  flex-shrink: 0;
  margin-top: auto !important;
  opacity: .76;
}

html body.julang-user-layout .julang-footer-inner {
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.06) !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.julang-user-layout .julang-topbar-control {
  width: 42px !important;
  min-width: 42px;
  flex: 0 0 42px !important;
  padding: 0 !important;
  overflow: hidden;
}

html body.julang-user-layout .julang-topbar-control.julang-topbar-text {
  width: auto !important;
  min-width: 92px;
  max-width: none;
  flex: 0 0 auto !important;
  gap: .45rem;
  padding: 0 .82rem !important;
  white-space: nowrap;
}

html body.julang-user-layout .julang-topbar-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: none;
  overflow: visible;
  color: inherit;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

html body.julang-user-layout .julang-topbar-control.notification-toggle {
  min-width: 78px;
}

html body.julang-user-layout .julang-topbar-control:focus:not(:focus-visible) {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: var(--jc-border-soft) !important;
  color: var(--jc-text-secondary) !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body.julang-user-layout .julang-topbar-control:focus-visible {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: var(--jc-gold-border) !important;
  color: var(--jc-gold-hover) !important;
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.14) !important;
  outline: 0 !important;
}

html body.julang-user-layout.modal-open .julang-topbar {
  z-index: 1030 !important;
  pointer-events: none;
}

html body.julang-user-layout .main-menu .navigation > li.active > a,
html body.julang-user-layout .julang-sidebar .navigation > li.active > a {
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(214, 168, 79, 0.22) !important;
}

html body.julang-user-layout .main-menu .navigation > li.active > a:before,
html body.julang-user-layout .julang-sidebar .navigation > li.active > a:before {
  width: 3px;
  background: var(--jc-gold) !important;
  box-shadow: none !important;
}

html body.julang-user-layout .btn-jl-primary.jl-primary-cta,
html body.julang-user-layout .btn.btn-jl-primary.jl-primary-cta,
html body.julang-user-layout .btn-jl-primary.is-cta,
html body.julang-user-layout .btn.btn-jl-primary.is-cta {
  background: linear-gradient(135deg, var(--jc-gold) 0%, var(--jc-gold-hover) 100%) !important;
  border-color: var(--jc-gold) !important;
  color: #17110A !important;
  box-shadow: 0 12px 26px rgba(214, 168, 79, 0.18) !important;
}

html body.julang-user-layout .btn-jl-primary.jl-primary-cta:hover,
html body.julang-user-layout .btn.btn-jl-primary.jl-primary-cta:hover,
html body.julang-user-layout .btn-jl-primary.is-cta:hover,
html body.julang-user-layout .btn.btn-jl-primary.is-cta:hover,
html body.julang-user-layout .btn-jl-primary.jl-primary-cta:focus,
html body.julang-user-layout .btn.btn-jl-primary.jl-primary-cta:focus,
html body.julang-user-layout .btn-jl-primary.is-cta:focus,
html body.julang-user-layout .btn.btn-jl-primary.is-cta:focus {
  color: #17110A !important;
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(214, 168, 79, 0.24) !important;
}

html body.julang-user-layout .jl-status,
html body.julang-user-layout .jl-state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: .25rem .62rem;
  border-radius: 999px;
  border: 1px solid var(--jc-border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--jc-text-secondary);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

html body.julang-user-layout .jl-status.is-success,
html body.julang-user-layout .jl-state-badge.is-success {
  border-color: rgba(34, 197, 94, 0.34);
  background: var(--jc-success-soft);
  color: #86EFAC;
}

html body.julang-user-layout .jl-status.is-warning,
html body.julang-user-layout .jl-state-badge.is-warning {
  border-color: rgba(245, 158, 11, 0.40);
  background: var(--jc-warning-soft);
  color: #FCD34D;
}

html body.julang-user-layout .jl-status.is-danger,
html body.julang-user-layout .jl-state-badge.is-danger {
  border-color: rgba(239, 68, 68, 0.42);
  background: var(--jc-danger-soft);
  color: #FCA5A5;
}

html body.julang-user-layout .jl-status.is-info,
html body.julang-user-layout .jl-state-badge.is-info {
  border-color: rgba(56, 189, 248, 0.34);
  background: var(--jc-info-soft);
  color: #8DDCFF;
}

html body.julang-user-layout .jl-empty-state {
  display: grid;
  justify-items: center;
  gap: .45rem;
  padding: 1.2rem;
  color: var(--jc-text-muted);
  text-align: center;
}

html body.julang-user-layout .jl-empty-state i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  border: 1px solid var(--jc-border-soft);
  background: rgba(255, 255, 255, 0.035);
  color: var(--jc-text-secondary);
}

html body.julang-user-layout .jl-empty-state strong {
  color: var(--jc-text-main);
  font-size: .95rem;
}

html body.julang-user-layout .table-responsive {
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

html body.julang-user-layout .jl-wallet-table th,
html body.julang-user-layout .jl-wallet-table td,
html body.julang-user-layout .jl-profile-table th,
html body.julang-user-layout .jl-profile-table td,
html body.julang-user-layout .jl-invite-table th,
html body.julang-user-layout .jl-invite-table td {
  font-size: .92rem;
}

@media (max-width: 1199.98px) {
  html body.julang-user-layout .julang-topbar-menu {
    width: auto;
    min-width: 78px;
    flex: 0 0 auto;
    padding: 0 .78rem;
  }

  html body.julang-user-layout .julang-mobile-menu-label {
    display: inline-flex;
  }
}

@media (max-width: 767.98px) {
  html body.julang-user-layout {
    --jl-shell-gutter: 14px;
  }

  html body.julang-user-layout .julang-topbar-shell {
    min-height: 54px;
    padding: 0 .65rem;
  }

  html body.julang-user-layout .julang-topbar-left {
    flex: 1 1 auto;
    min-width: 0;
  }

  html body.julang-user-layout .julang-topbar-right {
    flex: 0 0 auto;
  }

  html body.julang-user-layout .julang-topbar-context small {
    display: none;
  }

  html body.julang-user-layout .julang-topbar-context span {
    font-size: 13px;
  }

  html body.julang-user-layout .julang-user-menu-toggle {
    max-width: 82px;
    min-width: 42px;
    padding: 0 .45rem;
  }

  html body.julang-user-layout .julang-user-menu-toggle .julang-profile-name {
    max-width: 44px;
  }

  html body.julang-user-layout .julang-topbar-label {
    display: none;
  }

  html body.julang-user-layout .julang-topbar-control.notification-toggle {
    min-width: 42px;
  }

  html body.julang-user-layout .julang-topbar-control.julang-topbar-text {
    width: 42px !important;
    min-width: 42px;
    flex: 0 0 42px !important;
    gap: 0;
    padding: 0 !important;
  }

  html body.julang-user-layout .content.jl-user-shell,
  html body.julang-user-layout .app-content.jl-user-shell {
    min-height: calc(100vh - 104px) !important;
  }
}

@media (max-width: 479.98px) {
  html body.julang-user-layout .julang-topbar-context {
    display: none;
  }
}

/* 2026 final semantic layer for shared Cool user surfaces. */
html body.julang-user-layout .jl-user-hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.06), rgba(56, 189, 248, 0) 32%),
    linear-gradient(135deg, rgba(18, 24, 35, 0.98) 0%, rgba(14, 20, 30, 0.99) 58%, rgba(10, 15, 23, 1) 100%) !important;
  border-color: var(--jc-border-soft) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28) !important;
}

html body.julang-user-layout .jl-shop-hero,
html body.julang-user-layout .jl-wallet-hero,
html body.julang-user-layout .jl-profile-hero,
html body.julang-user-layout .jl-invite-hero,
html body.julang-user-layout .jl-node-hero,
html body.julang-user-layout .jl-ticket-hero,
html body.julang-user-layout .jl-faq-hero,
html body.julang-user-layout .jl-detect-hero,
html body.julang-user-layout .jl-sublog-hero,
html body.julang-user-layout .jl-ann-hero {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at left center, rgba(214, 168, 79, 0.16), transparent 360px),
    linear-gradient(135deg, #151B27 0%, #101620 55%, #0B1018 100%) !important;
  border: 1px solid var(--jc-gold-border) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34) !important;
}

html body.julang-user-layout .jl-shop-hero:before,
html body.julang-user-layout .jl-wallet-hero:before,
html body.julang-user-layout .jl-profile-hero:before,
html body.julang-user-layout .jl-invite-hero:before,
html body.julang-user-layout .jl-node-hero:before,
html body.julang-user-layout .jl-ticket-hero:before,
html body.julang-user-layout .jl-faq-hero:before,
html body.julang-user-layout .jl-detect-hero:before,
html body.julang-user-layout .jl-sublog-hero:before,
html body.julang-user-layout .jl-ann-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 224, 150, 0.08), rgba(255, 255, 255, 0) 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 52%) !important;
  pointer-events: none;
}

html body.julang-user-layout .jl-shop-hero > *,
html body.julang-user-layout .jl-wallet-hero > *,
html body.julang-user-layout .jl-profile-hero > *,
html body.julang-user-layout .jl-invite-hero > *,
html body.julang-user-layout .jl-node-hero > *,
html body.julang-user-layout .jl-ticket-hero > *,
html body.julang-user-layout .jl-faq-hero > *,
html body.julang-user-layout .jl-detect-hero > *,
html body.julang-user-layout .jl-sublog-hero > *,
html body.julang-user-layout .jl-ann-hero > * {
  position: relative;
}

html body.julang-user-layout .jl-shop-tabs .nav-link.active,
html body.julang-user-layout .jl-shop-tabs .nav-link:hover,
html body.julang-user-layout .jl-shop-tabs .nav-link:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--jc-border-strong) !important;
  color: var(--jc-text-title) !important;
}

html body.julang-user-layout .jl-profile-action.is-warning,
html body.julang-user-layout .jl-invite-reset-btn,
html body.julang-user-layout .jl-wallet-action {
  border-color: rgba(245, 158, 11, 0.38) !important;
  background: var(--jc-warning-soft) !important;
  color: #FCD34D !important;
}

html body.julang-user-layout .jl-profile-action.is-warning .jl-profile-action-icon {
  border-color: rgba(245, 158, 11, 0.42) !important;
  background: rgba(245, 158, 11, 0.12) !important;
  color: #FCD34D !important;
}

html body.julang-user-layout .jl-profile-action.is-danger {
  border-color: rgba(239, 68, 68, 0.40) !important;
  background: var(--jc-danger-soft) !important;
}

html body.julang-user-layout .jl-profile-action.is-danger .jl-profile-action-icon {
  border-color: rgba(239, 68, 68, 0.42) !important;
  background: rgba(239, 68, 68, 0.12) !important;
  color: #FCA5A5 !important;
}

html body.julang-user-layout .jl-shop-traffic-entry {
  border-color: rgba(56, 189, 248, 0.34) !important;
  background: var(--jc-info-soft) !important;
  color: #8DDCFF !important;
}

html body.julang-user-layout .jl-shop-plan-card:hover,
html body.julang-user-layout .jl-shop-plan-card:focus-within,
html body.julang-user-layout .jl-profile-action:hover,
html body.julang-user-layout .jl-profile-action:focus {
  border-color: var(--jc-border-strong) !important;
}
