.tj-unified {
  --tj-shell-purple: #3d1455;
  --tj-shell-purple-2: #6f2aa6;
  --tj-shell-yellow: #f6d600;
  --tj-shell-text: #ffffff;
  --tj-shell-muted: #d9c9e2;
}

.tj-unified .app {
  display: block !important;
  min-height: 0 !important;
}

.tj-unified .sidebar {
  display: none !important;
}

.tj-unified .content {
  width: 100% !important;
  min-width: 0 !important;
}

.tj-global-header {
  position: sticky;
  top: 0;
  z-index: 900;
  color: var(--tj-shell-text);
  background:
    radial-gradient(circle at 18% -80%, rgba(184, 104, 229, .72), transparent 42%),
    linear-gradient(110deg, #180722, var(--tj-shell-purple) 54%, #260a35);
  border-bottom: 1px solid rgba(246, 214, 0, .52);
  box-shadow: 0 8px 28px rgba(15, 4, 20, .3);
}

.tj-global-header-inner {
  width: min(1480px, 100%);
  min-height: 76px;
  margin: 0 auto;
  padding: 9px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.tj-global-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.tj-global-brand img {
  width: 61px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .38));
}

.tj-global-brand-copy {
  display: grid;
  gap: 2px;
}

.tj-global-brand-copy strong {
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: .05em;
  white-space: nowrap;
}

.tj-global-brand-copy small {
  color: var(--tj-shell-muted);
  font-size: 12px;
  letter-spacing: .08em;
}

.tj-global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.tj-global-nav a {
  min-height: 42px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #f5edf8;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.tj-global-nav a:hover,
.tj-global-nav a:focus-visible {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  outline: none;
}

.tj-global-nav a.active {
  color: #25102d;
  background: var(--tj-shell-yellow);
  border-color: #fff1a0;
}

.tj-global-menu {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 22px;
  line-height: 1;
}

.tj-unified .site-footer,
.tj-unified .footer {
  display: none !important;
}

.tj-global-footer {
  color: #fff;
  background:
    radial-gradient(circle at 82% 140%, rgba(129, 53, 170, .45), transparent 36%),
    linear-gradient(135deg, #110518, #2d0d3e 58%, #170720);
  border-top: 1px solid rgba(246, 214, 0, .42);
}

.tj-global-footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 27px;
}

.tj-global-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tj-global-footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tj-global-footer-brand img {
  width: 52px;
  height: 50px;
  object-fit: contain;
}

.tj-global-footer-brand strong {
  display: block;
  font-size: 17px;
}

.tj-global-footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--tj-shell-muted);
  font-size: 12px;
}

.tj-global-footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px 16px;
  flex-wrap: wrap;
}

.tj-global-footer-links a {
  color: #f2e7f7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}

.tj-global-footer-links a:hover,
.tj-global-footer-links a:focus-visible {
  color: #ffe45b;
  text-decoration: underline;
}

.tj-global-footer-rights {
  margin-top: 21px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #cdbbd5;
  font-size: 12px;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .tj-global-header-inner {
    gap: 12px;
    padding-inline: 14px;
  }

  .tj-global-nav a {
    padding-inline: 7px;
  }
}

@media (max-width: 980px) {
  .tj-global-header-inner {
    min-height: 68px;
    position: relative;
  }

  .tj-global-brand img {
    width: 53px;
    height: 50px;
  }

  .tj-global-menu {
    display: inline-grid;
    place-items: center;
  }

  .tj-global-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 12px 14px 16px;
    background: rgba(25, 7, 34, .98);
    border-bottom: 1px solid rgba(246, 214, 0, .42);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .32);
  }

  .tj-global-nav.open {
    display: grid;
  }

  .tj-global-nav a {
    justify-content: flex-start;
    padding: 0 12px;
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .045);
  }
}

@media (max-width: 680px) {
  .tj-global-header-inner {
    padding: 8px 11px;
  }

  .tj-global-brand-copy strong {
    font-size: 17px;
  }

  .tj-global-brand-copy small {
    font-size: 11px;
  }

  .tj-global-footer-inner {
    width: min(100% - 28px, 1180px);
    padding-block: 25px 23px;
  }

  .tj-global-footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .tj-global-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .tj-global-nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
}


/* V11.14 accessibility and usability baseline */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%;scroll-padding-top:84px}
.tj-skip-link{position:fixed;z-index:100000;top:8px;left:8px;transform:translateY(-180%);padding:10px 14px;border-radius:10px;background:#fff;color:#240b31;font-weight:900;text-decoration:none;box-shadow:0 6px 24px rgba(0,0,0,.28)}
.tj-skip-link:focus{transform:translateY(0)}
:focus-visible{outline:3px solid currentColor;outline-offset:3px}
.tj-global-nav a,.tj-global-footer-links a{font-size:max(13px,.8125rem)}
button,a,input,select,textarea{touch-action:manipulation}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}
