:root {
  --taki-shell-bg: rgba(6, 7, 10, 0.90);
  --taki-shell-panel: rgba(18, 20, 27, 0.98);
  --taki-shell-border: rgba(255, 255, 255, 0.12);
  --taki-shell-text: #ffffff;
  --taki-shell-muted: #a6a8b3;
  --taki-shell-accent: #8b5cf6;
}

#taki-shared-header,
#taki-shared-footer {
  width: 100%;
}

.taki-site-header,
.taki-site-footer,
.taki-site-header *,
.taki-site-footer * {
  box-sizing: border-box;
}

.taki-site-header {
  position: relative;
  z-index: 10000;
  width: 100%;
  border-bottom: 1px solid var(--taki-shell-border);
  color: var(--taki-shell-text);
  background: var(--taki-shell-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.taki-site-header__bar {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 58px);
}

.taki-site-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.taki-site-brand__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.taki-site-brand a,
.taki-primary-navigation a,
.taki-site-footer a {
  color: var(--taki-shell-text) !important;
  text-decoration: none !important;
}

.taki-site-brand a {
  font-weight: 900;
  letter-spacing: .05em;
  white-space: nowrap;
}

.taki-navigation-panel {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.taki-primary-navigation {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  min-width: 0;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 28px);
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.taki-primary-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  opacity: .88;
}

.taki-primary-navigation a:hover,
.taki-primary-navigation a:focus-visible {
  opacity: 1;
}

.taki-card-search {
  position: relative;
  flex: 0 1 310px;
  width: min(310px, 28vw);
  min-width: 210px;
}

.taki-card-search input {
  display: block;
  width: 100% !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 1px solid var(--taki-shell-border) !important;
  border-radius: 12px !important;
  outline: none;
  color: #fff !important;
  background: rgba(255,255,255,.07) !important;
  font: inherit;
  font-size: 16px !important;
}

.taki-card-search input:focus {
  border-color: rgba(139,92,246,.75) !important;
  box-shadow: 0 0 0 4px rgba(139,92,246,.13) !important;
}

.taki-card-search__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10010;
  display: none;
  max-height: 360px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid var(--taki-shell-border);
  border-radius: 13px;
  background: var(--taki-shell-panel);
  box-shadow: 0 18px 48px rgba(0,0,0,.45);
}

.taki-card-search__suggestions.is-open { display: block; }

.taki-card-search__option {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.taki-card-search__option:hover,
.taki-card-search__option:focus-visible,
.taki-card-search__option.is-active {
  background: rgba(139,92,246,.18);
}

.taki-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--taki-shell-border);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.07);
  cursor: pointer;
}

.taki-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.taki-site-header.is-open .taki-menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.taki-site-header.is-open .taki-menu-button span:nth-child(2) { opacity: 0; }
.taki-site-header.is-open .taki-menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.taki-site-footer {
  width: 100%;
  padding: 0 18px 28px;
  color: var(--taki-shell-text);
}

.taki-site-footer__content {
  width: min(1100px, 100%);
  margin: 64px auto 0;
  padding: 28px;
  border: 1px solid var(--taki-shell-border);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  text-align: center;
}

.taki-site-footer h2 { margin: 0 0 10px; color: #fff; font-size: 22px; }
.taki-site-footer p { max-width: 620px; margin: 0 auto 18px; color: var(--taki-shell-muted); line-height: 1.6; }
.taki-site-footer__actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.taki-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--taki-shell-accent);
  font-weight: 800;
}
.taki-footer-button--secondary { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }

.taki-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  .taki-site-header__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 0 12px;
    padding: 13px 15px;
  }

  .taki-menu-button {
    display: inline-flex;
    grid-column: 2;
  }

  .taki-navigation-panel {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-top: 13px;
    padding: 12px;
    border: 1px solid var(--taki-shell-border);
    border-radius: 16px;
    background: var(--taki-shell-panel);
    box-shadow: 0 18px 46px rgba(0,0,0,.4);
  }

  .taki-site-header.is-open .taki-navigation-panel {
    display: grid;
    gap: 12px;
  }

  .taki-primary-navigation {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100%;
  }

  .taki-primary-navigation a {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 11px;
    background: rgba(255,255,255,.045);
  }

  .taki-card-search {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .taki-card-search__suggestions {
    position: static;
    margin-top: 8px;
    max-height: 280px;
  }
}

@media (max-width: 560px) {
  .taki-site-brand a { font-size: 14px; }
  .taki-site-brand__logo { width: 34px; height: 34px; }
  .taki-site-footer__actions { flex-direction: column; }
  .taki-footer-button { width: 100%; }
}



}


}


@supports not (-webkit-background-clip:text){
 
}


100%{background-position:-200% 0}
}


.usi-nav-link,
.usi-nav-link:visited{
  position:relative;
  display:inline-block;
  color:#F5C542!important;
  -webkit-text-fill-color:#F5C542!important;
  background:none!important;
  text-shadow:
    0 0 7px rgba(245,197,66,.28),
    0 0 14px rgba(245,197,66,.14);
  animation:usiGoldPulse 2.8s ease-in-out infinite;
}

.usi-nav-link:hover{
  color:#FFD966!important;
  -webkit-text-fill-color:#FFD966!important;
}

@keyframes usiGoldPulse{
  0%,100%{
    color:#C99518;
    -webkit-text-fill-color:#C99518;
    text-shadow:
      0 0 5px rgba(245,197,66,.18),
      0 0 10px rgba(245,197,66,.10);
  }
  45%{
    color:#F5C542;
    -webkit-text-fill-color:#F5C542;
    text-shadow:
      0 0 8px rgba(245,197,66,.35),
      0 0 16px rgba(245,197,66,.18);
  }
  55%{
    color:#FFF0A6;
    -webkit-text-fill-color:#FFF0A6;
    text-shadow:
      0 0 10px rgba(255,240,166,.42),
      0 0 18px rgba(245,197,66,.22);
  }
  65%{
    color:#F5C542;
    -webkit-text-fill-color:#F5C542;
  }
}

@media (prefers-reduced-motion:reduce){
  .usi-nav-link,
  .usi-nav-link:visited{
    animation:none!important;
    color:#F5C542!important;
    -webkit-text-fill-color:#F5C542!important;
  }
}
