:root {
  --teal-deep: #07313c;
  --teal-darker: #0e5467;
  --teal-dark: #14718a;
  --teal: #1EA0C3;
  --teal-bright: #34bbe0;
  --cyan-soft: #b7e1ec;
  --cyan-soft-2: #d7eef4;
  --cyan-bg: #e6f5f8;
  --cyan-bg-2: #f6fbfd;
  --green: #2D6A4F;
  --green-light: #49ba88;
  --green-soft: #e5f5ee;
  --ink: #0A2540;
  --ink-soft: #233b53;
  --ink-muted: #5d6f81;
  --line: #dde0e4;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(14, 84, 103, 0.05), 0 4px 12px rgba(14, 84, 103, 0.06);
  --shadow-md: 0 4px 14px rgba(14, 84, 103, 0.08), 0 16px 40px rgba(14, 84, 103, 0.1);
  --shadow-lg: 0 12px 28px rgba(14, 84, 103, 0.12), 0 32px 64px rgba(14, 84, 103, 0.16);
  --shadow-cta: 0 6px 20px rgba(20, 113, 138, 0.3);
  --site-header-h: 76px;
  --sticky-top: calc(var(--site-header-h) + 16px); }

/*# sourceMappingURL=theme.css.map */

#header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--site-header-h, 76px);
  padding: 0;
  background: var(--white, #fff);
  border-bottom: 1px solid var(--line, #dde9f0);
  font-family: 'Poppins', system-ui, sans-serif;
  text-align: left; }

.hdr-spacer {
  height: var(--site-header-h, 76px);
  flex-shrink: 0; }

#header.site-header .hdr-inner {
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px; }

#header.site-header .hdr-burger {
  display: none;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: var(--cyan-bg, #e8f4f9);
  color: var(--teal-darker, #065368);
  cursor: pointer; }
  #header.site-header .hdr-burger .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 20px; }

#header.site-header .hdr-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1; }
  #header.site-header .hdr-logo img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 210px;
    object-fit: contain; }

#header.site-header .main-nav {
  background: none;
  color: inherit;
  width: auto;
  height: auto;
  line-height: normal;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 0; }

#header.site-header .mn-item,
#header.site-header .mn-legacy > a,
#header.site-header .mn-legacy > li > a,
#header.site-header .mn-legacy > ul > li > a {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink-soft, #1a3a52);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s ease; }
  #header.site-header .mn-item:hover, #header.site-header .mn-item:focus-visible,
  #header.site-header .mn-legacy > a:hover,
  #header.site-header .mn-legacy > a:focus-visible,
  #header.site-header .mn-legacy > li > a:hover,
  #header.site-header .mn-legacy > li > a:focus-visible,
  #header.site-header .mn-legacy > ul > li > a:hover,
  #header.site-header .mn-legacy > ul > li > a:focus-visible {
    color: var(--teal-darker, #065368); }
#header.site-header .mn-item.is-current {
  color: var(--teal-darker, #065368);
  font-weight: 600; }
#header.site-header .mn-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px; }
#header.site-header .mn-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer; }
#header.site-header .mn-caret {
  color: var(--ink-muted, #5a7488);
  transition: transform .2s ease, color .15s ease; }
  #header.site-header .mn-caret.material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 18px; }
#header.site-header .mn-group:hover .mn-caret,
#header.site-header .mn-group.is-open .mn-caret {
  color: var(--teal-darker, #065368); }
#header.site-header .mn-group.is-open .mn-caret {
  transform: rotate(180deg); }
#header.site-header .mn-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -12px;
  min-width: 232px;
  padding: 8px;
  background: var(--white, #fff);
  border: 1px solid var(--line, #dde9f0);
  border-radius: var(--radius, 16px);
  box-shadow: var(--shadow-lg, 0 12px 32px rgba(6, 83, 104, 0.18));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60; }
#header.site-header .mn-group::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px; }
#header.site-header .mn-group.is-open .mn-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }
#header.site-header .mn-child {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-soft, #1a3a52);
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease; }
  #header.site-header .mn-child:hover, #header.site-header .mn-child:focus-visible {
    color: var(--teal-darker, #065368);
    background: var(--cyan-bg, #e8f4f9); }
#header.site-header .mn-child.is-current {
  color: var(--teal-darker, #065368);
  background: var(--cyan-bg, #e8f4f9); }
#header.site-header .mn-child .dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cyan-soft, #b8e5f0); }

#header.site-header .mn-legacy {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0; }
  #header.site-header .mn-legacy > ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none; }
  #header.site-header .mn-legacy > ul > li,
  #header.site-header .mn-legacy > li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    background: none;
    list-style: none; }
  #header.site-header .mn-legacy .dropdown-content li > a {
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft, #1a3a52); }
  #header.site-header .mn-legacy .dropdown-content li:hover,
  #header.site-header .mn-legacy .dropdown-content li.active,
  #header.site-header .mn-legacy .dropdown-content li.selected {
    background-color: var(--cyan-bg, #e8f4f9); }
  #header.site-header .mn-legacy .dropdown-content li:hover > a,
  #header.site-header .mn-legacy .dropdown-content li > a:focus-visible {
    color: var(--teal-darker, #065368); }
  #header.site-header .mn-legacy > ul > li > a > .material-icons,
  #header.site-header .mn-legacy > li > a > .material-icons,
  #header.site-header .mn-legacy > a > .material-icons {
    height: auto;
    font-size: 18px;
    line-height: 1;
    font-style: normal;
    color: var(--ink-muted, #5a7488); }

@media (hover: hover) and (pointer: fine) {
  #header.site-header .mn-group:hover .mn-panel,
  #header.site-header .mn-group:focus-within .mn-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

  #header.site-header .mn-group:hover .mn-caret {
    transform: rotate(180deg); } }
#header.site-header .user-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0; }

.uc-anon,
.uc-skeleton,
.uc-live {
  display: none;
  align-items: center;
  gap: 10px; }

html:not([data-session]) .uc-anon,
html[data-session="anon"] .uc-anon,
html[data-session="pending"] .uc-skeleton,
html[data-session="logged"] .uc-skeleton,
html[data-session="logged"] .user-cluster.is-hydrated .uc-live {
  display: flex; }

html[data-session="logged"] .user-cluster.is-hydrated .uc-skeleton {
  display: none; }

.uc-skeleton span {
  display: block;
  border-radius: 50%;
  background: var(--cyan-bg, #e8f4f9);
  animation: uc-pulse 1.4s ease-in-out infinite; }

.uc-skeleton .uc-sk-round {
  width: 34px;
  height: 34px; }

.uc-skeleton .uc-sk-balance {
  width: 74px;
  height: 26px;
  border-radius: 8px; }

.uc-skeleton .uc-sk-avatar {
  width: 38px;
  height: 38px; }

@keyframes uc-pulse {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: .55; } }
@media (prefers-reduced-motion: reduce) {
  .uc-skeleton span {
    animation: none; } }
#header.site-header .uc-login,
#header.site-header .uc-register {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill, 999px);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease; }
#header.site-header .uc-login {
  color: var(--teal-darker, #065368);
  background: var(--cyan-bg, #e8f4f9); }
  #header.site-header .uc-login:hover, #header.site-header .uc-login:focus-visible {
    background: var(--cyan-soft, #b8e5f0); }
#header.site-header .uc-register {
  color: var(--white, #fff);
  background: linear-gradient(135deg, var(--teal-dark, #0e6e85), var(--teal-darker, #065368));
  box-shadow: var(--shadow-cta, 0 6px 20px rgba(14, 110, 133, 0.3)); }
  #header.site-header .uc-register:hover, #header.site-header .uc-register:focus-visible {
    box-shadow: none; }

#header.site-header .uc-addfunds {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white, #fff);
  background: linear-gradient(135deg, var(--teal-dark, #0e6e85), var(--teal-darker, #065368));
  box-shadow: var(--shadow-cta, 0 6px 20px rgba(14, 110, 133, 0.3));
  text-decoration: none; }
  #header.site-header .uc-addfunds .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 19px; }

#header.site-header .uc-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--teal-deep, #03323f);
  color: var(--white, #fff);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease; }

#header.site-header .uc-addfunds:hover .uc-tip,
#header.site-header .uc-addfunds:focus-visible .uc-tip {
  opacity: 1; }

#header.site-header .uc-balance {
  display: flex;
  flex-direction: column;
  padding: 0 4px;
  line-height: 1.25; }
  #header.site-header .uc-balance .uc-balance-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--ink-muted, #5a7488); }
  #header.site-header .uc-balance .uc-balance-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--teal-darker, #065368);
    white-space: nowrap; }

#header.site-header .uc-bell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cyan-bg, #e8f4f9);
  color: var(--teal-darker, #065368);
  text-decoration: none; }
  #header.site-header .uc-bell .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 19px; }

#header.site-header .uc-bell-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright, #38b6d5);
  border: 1.5px solid var(--white, #fff); }

#header.site-header .uc-avatar-wrap {
  position: relative; }

#header.site-header .uc-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--teal-darker, #065368);
  color: var(--white, #fff);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color .15s ease; }

#header.site-header .uc-avatar-wrap.is-open .uc-avatar,
#header.site-header .uc-avatar-wrap:hover .uc-avatar {
  border-color: var(--teal-bright, #38b6d5); }

#header.site-header .uc-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 24px);
  background: var(--white, #fff);
  border: 1px solid var(--line, #dde9f0);
  border-radius: var(--radius, 16px);
  box-shadow: var(--shadow-lg, 0 12px 32px rgba(6, 83, 104, 0.18));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
  max-height: calc(100vh - var(--site-header-h, 76px) - 24px);
  overflow-y: auto; }

#header.site-header .uc-avatar-wrap.is-open .uc-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

#header.site-header .uc-avatar-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 12px; }

@media (hover: hover) and (pointer: fine) {
  #header.site-header .uc-avatar-wrap:hover .uc-menu,
  #header.site-header .uc-avatar-wrap:focus-within .uc-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); } }
#header.site-header .uc-card {
  margin: 10px;
  padding: 14px 16px;
  border-radius: var(--radius, 16px);
  background: linear-gradient(150deg, var(--teal-darker, #065368), var(--teal-deep, #03323f));
  color: var(--white, #fff); }
#header.site-header .uc-card-head {
  display: flex;
  align-items: center;
  gap: 12px; }
#header.site-header .uc-card-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
  line-height: 1; }
#header.site-header .uc-card-id {
  min-width: 0; }
#header.site-header .uc-card-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  word-break: break-word; }
#header.site-header .uc-card-balance,
#header.site-header .uc-card-link {
  display: none; }
#header.site-header .uc-card-balance {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78); }
#header.site-header .uc-card-link {
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cyan-soft, #b8e5f0);
  text-decoration: none; }
  #header.site-header .uc-card-link .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 17px; }
  #header.site-header .uc-card-link:hover, #header.site-header .uc-card-link:focus-visible {
    color: var(--white, #fff); }
#header.site-header .uc-status-row {
  padding: 0 16px 4px; }
#header.site-header .uc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-pill, 999px);
  background: var(--cyan-bg, #e8f4f9);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-darker, #065368); }
  #header.site-header .uc-status .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 14px; }
#header.site-header .uc-nav {
  background: none;
  color: inherit;
  width: auto;
  height: auto;
  line-height: normal;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  padding: 4px 8px 8px; }
#header.site-header .uc-eyebrow {
  padding: 8px 12px 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted, #5a7488); }
#header.site-header .uc-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-soft, #1a3a52);
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  transition: color .15s ease, background-color .15s ease; }
  #header.site-header .uc-item::-webkit-details-marker {
    display: none; }
  #header.site-header .uc-item .material-icons {
    display: block;
    flex-shrink: 0;
    height: auto;
    line-height: 1;
    font-size: 19px;
    color: var(--ink-muted, #5a7488);
    transition: color .15s ease, transform .2s ease; }
  #header.site-header .uc-item:hover, #header.site-header .uc-item:focus-visible {
    background: var(--cyan-bg, #e8f4f9); }
  #header.site-header .uc-item:hover, #header.site-header .uc-item:focus-visible, #header.site-header .uc-item.is-current {
    color: var(--teal-darker, #065368); }
    #header.site-header .uc-item:hover .material-icons,
    #header.site-header .uc-item:hover .uc-ico, #header.site-header .uc-item:focus-visible .material-icons,
    #header.site-header .uc-item:focus-visible .uc-ico, #header.site-header .uc-item.is-current .material-icons,
    #header.site-header .uc-item.is-current .uc-ico {
      color: var(--teal-darker, #065368); }
#header.site-header .uc-item.is-current,
#header.site-header .uc-group.is-current-branch > .uc-item {
  font-weight: 700;
  color: var(--teal-darker, #065368); }
  #header.site-header .uc-item.is-current .material-icons,
  #header.site-header .uc-item.is-current .uc-ico,
  #header.site-header .uc-group.is-current-branch > .uc-item .material-icons,
  #header.site-header .uc-group.is-current-branch > .uc-item .uc-ico {
    color: var(--teal-darker, #065368); }
  #header.site-header .uc-item.is-current::before,
  #header.site-header .uc-group.is-current-branch > .uc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    width: 3px;
    border-radius: 2px;
    background: var(--teal, #1ea0c3); }
#header.site-header .uc-ico {
  display: block;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--ink-muted, #5a7488);
  background-color: currentColor;
  -webkit-mask: var(--uc-ico) no-repeat center/contain;
  mask: var(--uc-ico) no-repeat center/contain;
  transition: color .15s ease; }
@supports not ((-webkit-mask-image: none) or (mask-image: none)) {
  #header.site-header .uc-ico {
    display: none; } }
#header.site-header .uc-label {
  flex: 1;
  min-width: 0; }
#header.site-header .uc-caret {
  margin-left: auto; }
#header.site-header .uc-group[open] > .uc-item {
  color: var(--teal-darker, #065368); }
  #header.site-header .uc-group[open] > .uc-item .material-icons,
  #header.site-header .uc-group[open] > .uc-item .uc-ico {
    color: var(--teal-darker, #065368); }
#header.site-header .uc-group[open] .uc-caret {
  transform: rotate(180deg); }
#header.site-header .uc-children {
  display: flex;
  flex-direction: column;
  margin: 2px 0 6px 22px;
  padding-left: 12px;
  border-left: 2px solid var(--cyan-bg, #e8f4f9); }
#header.site-header .uc-child {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-muted, #5a7488);
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease; }
  #header.site-header .uc-child .dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cyan-soft, #b8e5f0);
    transition: background-color .15s ease; }
  #header.site-header .uc-child:hover, #header.site-header .uc-child:focus-visible {
    color: var(--teal-darker, #065368);
    background: var(--cyan-bg, #e8f4f9); }
  #header.site-header .uc-child.is-current {
    font-weight: 700;
    color: var(--teal-darker, #065368); }
    #header.site-header .uc-child.is-current .dot {
      background: var(--teal, #1ea0c3); }
#header.site-header .uc-count {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: var(--radius-pill, 999px);
  background: var(--teal-bright, #38b6d5);
  color: var(--teal-deep, #03323f);
  font-size: 10px;
  font-weight: 700; }
#header.site-header .uc-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-top: 1px solid var(--line, #dde9f0);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted, #5a7488);
  text-decoration: none;
  transition: color .15s ease; }
  #header.site-header .uc-logout .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 18px; }
  #header.site-header .uc-logout:hover, #header.site-header .uc-logout:focus-visible {
    color: var(--red, #c0554a); }

.site-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(3, 50, 63, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease; }

.site-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto; }

.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 701;
  width: 86%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  background: var(--white, #fff);
  box-shadow: 12px 0 32px rgba(6, 83, 104, 0.18);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', system-ui, sans-serif;
  visibility: hidden; }

.site-drawer.is-open {
  transform: translateX(0);
  visibility: visible; }

@media (prefers-reduced-motion: reduce) {
  .site-drawer,
  .site-drawer-overlay {
    transition: none; } }
.site-drawer .drw-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line, #dde9f0); }
.site-drawer .drw-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  line-height: 1; }
  .site-drawer .drw-logo img {
    display: block;
    height: 30px;
    width: auto;
    max-width: 172px;
    object-fit: contain; }
.site-drawer .drw-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: var(--cyan-bg, #e8f4f9);
  color: var(--teal-darker, #065368);
  cursor: pointer; }
  .site-drawer .drw-close .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 19px; }
.site-drawer .drw-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
.site-drawer .drw-auth {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line, #dde9f0); }
.site-drawer .drw-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: var(--radius-pill, 999px);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none; }
  .site-drawer .drw-cta .material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 19px; }
.site-drawer .drw-cta--primary {
  color: var(--white, #fff);
  background: linear-gradient(135deg, var(--teal-dark, #0e6e85), var(--teal-darker, #065368));
  box-shadow: var(--shadow-cta, 0 6px 20px rgba(14, 110, 133, 0.3)); }
.site-drawer .drw-cta--ghost {
  color: var(--teal-darker, #065368);
  background: var(--white, #fff);
  border: 1px solid var(--line, #dde9f0); }
  .site-drawer .drw-cta--ghost:hover, .site-drawer .drw-cta--ghost:focus-visible {
    background: var(--cyan-bg, #e8f4f9); }
.site-drawer .drw-eyebrow {
  padding: 14px 12px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted, #5a7488); }
.site-drawer .drw-nav {
  background: none;
  color: inherit;
  width: auto;
  height: auto;
  line-height: normal;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  padding: 0 8px 8px; }
.site-drawer .drw-item,
.site-drawer .drw-legacy a {
  display: block;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line, #dde9f0);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-soft, #1a3a52);
  text-decoration: none; }
  .site-drawer .drw-item:hover, .site-drawer .drw-item:focus-visible,
  .site-drawer .drw-legacy a:hover,
  .site-drawer .drw-legacy a:focus-visible {
    color: var(--teal-darker, #065368); }
.site-drawer .drw-item.is-current {
  color: var(--teal-darker, #065368); }
.site-drawer .drw-group > summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line, #dde9f0);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-soft, #1a3a52);
  cursor: pointer;
  list-style: none; }
  .site-drawer .drw-group > summary::-webkit-details-marker {
    display: none; }
.site-drawer .drw-group[open] > summary {
  color: var(--teal-darker, #065368); }
.site-drawer .drw-chevron {
  margin-left: auto;
  color: var(--ink-muted, #5a7488);
  transition: transform .2s ease; }
  .site-drawer .drw-chevron.material-icons {
    display: block;
    height: auto;
    line-height: 1;
    font-size: 20px; }
.site-drawer .drw-group[open] .drw-chevron {
  transform: rotate(180deg); }
.site-drawer .drw-children {
  display: flex;
  flex-direction: column;
  padding: 2px 0 10px 20px; }
.site-drawer .drw-child {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-muted, #5a7488);
  text-decoration: none; }
  .site-drawer .drw-child:hover, .site-drawer .drw-child:focus-visible {
    color: var(--teal-darker, #065368); }
.site-drawer .drw-child.is-current {
  color: var(--teal-darker, #065368); }
.site-drawer .drw-child .dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cyan-soft, #b8e5f0); }
.site-drawer .drw-legacy li {
  margin: 0;
  padding: 0;
  background: none;
  list-style: none; }
.site-drawer .drw-legacy .divider {
  display: none; }
.site-drawer .drw-legacy a:not([href]) {
  padding-bottom: 4px;
  border-bottom: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted, #5a7488); }

html:not([data-session]) .site-drawer .drw-auth,
html[data-session="anon"] .site-drawer .drw-auth {
  display: flex; }

body.drawer-open {
  overflow: hidden; }

@media (max-width: 1080px) {
  #header.site-header .uc-balance,
  #header.site-header .uc-addfunds {
    display: none; }

  #header.site-header .uc-card-balance {
    display: block; }

  #header.site-header .uc-card-link {
    display: flex; } }
@media (max-width: 980px) {
  #header.site-header .main-nav {
    display: none; }

  #header.site-header .hdr-burger {
    display: flex; }

  #header.site-header .hdr-logo img {
    height: 30px;
    max-width: 172px; }

  #header.site-header .hdr-inner {
    gap: 14px;
    padding: 0 16px; }

  #header.site-header .uc-register {
    display: none; } }
@media (max-width: 420px) {
  #header.site-header .hdr-logo img {
    height: 24px;
    max-width: 138px; }

  #header.site-header .uc-login {
    padding: 0 14px;
    font-size: 12.5px; } }

/*# sourceMappingURL=siteHeader.css.map */
