:root {
  --bg-dark: #f0f2f5;
  --bg-panel: #1a1f2e;
  --bg-subpanel: #262b3a;
  --border-color: #323746;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-gray: #334155;
  --accent-gold: #f5a623;
  --accent-hover: #e1920f;
  --accent-red: rgba(177, 22, 29, 0.45);
}
* {
  box-sizing: border-box;
}
html, body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-gray);
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
.primary-sticky-header-wrapper {
  position: sticky;
  top: -1px;
  z-index: 100;
}
.primary-header {
  background-color: var(--bg-panel);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 24px;
}
.brand-wrapper {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.theme-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-identity {
  max-height: 40px;
  height: 40px;
  width: auto;
  display: block;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.2s;
}
.site-links {
  display: flex;
  gap: 24px;
}
.site-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.15s;
  padding: 4px 0;
}
.site-links a:hover,
.site-links a.brand-active {
  color: var(--text-main);
}
.site-links a.brand-active {
  border-bottom: 2px solid var(--accent-gold);
}
.auth-group {
  display: flex;
  gap: 12px;
  align-items: center;
}
.login-link-btn {
  color: #ffffff;
  border: 1.5px solid #3b4b66;
  background: transparent;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.15s, color 0.15s;
  text-transform: uppercase;
}
.login-link-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.btn-get-started {
  color: #ffffff;
  background-color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.15s, border-color 0.15s;
  text-transform: uppercase;
}
.btn-get-started:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.screen-mobile-controls-row {
  display: none;
}
.mobile-links-slider {
  display: none;
}
.lobby-intro {
  position: relative;
  padding: 40px 24px;
  background-color: #0c0201; 
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  aspect-ratio: auto;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.lobby-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.intro-container {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
}
.trust-tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.bonus-offer-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  max-width: 680px;
}
.ui-hero-offer-label {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 4px;
}
.local-hero-offer-value {
  color: var(--accent-gold);
  text-transform: uppercase;
}
.promo-summary {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 520px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.btn-activate-bonus {
  display: inline-block;
  color: #ffffff;
  background-color: var(--accent-gold);
  padding: 14px 38px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.2s, background-color 0.15s;
}
.btn-activate-bonus:hover {
  transform: translateY(-2px);
  background-color: var(--accent-hover);
}
.games-panel {
  padding: 24px 24px;
  background-color: var(--bg-dark);
}
.web-section-container {
  max-width: 1260px;
  margin: 0 auto;
}
.main-slots-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.view-slots-toolbar-left {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none; 
}
.view-slots-toolbar-left::-webkit-scrollbar {
  display: none; 
}
.layout-toolbar-btn {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.layout-toolbar-btn:hover {
  color: var(--accent-gold);
}
.layout-toolbar-btn.brand-active {
  background-color: var(--border-color);
  color: var(--text-main);
}
.web-slots-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.view-toolbar-dropdown {
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: var(--bg-subpanel);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.2s;
}
.view-toolbar-dropdown:hover {
  border-color: var(--accent-gold);
}
.view-toolbar-dropdown .app-caret {
  font-size: 10px;
  color: var(--accent-gold);
}
.local-toolbar-search {
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background-color: var(--bg-subpanel);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}
.local-toolbar-search:hover {
  border-color: var(--accent-gold);
}
@media (max-width: 768px) {
  .main-slots-toolbar {
    padding: 8px;
  }
  .web-slots-toolbar-right {
    display: none; 
  }
}
.lobby-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.slot-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.portal-slot-img-wrapper {
  aspect-ratio: 2/3;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid var(--border-color);
  transition: transform 0.2s, border-color 0.2s;
}
.slot-block:hover .portal-slot-img-wrapper {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}
.content-slot-char {
  font-size: 44px;
  user-select: none;
}
.ui-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 22, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.slot-block:hover .ui-play-overlay {
  opacity: 1;
}
.local-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(7, 12, 22, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}
.content-slot-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.custom-load-more-wrapper {
  margin-top: 32px;
  text-align: center;
}
.btn-show-next {
  display: inline-block;
  color: #ffffff;
  background-color: transparent;
  border: 1.5px solid var(--accent-gold);
  padding: 16px 60px;
  min-width: 280px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-show-next:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
}
.article-inner {
  max-width: 1260px;
  margin: 12px auto 60px;
  padding: 0 24px;
}
.article-inner h1,
.article-inner h2,
.article-inner h3 {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 16px;
}
.article-inner h1 {
  font-size: 26px;
  border-bottom: 2.5px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 28px;
  margin-top: 20px;
}
.article-inner h2 {
  font-size: 19px;
}
.article-inner h3 {
  font-size: 15px;
}
.article-inner p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
  margin: 0 0 18px;
}
.article-inner ul,
.article-inner ol {
  margin: 0 0 20px;
  padding: 0;
}
.article-inner ul {
  list-style: none;
}
.article-inner ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}
.article-inner ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 6px var(--accent-gold);
}
.article-inner ol {
  list-style: none;
  counter-reset: custom-ol-counter;
}
.article-inner ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  counter-increment: custom-ol-counter;
}
.article-inner ol li::before {
  content: counter(custom-ol-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-weight: 700;
}
.article-inner li strong {
  color: var(--text-main);
}
.article-inner table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.article-inner th,
.article-inner td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
}
.article-inner th {
  background-color: var(--bg-subpanel);
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
}
.article-inner tr:last-child td {
  border-bottom: 0;
}
.article-inner td:first-child {
  color: var(--text-main);
  font-weight: 600;
  width: 32%;
}
.article-inner td:last-child {
  color: var(--text-gray);
}
.layout-faq-item {
  background-color: var(--bg-subpanel);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.web-faq-summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.web-faq-summary::-webkit-details-marker {
  display: none;
}
.local-faq-icon::after {
  content: "+";
  color: #4da6ff;
  font-size: 20px;
  font-weight: 800;
}
.layout-faq-item[open] .local-faq-icon::after {
  content: "−";
}
.layout-faq-item[open] .web-faq-summary {
  background-color: var(--bg-subpanel);
}
.local-faq-content {
  padding: 0 20px 20px 20px;
  background-color: var(--bg-subpanel);
}
.local-faq-content p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}
.local-faq-content p:last-child {
  margin-bottom: 0;
}
.lower-panel {
  background-color: var(--bg-panel);
  padding: 48px 24px 24px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-gray);
}
.footer-menu-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr 1.5fr;
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto 40px;
}
.local-footer-col {
  display: flex;
  flex-direction: column;
}
.footer-brand-summary {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 13px;
  margin: 0;
}
.ui-footer-heading {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px;
}
.footer-anchor-links, .page-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-anchor-links li, .page-footer-contact li {
  margin-bottom: 12px;
}
.footer-anchor-links a, .page-footer-contact a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-anchor-links a:hover, .page-footer-contact a:hover {
  color: var(--accent-gold);
}
.page-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.local-contact-icon {
  color: var(--accent-gold);
  display: flex;
}
.content-footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-muted);
  max-width: 1260px;
  margin: 0 auto;
}
.content-footer-bottom p {
  margin: 0;
}
@media (max-width: 768px) {
  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
  }
  .brand-wrapper {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .primary-header {
    padding: 12px 12px;
  }
  .theme-header-left {
    width: auto;
    justify-content: flex-start;
    position: static;
    gap: 0;
    order: 1;
    min-width: 0;
    flex-shrink: 1;
  }
  .mobile-toggle {
    display: flex;
    position: static;
    transform: none;
    order: 3;
    flex-shrink: 0;
  }
  .site-links {
    display: none;
  }
  .auth-group {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
    flex-shrink: 0;
    margin-left: auto;
  }
  .auth-group .login-link-btn,
  .auth-group .btn-get-started {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 4px;
  }
  .theme-header-left .portal-logo-link {
    order: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
  }
  .brand-identity {
    max-width: 100%;
    height: 32px;
    max-height: 32px;
    object-fit: contain;
  }
  @media (max-width: 380px) {
    .primary-header {
      padding: 10px 10px;
    }
    .auth-group {
      gap: 4px;
    }
    .auth-group .login-link-btn,
    .auth-group .btn-get-started {
      padding: 5px 8px;
      font-size: 11px;
      border-radius: 4px;
    }
    .brand-identity {
      height: 32px;
      max-height: 32px;
    }
    .mobile-toggle {
      width: 18px;
      height: 14px;
    }
  }
  .screen-mobile-controls-row {
    display: none;
  }
  .ui-btn-login-mobile {
    display: block;
    text-align: center;
    color: var(--text-main);
    border: 1.5px solid #3b4b66;
    background: transparent;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
  }
  .brand-btn-start-mobile {
    display: block;
    text-align: center;
    color: #ffffff;
    background-color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
  }
  .mobile-links-slider {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: var(--bg-subpanel);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 12px;
    margin-top: -1px;
  }
  .mobile-links-slider::-webkit-scrollbar {
    display: none;
  }
  .mobile-links-slider a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .mobile-links-slider a .brand-icon {
    font-size: 11px;
    color: var(--accent-gold);
  }
  .lobby-intro {
    padding: 50px 16px;
    min-height: auto;
    text-align: center;
    background-position: center center;
    background-size: cover;
    aspect-ratio: auto;
  }
  .lobby-intro::before {
    background: rgba(0, 0, 0, 0.6);
  }
  .intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bonus-offer-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .ui-hero-offer-label {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .promo-summary {
    font-size: 13px;
    margin: 0 auto 20px;
  }
  .btn-activate-bonus {
    padding: 12px 30px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
  }
  .lobby-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .lobby-grid > .slot-block:nth-child(3n+1):last-child {
    display: none;
  }
  .lobby-grid > .slot-block:nth-child(3n+1):nth-last-child(2),
  .lobby-grid > .slot-block:nth-child(3n+1):nth-last-child(2) ~ .slot-block {
    display: none;
  }
  .content-slot-char {
    font-size: 24px;
  }
  .article-inner h1 {
    font-size: 20px;
    margin-top: 10px;
  }
  .article-inner h2 {
    font-size: 16px;
  }
  .article-inner table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article-inner th, 
  .article-inner td {
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .lower-panel {
    padding: 32px 16px 20px;
  }
  .footer-menu-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .layout-footer-brand {
    text-align: left;
    align-items: flex-start;
  }
  .layout-footer-brand img {
    max-width: 110px;
  }
  .article-inner p,
  .article-inner ul li,
  .article-inner ol li,
  .web-faq-summary,
  .local-faq-content p {
    font-size: 14px;
  }
}
:root { --cta-text-color: #ffffff; }


/* High contrast text overrides for dark panels on light background */
.shell-action-header, .shell-action-header *, .custom-alert-dialog, .custom-alert-dialog *, .ui-app-footer, .ui-app-footer *, .layout-app-header, .layout-app-header *, .portal-backdrop-overlay, .portal-backdrop-overlay *, .public-banner-box, .public-banner-box *, .primary-banner-content, .primary-banner-content *, .shell-banner-inner, .shell-banner-inner *, .primary-bonus-header, .primary-bonus-header *, .shell-bottom-bar, .shell-bottom-bar *, .screen-bottom-footer, .screen-bottom-footer *, .main-bottom-menu-bar, .main-bottom-menu-bar *, .shell-brand-bar, .shell-brand-bar *, .main-brand-footer, .main-brand-footer *, .content-brand-hero, .content-brand-hero *, .local-brand-wrapper, .local-brand-wrapper *, .main-branding-container, .main-branding-container *, .app-branding-header, .app-branding-header *, .main-curtain-overlay, .main-curtain-overlay *, .shell-curtain-shadow, .shell-curtain-shadow *, .content-date-status-bar, .content-date-status-bar *, .shell-dialog-backdrop, .shell-dialog-backdrop *, .global-dialog-box, .global-dialog-box *, .ui-dialog-card, .ui-dialog-card *, .app-dialog-dimmer, .app-dialog-dimmer *, .primary-dialog-panel, .primary-dialog-panel *, .page-dialog-shell, .page-dialog-shell *, .layout-dialog-wrapper, .layout-dialog-wrapper *, .ui-dimmer-screen, .ui-dimmer-screen *, .local-faq-content, .local-faq-content *, .layout-faq-item, .layout-faq-item *, .web-faq-summary, .web-faq-summary *, .global-feature-frame, .global-feature-frame *, .ui-first-view, .ui-first-view *, .main-foot-section, .main-foot-section *, .ui-footer, .ui-footer *, .shell-footer-area, .shell-footer-area *, .custom-footer-area-container, .custom-footer-area-container *, .shell-footer-base, .shell-footer-base *, .site-footer-block, .site-footer-block *, .page-footer-body, .page-footer-body *, .view-footer-bottom-container, .view-footer-bottom-container *, .public-footer-box, .public-footer-box *, .theme-footer-box-container, .theme-footer-box-container *, .footer-holder-wrap, .footer-holder-wrap *, .main-footer-container-root, .main-footer-container-root *, .global-footer-content, .global-footer-content *, .brand-footer-content-wrap, .brand-footer-content-wrap *, .view-footer-flex, .view-footer-flex *, .ui-footer-grid-container, .ui-footer-grid-container *, .brand-footer-holder, .brand-footer-holder *, .site-footer-holder-wrap, .site-footer-holder-wrap *, .core-footer-inner, .core-footer-inner *, .custom-footer-inner-wrapper, .custom-footer-inner-wrapper *, .page-footer-layout-box, .page-footer-layout-box *, .app-footer-main-box, .app-footer-main-box *, .core-footer-navigation, .core-footer-navigation *, .portal-footer-panel, .portal-footer-panel *, .site-footer-row, .site-footer-row *, .ui-footer-section, .ui-footer-section *, .content-footer-shell, .content-footer-shell *, .local-footer-shell-container, .local-footer-shell-container *, .local-footer-wrap, .local-footer-wrap *, .screen-footer-wrap-box, .screen-footer-wrap-box *, .public-footer-wrapper, .public-footer-wrapper *, .site-gateway-banner, .site-gateway-banner *, .site-glassmorphism-bg, .site-glassmorphism-bg *, .web-global-footer, .web-global-footer *, .main-global-header, .main-global-header *, .content-head-section, .content-head-section *, .site-head-wrapper, .site-head-wrapper *, .public-header, .public-header *, .custom-header-area, .custom-header-area *, .brand-wrapper, .brand-wrapper *, .site-header-content, .site-header-content *, .ui-header-flex, .ui-header-flex *, .core-header-holder, .core-header-holder *, .custom-header-inner, .custom-header-inner *, .content-header-navigation, .content-header-navigation *, .web-header-shell, .web-header-shell *, .web-header-wrap, .web-header-wrap *, .shell-headline-panel, .shell-headline-panel *, .ui-hero-box, .ui-hero-box *, .public-hero-card, .public-hero-card *, .intro-container, .intro-container *, .screen-hero-content, .screen-hero-content *, .theme-hero-grid, .theme-hero-grid *, .global-hero-holder, .global-hero-holder *, .portal-hero-inner, .portal-hero-inner *, .content-hero-panel, .content-hero-panel *, .lobby-intro, .lobby-intro *, .view-hero-shell, .view-hero-shell *, .shell-hero-wrapper, .shell-hero-wrapper *, .public-info-card, .public-info-card *, .shell-info-modal, .shell-info-modal *, .layout-intro-block, .layout-intro-block *, .view-intro-container, .view-intro-container *, .main-intro-wrapper, .main-intro-wrapper *, .screen-last-modified-panel, .screen-last-modified-panel *, .content-latest-update-box, .content-latest-update-box *, .main-lead-banner, .main-lead-banner *, .site-lightbox-box, .site-lightbox-box *, .local-lightbox-card, .local-lightbox-card *, .portal-lightbox-overlay, .portal-lightbox-overlay *, .portal-lobby-intro, .portal-lobby-intro *, .page-lower-panel, .page-lower-panel *, .portal-main-footer, .portal-main-footer *, .page-main-header, .page-main-header *, .shell-main-showcase, .shell-main-showcase *, .ui-menu-container, .ui-menu-container *, .site-menu-header, .site-menu-header *, .local-modal-box, .local-modal-box *, .web-modal-card, .web-modal-card *, .shell-modal-container, .shell-modal-container *, .main-modal-curtain, .main-modal-curtain *, .main-modal-dimmer, .main-modal-dimmer *, .view-modal-frame, .view-modal-frame *, .screen-modal-panel, .screen-modal-panel *, .portal-modal-shadow, .portal-modal-shadow *, .site-modal-wrapper-bg, .site-modal-wrapper-bg *, .view-modified-date, .view-modified-date *, .ui-nav-header, .ui-nav-header *, .site-nav-inner, .site-nav-inner *, .ui-nav-wrap, .ui-nav-wrap *, .main-navbar-box, .main-navbar-box *, .portal-navbar-container, .portal-navbar-container *, .site-navbar-inner, .site-navbar-inner *, .global-navigation-box, .global-navigation-box *, .web-overlay-backdrop, .web-overlay-backdrop *, .page-overlay-curtain, .page-overlay-curtain *, .custom-overlay-shield, .custom-overlay-shield *, .primary-page-freshness, .primary-page-freshness *, .primary-phone-submenu-bar, .primary-phone-submenu-bar *, .theme-popup-card, .theme-popup-card *, .global-popup-dimmer, .global-popup-dimmer *, .shell-popup-frame, .shell-popup-frame *, .custom-popup-shadow, .custom-popup-shadow *, .global-popup-window, .global-popup-window *, .core-popup-wrapper, .core-popup-wrapper *, .web-portal-header, .web-portal-header *, .screen-portal-intro, .screen-portal-intro *, .portal-primary-header, .portal-primary-header *, .core-prime-header, .core-prime-header *, .portal-promo-banner, .portal-promo-banner *, .public-promo-container, .public-promo-container *, .site-promo-content, .site-promo-content *, .content-promo-hero, .content-promo-hero *, .shell-promo-popup, .shell-promo-popup *, .local-promo-wrapper, .local-promo-wrapper *, .ui-refresh-stamp, .ui-refresh-stamp *, .custom-revision-tag, .custom-revision-tag *, .public-screen-overlay, .public-screen-overlay *, .screen-shading-overlay, .screen-shading-overlay *, .primary-shadow-backdrop, .primary-shadow-backdrop *, .lower-panel, .lower-panel *, .primary-header, .primary-header *, .screen-site-info-footer, .screen-site-info-footer *, .web-site-navigation, .web-site-navigation *, .main-slots-toolbar, .main-slots-toolbar *, .primary-sticky-header-wrapper, .primary-sticky-header-wrapper *, .main-system-footer, .main-system-footer *, .core-system-header, .core-system-header *, .page-timestamp-marker, .page-timestamp-marker *, .portal-top-bar, .portal-top-bar *, .web-top-bar-container, .web-top-bar-container *, .public-top-box, .public-top-box *, .shell-top-grid, .shell-top-grid *, .web-top-menu-bar, .web-top-menu-bar *, .core-top-nav-bar, .core-top-nav-bar *, .content-top-panel, .content-top-panel *, .page-top-promotion, .page-top-promotion *, .content-top-row, .content-top-row *, .main-top-wrapper, .main-top-wrapper *, .portal-update-indicator, .portal-update-indicator *, .screen-update-notify, .screen-update-notify *, .primary-update-ribbon, .primary-update-ribbon *, .theme-updated-info, .theme-updated-info *, .site-upper-nav, .site-upper-nav *, .local-welcome-area, .local-welcome-area *, .web-welcome-billboard, .web-welcome-billboard *, .brand-welcome-box, .brand-welcome-box *, .public-welcome-content, .public-welcome-content *, .site-welcome-holder, .site-welcome-holder *, .app-welcome-stage, .app-welcome-stage *, .page-welcome-wrapper, .page-welcome-wrapper *, header, header *, footer, footer *, table, table *, th, th *, td, td *, .article-inner table, .article-inner table *, .core-article-wrapper table, .core-article-wrapper table *, .primary-article-holder table, .primary-article-holder table * {
  --text-main: #ffffff !important;
  --text-gray: #cbd5e1 !important;
  --text-muted: #8e9aa8 !important;
}
.shell-action-header, .shell-action-header p, .shell-action-header span, .shell-action-header li, .shell-action-header td, .shell-action-header th, .shell-action-header strong, .custom-alert-dialog, .custom-alert-dialog p, .custom-alert-dialog span, .custom-alert-dialog li, .custom-alert-dialog td, .custom-alert-dialog th, .custom-alert-dialog strong, .ui-app-footer, .ui-app-footer p, .ui-app-footer span, .ui-app-footer li, .ui-app-footer td, .ui-app-footer th, .ui-app-footer strong, .layout-app-header, .layout-app-header p, .layout-app-header span, .layout-app-header li, .layout-app-header td, .layout-app-header th, .layout-app-header strong, .portal-backdrop-overlay, .portal-backdrop-overlay p, .portal-backdrop-overlay span, .portal-backdrop-overlay li, .portal-backdrop-overlay td, .portal-backdrop-overlay th, .portal-backdrop-overlay strong, .public-banner-box, .public-banner-box p, .public-banner-box span, .public-banner-box li, .public-banner-box td, .public-banner-box th, .public-banner-box strong, .primary-banner-content, .primary-banner-content p, .primary-banner-content span, .primary-banner-content li, .primary-banner-content td, .primary-banner-content th, .primary-banner-content strong, .shell-banner-inner, .shell-banner-inner p, .shell-banner-inner span, .shell-banner-inner li, .shell-banner-inner td, .shell-banner-inner th, .shell-banner-inner strong, .primary-bonus-header, .primary-bonus-header p, .primary-bonus-header span, .primary-bonus-header li, .primary-bonus-header td, .primary-bonus-header th, .primary-bonus-header strong, .shell-bottom-bar, .shell-bottom-bar p, .shell-bottom-bar span, .shell-bottom-bar li, .shell-bottom-bar td, .shell-bottom-bar th, .shell-bottom-bar strong, .screen-bottom-footer, .screen-bottom-footer p, .screen-bottom-footer span, .screen-bottom-footer li, .screen-bottom-footer td, .screen-bottom-footer th, .screen-bottom-footer strong, .main-bottom-menu-bar, .main-bottom-menu-bar p, .main-bottom-menu-bar span, .main-bottom-menu-bar li, .main-bottom-menu-bar td, .main-bottom-menu-bar th, .main-bottom-menu-bar strong, .shell-brand-bar, .shell-brand-bar p, .shell-brand-bar span, .shell-brand-bar li, .shell-brand-bar td, .shell-brand-bar th, .shell-brand-bar strong, .main-brand-footer, .main-brand-footer p, .main-brand-footer span, .main-brand-footer li, .main-brand-footer td, .main-brand-footer th, .main-brand-footer strong, .content-brand-hero, .content-brand-hero p, .content-brand-hero span, .content-brand-hero li, .content-brand-hero td, .content-brand-hero th, .content-brand-hero strong, .local-brand-wrapper, .local-brand-wrapper p, .local-brand-wrapper span, .local-brand-wrapper li, .local-brand-wrapper td, .local-brand-wrapper th, .local-brand-wrapper strong, .main-branding-container, .main-branding-container p, .main-branding-container span, .main-branding-container li, .main-branding-container td, .main-branding-container th, .main-branding-container strong, .app-branding-header, .app-branding-header p, .app-branding-header span, .app-branding-header li, .app-branding-header td, .app-branding-header th, .app-branding-header strong, .main-curtain-overlay, .main-curtain-overlay p, .main-curtain-overlay span, .main-curtain-overlay li, .main-curtain-overlay td, .main-curtain-overlay th, .main-curtain-overlay strong, .shell-curtain-shadow, .shell-curtain-shadow p, .shell-curtain-shadow span, .shell-curtain-shadow li, .shell-curtain-shadow td, .shell-curtain-shadow th, .shell-curtain-shadow strong, .content-date-status-bar, .content-date-status-bar p, .content-date-status-bar span, .content-date-status-bar li, .content-date-status-bar td, .content-date-status-bar th, .content-date-status-bar strong, .shell-dialog-backdrop, .shell-dialog-backdrop p, .shell-dialog-backdrop span, .shell-dialog-backdrop li, .shell-dialog-backdrop td, .shell-dialog-backdrop th, .shell-dialog-backdrop strong, .global-dialog-box, .global-dialog-box p, .global-dialog-box span, .global-dialog-box li, .global-dialog-box td, .global-dialog-box th, .global-dialog-box strong, .ui-dialog-card, .ui-dialog-card p, .ui-dialog-card span, .ui-dialog-card li, .ui-dialog-card td, .ui-dialog-card th, .ui-dialog-card strong, .app-dialog-dimmer, .app-dialog-dimmer p, .app-dialog-dimmer span, .app-dialog-dimmer li, .app-dialog-dimmer td, .app-dialog-dimmer th, .app-dialog-dimmer strong, .primary-dialog-panel, .primary-dialog-panel p, .primary-dialog-panel span, .primary-dialog-panel li, .primary-dialog-panel td, .primary-dialog-panel th, .primary-dialog-panel strong, .page-dialog-shell, .page-dialog-shell p, .page-dialog-shell span, .page-dialog-shell li, .page-dialog-shell td, .page-dialog-shell th, .page-dialog-shell strong, .layout-dialog-wrapper, .layout-dialog-wrapper p, .layout-dialog-wrapper span, .layout-dialog-wrapper li, .layout-dialog-wrapper td, .layout-dialog-wrapper th, .layout-dialog-wrapper strong, .ui-dimmer-screen, .ui-dimmer-screen p, .ui-dimmer-screen span, .ui-dimmer-screen li, .ui-dimmer-screen td, .ui-dimmer-screen th, .ui-dimmer-screen strong, .local-faq-content, .local-faq-content p, .local-faq-content span, .local-faq-content li, .local-faq-content td, .local-faq-content th, .local-faq-content strong, .layout-faq-item, .layout-faq-item p, .layout-faq-item span, .layout-faq-item li, .layout-faq-item td, .layout-faq-item th, .layout-faq-item strong, .web-faq-summary, .web-faq-summary p, .web-faq-summary span, .web-faq-summary li, .web-faq-summary td, .web-faq-summary th, .web-faq-summary strong, .global-feature-frame, .global-feature-frame p, .global-feature-frame span, .global-feature-frame li, .global-feature-frame td, .global-feature-frame th, .global-feature-frame strong, .ui-first-view, .ui-first-view p, .ui-first-view span, .ui-first-view li, .ui-first-view td, .ui-first-view th, .ui-first-view strong, .main-foot-section, .main-foot-section p, .main-foot-section span, .main-foot-section li, .main-foot-section td, .main-foot-section th, .main-foot-section strong, .ui-footer, .ui-footer p, .ui-footer span, .ui-footer li, .ui-footer td, .ui-footer th, .ui-footer strong, .shell-footer-area, .shell-footer-area p, .shell-footer-area span, .shell-footer-area li, .shell-footer-area td, .shell-footer-area th, .shell-footer-area strong, .custom-footer-area-container, .custom-footer-area-container p, .custom-footer-area-container span, .custom-footer-area-container li, .custom-footer-area-container td, .custom-footer-area-container th, .custom-footer-area-container strong, .shell-footer-base, .shell-footer-base p, .shell-footer-base span, .shell-footer-base li, .shell-footer-base td, .shell-footer-base th, .shell-footer-base strong, .site-footer-block, .site-footer-block p, .site-footer-block span, .site-footer-block li, .site-footer-block td, .site-footer-block th, .site-footer-block strong, .page-footer-body, .page-footer-body p, .page-footer-body span, .page-footer-body li, .page-footer-body td, .page-footer-body th, .page-footer-body strong, .view-footer-bottom-container, .view-footer-bottom-container p, .view-footer-bottom-container span, .view-footer-bottom-container li, .view-footer-bottom-container td, .view-footer-bottom-container th, .view-footer-bottom-container strong, .public-footer-box, .public-footer-box p, .public-footer-box span, .public-footer-box li, .public-footer-box td, .public-footer-box th, .public-footer-box strong, .theme-footer-box-container, .theme-footer-box-container p, .theme-footer-box-container span, .theme-footer-box-container li, .theme-footer-box-container td, .theme-footer-box-container th, .theme-footer-box-container strong, .footer-holder-wrap, .footer-holder-wrap p, .footer-holder-wrap span, .footer-holder-wrap li, .footer-holder-wrap td, .footer-holder-wrap th, .footer-holder-wrap strong, .main-footer-container-root, .main-footer-container-root p, .main-footer-container-root span, .main-footer-container-root li, .main-footer-container-root td, .main-footer-container-root th, .main-footer-container-root strong, .global-footer-content, .global-footer-content p, .global-footer-content span, .global-footer-content li, .global-footer-content td, .global-footer-content th, .global-footer-content strong, .brand-footer-content-wrap, .brand-footer-content-wrap p, .brand-footer-content-wrap span, .brand-footer-content-wrap li, .brand-footer-content-wrap td, .brand-footer-content-wrap th, .brand-footer-content-wrap strong, .view-footer-flex, .view-footer-flex p, .view-footer-flex span, .view-footer-flex li, .view-footer-flex td, .view-footer-flex th, .view-footer-flex strong, .ui-footer-grid-container, .ui-footer-grid-container p, .ui-footer-grid-container span, .ui-footer-grid-container li, .ui-footer-grid-container td, .ui-footer-grid-container th, .ui-footer-grid-container strong, .brand-footer-holder, .brand-footer-holder p, .brand-footer-holder span, .brand-footer-holder li, .brand-footer-holder td, .brand-footer-holder th, .brand-footer-holder strong, .site-footer-holder-wrap, .site-footer-holder-wrap p, .site-footer-holder-wrap span, .site-footer-holder-wrap li, .site-footer-holder-wrap td, .site-footer-holder-wrap th, .site-footer-holder-wrap strong, .core-footer-inner, .core-footer-inner p, .core-footer-inner span, .core-footer-inner li, .core-footer-inner td, .core-footer-inner th, .core-footer-inner strong, .custom-footer-inner-wrapper, .custom-footer-inner-wrapper p, .custom-footer-inner-wrapper span, .custom-footer-inner-wrapper li, .custom-footer-inner-wrapper td, .custom-footer-inner-wrapper th, .custom-footer-inner-wrapper strong, .page-footer-layout-box, .page-footer-layout-box p, .page-footer-layout-box span, .page-footer-layout-box li, .page-footer-layout-box td, .page-footer-layout-box th, .page-footer-layout-box strong, .app-footer-main-box, .app-footer-main-box p, .app-footer-main-box span, .app-footer-main-box li, .app-footer-main-box td, .app-footer-main-box th, .app-footer-main-box strong, .core-footer-navigation, .core-footer-navigation p, .core-footer-navigation span, .core-footer-navigation li, .core-footer-navigation td, .core-footer-navigation th, .core-footer-navigation strong, .portal-footer-panel, .portal-footer-panel p, .portal-footer-panel span, .portal-footer-panel li, .portal-footer-panel td, .portal-footer-panel th, .portal-footer-panel strong, .site-footer-row, .site-footer-row p, .site-footer-row span, .site-footer-row li, .site-footer-row td, .site-footer-row th, .site-footer-row strong, .ui-footer-section, .ui-footer-section p, .ui-footer-section span, .ui-footer-section li, .ui-footer-section td, .ui-footer-section th, .ui-footer-section strong, .content-footer-shell, .content-footer-shell p, .content-footer-shell span, .content-footer-shell li, .content-footer-shell td, .content-footer-shell th, .content-footer-shell strong, .local-footer-shell-container, .local-footer-shell-container p, .local-footer-shell-container span, .local-footer-shell-container li, .local-footer-shell-container td, .local-footer-shell-container th, .local-footer-shell-container strong, .local-footer-wrap, .local-footer-wrap p, .local-footer-wrap span, .local-footer-wrap li, .local-footer-wrap td, .local-footer-wrap th, .local-footer-wrap strong, .screen-footer-wrap-box, .screen-footer-wrap-box p, .screen-footer-wrap-box span, .screen-footer-wrap-box li, .screen-footer-wrap-box td, .screen-footer-wrap-box th, .screen-footer-wrap-box strong, .public-footer-wrapper, .public-footer-wrapper p, .public-footer-wrapper span, .public-footer-wrapper li, .public-footer-wrapper td, .public-footer-wrapper th, .public-footer-wrapper strong, .site-gateway-banner, .site-gateway-banner p, .site-gateway-banner span, .site-gateway-banner li, .site-gateway-banner td, .site-gateway-banner th, .site-gateway-banner strong, .site-glassmorphism-bg, .site-glassmorphism-bg p, .site-glassmorphism-bg span, .site-glassmorphism-bg li, .site-glassmorphism-bg td, .site-glassmorphism-bg th, .site-glassmorphism-bg strong, .web-global-footer, .web-global-footer p, .web-global-footer span, .web-global-footer li, .web-global-footer td, .web-global-footer th, .web-global-footer strong, .main-global-header, .main-global-header p, .main-global-header span, .main-global-header li, .main-global-header td, .main-global-header th, .main-global-header strong, .content-head-section, .content-head-section p, .content-head-section span, .content-head-section li, .content-head-section td, .content-head-section th, .content-head-section strong, .site-head-wrapper, .site-head-wrapper p, .site-head-wrapper span, .site-head-wrapper li, .site-head-wrapper td, .site-head-wrapper th, .site-head-wrapper strong, .public-header, .public-header p, .public-header span, .public-header li, .public-header td, .public-header th, .public-header strong, .custom-header-area, .custom-header-area p, .custom-header-area span, .custom-header-area li, .custom-header-area td, .custom-header-area th, .custom-header-area strong, .brand-wrapper, .brand-wrapper p, .brand-wrapper span, .brand-wrapper li, .brand-wrapper td, .brand-wrapper th, .brand-wrapper strong, .site-header-content, .site-header-content p, .site-header-content span, .site-header-content li, .site-header-content td, .site-header-content th, .site-header-content strong, .ui-header-flex, .ui-header-flex p, .ui-header-flex span, .ui-header-flex li, .ui-header-flex td, .ui-header-flex th, .ui-header-flex strong, .core-header-holder, .core-header-holder p, .core-header-holder span, .core-header-holder li, .core-header-holder td, .core-header-holder th, .core-header-holder strong, .custom-header-inner, .custom-header-inner p, .custom-header-inner span, .custom-header-inner li, .custom-header-inner td, .custom-header-inner th, .custom-header-inner strong, .content-header-navigation, .content-header-navigation p, .content-header-navigation span, .content-header-navigation li, .content-header-navigation td, .content-header-navigation th, .content-header-navigation strong, .web-header-shell, .web-header-shell p, .web-header-shell span, .web-header-shell li, .web-header-shell td, .web-header-shell th, .web-header-shell strong, .web-header-wrap, .web-header-wrap p, .web-header-wrap span, .web-header-wrap li, .web-header-wrap td, .web-header-wrap th, .web-header-wrap strong, .shell-headline-panel, .shell-headline-panel p, .shell-headline-panel span, .shell-headline-panel li, .shell-headline-panel td, .shell-headline-panel th, .shell-headline-panel strong, .ui-hero-box, .ui-hero-box p, .ui-hero-box span, .ui-hero-box li, .ui-hero-box td, .ui-hero-box th, .ui-hero-box strong, .public-hero-card, .public-hero-card p, .public-hero-card span, .public-hero-card li, .public-hero-card td, .public-hero-card th, .public-hero-card strong, .intro-container, .intro-container p, .intro-container span, .intro-container li, .intro-container td, .intro-container th, .intro-container strong, .screen-hero-content, .screen-hero-content p, .screen-hero-content span, .screen-hero-content li, .screen-hero-content td, .screen-hero-content th, .screen-hero-content strong, .theme-hero-grid, .theme-hero-grid p, .theme-hero-grid span, .theme-hero-grid li, .theme-hero-grid td, .theme-hero-grid th, .theme-hero-grid strong, .global-hero-holder, .global-hero-holder p, .global-hero-holder span, .global-hero-holder li, .global-hero-holder td, .global-hero-holder th, .global-hero-holder strong, .portal-hero-inner, .portal-hero-inner p, .portal-hero-inner span, .portal-hero-inner li, .portal-hero-inner td, .portal-hero-inner th, .portal-hero-inner strong, .content-hero-panel, .content-hero-panel p, .content-hero-panel span, .content-hero-panel li, .content-hero-panel td, .content-hero-panel th, .content-hero-panel strong, .lobby-intro, .lobby-intro p, .lobby-intro span, .lobby-intro li, .lobby-intro td, .lobby-intro th, .lobby-intro strong, .view-hero-shell, .view-hero-shell p, .view-hero-shell span, .view-hero-shell li, .view-hero-shell td, .view-hero-shell th, .view-hero-shell strong, .shell-hero-wrapper, .shell-hero-wrapper p, .shell-hero-wrapper span, .shell-hero-wrapper li, .shell-hero-wrapper td, .shell-hero-wrapper th, .shell-hero-wrapper strong, .public-info-card, .public-info-card p, .public-info-card span, .public-info-card li, .public-info-card td, .public-info-card th, .public-info-card strong, .shell-info-modal, .shell-info-modal p, .shell-info-modal span, .shell-info-modal li, .shell-info-modal td, .shell-info-modal th, .shell-info-modal strong, .layout-intro-block, .layout-intro-block p, .layout-intro-block span, .layout-intro-block li, .layout-intro-block td, .layout-intro-block th, .layout-intro-block strong, .view-intro-container, .view-intro-container p, .view-intro-container span, .view-intro-container li, .view-intro-container td, .view-intro-container th, .view-intro-container strong, .main-intro-wrapper, .main-intro-wrapper p, .main-intro-wrapper span, .main-intro-wrapper li, .main-intro-wrapper td, .main-intro-wrapper th, .main-intro-wrapper strong, .screen-last-modified-panel, .screen-last-modified-panel p, .screen-last-modified-panel span, .screen-last-modified-panel li, .screen-last-modified-panel td, .screen-last-modified-panel th, .screen-last-modified-panel strong, .content-latest-update-box, .content-latest-update-box p, .content-latest-update-box span, .content-latest-update-box li, .content-latest-update-box td, .content-latest-update-box th, .content-latest-update-box strong, .main-lead-banner, .main-lead-banner p, .main-lead-banner span, .main-lead-banner li, .main-lead-banner td, .main-lead-banner th, .main-lead-banner strong, .site-lightbox-box, .site-lightbox-box p, .site-lightbox-box span, .site-lightbox-box li, .site-lightbox-box td, .site-lightbox-box th, .site-lightbox-box strong, .local-lightbox-card, .local-lightbox-card p, .local-lightbox-card span, .local-lightbox-card li, .local-lightbox-card td, .local-lightbox-card th, .local-lightbox-card strong, .portal-lightbox-overlay, .portal-lightbox-overlay p, .portal-lightbox-overlay span, .portal-lightbox-overlay li, .portal-lightbox-overlay td, .portal-lightbox-overlay th, .portal-lightbox-overlay strong, .portal-lobby-intro, .portal-lobby-intro p, .portal-lobby-intro span, .portal-lobby-intro li, .portal-lobby-intro td, .portal-lobby-intro th, .portal-lobby-intro strong, .page-lower-panel, .page-lower-panel p, .page-lower-panel span, .page-lower-panel li, .page-lower-panel td, .page-lower-panel th, .page-lower-panel strong, .portal-main-footer, .portal-main-footer p, .portal-main-footer span, .portal-main-footer li, .portal-main-footer td, .portal-main-footer th, .portal-main-footer strong, .page-main-header, .page-main-header p, .page-main-header span, .page-main-header li, .page-main-header td, .page-main-header th, .page-main-header strong, .shell-main-showcase, .shell-main-showcase p, .shell-main-showcase span, .shell-main-showcase li, .shell-main-showcase td, .shell-main-showcase th, .shell-main-showcase strong, .ui-menu-container, .ui-menu-container p, .ui-menu-container span, .ui-menu-container li, .ui-menu-container td, .ui-menu-container th, .ui-menu-container strong, .site-menu-header, .site-menu-header p, .site-menu-header span, .site-menu-header li, .site-menu-header td, .site-menu-header th, .site-menu-header strong, .local-modal-box, .local-modal-box p, .local-modal-box span, .local-modal-box li, .local-modal-box td, .local-modal-box th, .local-modal-box strong, .web-modal-card, .web-modal-card p, .web-modal-card span, .web-modal-card li, .web-modal-card td, .web-modal-card th, .web-modal-card strong, .shell-modal-container, .shell-modal-container p, .shell-modal-container span, .shell-modal-container li, .shell-modal-container td, .shell-modal-container th, .shell-modal-container strong, .main-modal-curtain, .main-modal-curtain p, .main-modal-curtain span, .main-modal-curtain li, .main-modal-curtain td, .main-modal-curtain th, .main-modal-curtain strong, .main-modal-dimmer, .main-modal-dimmer p, .main-modal-dimmer span, .main-modal-dimmer li, .main-modal-dimmer td, .main-modal-dimmer th, .main-modal-dimmer strong, .view-modal-frame, .view-modal-frame p, .view-modal-frame span, .view-modal-frame li, .view-modal-frame td, .view-modal-frame th, .view-modal-frame strong, .screen-modal-panel, .screen-modal-panel p, .screen-modal-panel span, .screen-modal-panel li, .screen-modal-panel td, .screen-modal-panel th, .screen-modal-panel strong, .portal-modal-shadow, .portal-modal-shadow p, .portal-modal-shadow span, .portal-modal-shadow li, .portal-modal-shadow td, .portal-modal-shadow th, .portal-modal-shadow strong, .site-modal-wrapper-bg, .site-modal-wrapper-bg p, .site-modal-wrapper-bg span, .site-modal-wrapper-bg li, .site-modal-wrapper-bg td, .site-modal-wrapper-bg th, .site-modal-wrapper-bg strong, .view-modified-date, .view-modified-date p, .view-modified-date span, .view-modified-date li, .view-modified-date td, .view-modified-date th, .view-modified-date strong, .ui-nav-header, .ui-nav-header p, .ui-nav-header span, .ui-nav-header li, .ui-nav-header td, .ui-nav-header th, .ui-nav-header strong, .site-nav-inner, .site-nav-inner p, .site-nav-inner span, .site-nav-inner li, .site-nav-inner td, .site-nav-inner th, .site-nav-inner strong, .ui-nav-wrap, .ui-nav-wrap p, .ui-nav-wrap span, .ui-nav-wrap li, .ui-nav-wrap td, .ui-nav-wrap th, .ui-nav-wrap strong, .main-navbar-box, .main-navbar-box p, .main-navbar-box span, .main-navbar-box li, .main-navbar-box td, .main-navbar-box th, .main-navbar-box strong, .portal-navbar-container, .portal-navbar-container p, .portal-navbar-container span, .portal-navbar-container li, .portal-navbar-container td, .portal-navbar-container th, .portal-navbar-container strong, .site-navbar-inner, .site-navbar-inner p, .site-navbar-inner span, .site-navbar-inner li, .site-navbar-inner td, .site-navbar-inner th, .site-navbar-inner strong, .global-navigation-box, .global-navigation-box p, .global-navigation-box span, .global-navigation-box li, .global-navigation-box td, .global-navigation-box th, .global-navigation-box strong, .web-overlay-backdrop, .web-overlay-backdrop p, .web-overlay-backdrop span, .web-overlay-backdrop li, .web-overlay-backdrop td, .web-overlay-backdrop th, .web-overlay-backdrop strong, .page-overlay-curtain, .page-overlay-curtain p, .page-overlay-curtain span, .page-overlay-curtain li, .page-overlay-curtain td, .page-overlay-curtain th, .page-overlay-curtain strong, .custom-overlay-shield, .custom-overlay-shield p, .custom-overlay-shield span, .custom-overlay-shield li, .custom-overlay-shield td, .custom-overlay-shield th, .custom-overlay-shield strong, .primary-page-freshness, .primary-page-freshness p, .primary-page-freshness span, .primary-page-freshness li, .primary-page-freshness td, .primary-page-freshness th, .primary-page-freshness strong, .primary-phone-submenu-bar, .primary-phone-submenu-bar p, .primary-phone-submenu-bar span, .primary-phone-submenu-bar li, .primary-phone-submenu-bar td, .primary-phone-submenu-bar th, .primary-phone-submenu-bar strong, .theme-popup-card, .theme-popup-card p, .theme-popup-card span, .theme-popup-card li, .theme-popup-card td, .theme-popup-card th, .theme-popup-card strong, .global-popup-dimmer, .global-popup-dimmer p, .global-popup-dimmer span, .global-popup-dimmer li, .global-popup-dimmer td, .global-popup-dimmer th, .global-popup-dimmer strong, .shell-popup-frame, .shell-popup-frame p, .shell-popup-frame span, .shell-popup-frame li, .shell-popup-frame td, .shell-popup-frame th, .shell-popup-frame strong, .custom-popup-shadow, .custom-popup-shadow p, .custom-popup-shadow span, .custom-popup-shadow li, .custom-popup-shadow td, .custom-popup-shadow th, .custom-popup-shadow strong, .global-popup-window, .global-popup-window p, .global-popup-window span, .global-popup-window li, .global-popup-window td, .global-popup-window th, .global-popup-window strong, .core-popup-wrapper, .core-popup-wrapper p, .core-popup-wrapper span, .core-popup-wrapper li, .core-popup-wrapper td, .core-popup-wrapper th, .core-popup-wrapper strong, .web-portal-header, .web-portal-header p, .web-portal-header span, .web-portal-header li, .web-portal-header td, .web-portal-header th, .web-portal-header strong, .screen-portal-intro, .screen-portal-intro p, .screen-portal-intro span, .screen-portal-intro li, .screen-portal-intro td, .screen-portal-intro th, .screen-portal-intro strong, .portal-primary-header, .portal-primary-header p, .portal-primary-header span, .portal-primary-header li, .portal-primary-header td, .portal-primary-header th, .portal-primary-header strong, .core-prime-header, .core-prime-header p, .core-prime-header span, .core-prime-header li, .core-prime-header td, .core-prime-header th, .core-prime-header strong, .portal-promo-banner, .portal-promo-banner p, .portal-promo-banner span, .portal-promo-banner li, .portal-promo-banner td, .portal-promo-banner th, .portal-promo-banner strong, .public-promo-container, .public-promo-container p, .public-promo-container span, .public-promo-container li, .public-promo-container td, .public-promo-container th, .public-promo-container strong, .site-promo-content, .site-promo-content p, .site-promo-content span, .site-promo-content li, .site-promo-content td, .site-promo-content th, .site-promo-content strong, .content-promo-hero, .content-promo-hero p, .content-promo-hero span, .content-promo-hero li, .content-promo-hero td, .content-promo-hero th, .content-promo-hero strong, .shell-promo-popup, .shell-promo-popup p, .shell-promo-popup span, .shell-promo-popup li, .shell-promo-popup td, .shell-promo-popup th, .shell-promo-popup strong, .local-promo-wrapper, .local-promo-wrapper p, .local-promo-wrapper span, .local-promo-wrapper li, .local-promo-wrapper td, .local-promo-wrapper th, .local-promo-wrapper strong, .ui-refresh-stamp, .ui-refresh-stamp p, .ui-refresh-stamp span, .ui-refresh-stamp li, .ui-refresh-stamp td, .ui-refresh-stamp th, .ui-refresh-stamp strong, .custom-revision-tag, .custom-revision-tag p, .custom-revision-tag span, .custom-revision-tag li, .custom-revision-tag td, .custom-revision-tag th, .custom-revision-tag strong, .public-screen-overlay, .public-screen-overlay p, .public-screen-overlay span, .public-screen-overlay li, .public-screen-overlay td, .public-screen-overlay th, .public-screen-overlay strong, .screen-shading-overlay, .screen-shading-overlay p, .screen-shading-overlay span, .screen-shading-overlay li, .screen-shading-overlay td, .screen-shading-overlay th, .screen-shading-overlay strong, .primary-shadow-backdrop, .primary-shadow-backdrop p, .primary-shadow-backdrop span, .primary-shadow-backdrop li, .primary-shadow-backdrop td, .primary-shadow-backdrop th, .primary-shadow-backdrop strong, .lower-panel, .lower-panel p, .lower-panel span, .lower-panel li, .lower-panel td, .lower-panel th, .lower-panel strong, .primary-header, .primary-header p, .primary-header span, .primary-header li, .primary-header td, .primary-header th, .primary-header strong, .screen-site-info-footer, .screen-site-info-footer p, .screen-site-info-footer span, .screen-site-info-footer li, .screen-site-info-footer td, .screen-site-info-footer th, .screen-site-info-footer strong, .web-site-navigation, .web-site-navigation p, .web-site-navigation span, .web-site-navigation li, .web-site-navigation td, .web-site-navigation th, .web-site-navigation strong, .main-slots-toolbar, .main-slots-toolbar p, .main-slots-toolbar span, .main-slots-toolbar li, .main-slots-toolbar td, .main-slots-toolbar th, .main-slots-toolbar strong, .primary-sticky-header-wrapper, .primary-sticky-header-wrapper p, .primary-sticky-header-wrapper span, .primary-sticky-header-wrapper li, .primary-sticky-header-wrapper td, .primary-sticky-header-wrapper th, .primary-sticky-header-wrapper strong, .main-system-footer, .main-system-footer p, .main-system-footer span, .main-system-footer li, .main-system-footer td, .main-system-footer th, .main-system-footer strong, .core-system-header, .core-system-header p, .core-system-header span, .core-system-header li, .core-system-header td, .core-system-header th, .core-system-header strong, .page-timestamp-marker, .page-timestamp-marker p, .page-timestamp-marker span, .page-timestamp-marker li, .page-timestamp-marker td, .page-timestamp-marker th, .page-timestamp-marker strong, .portal-top-bar, .portal-top-bar p, .portal-top-bar span, .portal-top-bar li, .portal-top-bar td, .portal-top-bar th, .portal-top-bar strong, .web-top-bar-container, .web-top-bar-container p, .web-top-bar-container span, .web-top-bar-container li, .web-top-bar-container td, .web-top-bar-container th, .web-top-bar-container strong, .public-top-box, .public-top-box p, .public-top-box span, .public-top-box li, .public-top-box td, .public-top-box th, .public-top-box strong, .shell-top-grid, .shell-top-grid p, .shell-top-grid span, .shell-top-grid li, .shell-top-grid td, .shell-top-grid th, .shell-top-grid strong, .web-top-menu-bar, .web-top-menu-bar p, .web-top-menu-bar span, .web-top-menu-bar li, .web-top-menu-bar td, .web-top-menu-bar th, .web-top-menu-bar strong, .core-top-nav-bar, .core-top-nav-bar p, .core-top-nav-bar span, .core-top-nav-bar li, .core-top-nav-bar td, .core-top-nav-bar th, .core-top-nav-bar strong, .content-top-panel, .content-top-panel p, .content-top-panel span, .content-top-panel li, .content-top-panel td, .content-top-panel th, .content-top-panel strong, .page-top-promotion, .page-top-promotion p, .page-top-promotion span, .page-top-promotion li, .page-top-promotion td, .page-top-promotion th, .page-top-promotion strong, .content-top-row, .content-top-row p, .content-top-row span, .content-top-row li, .content-top-row td, .content-top-row th, .content-top-row strong, .main-top-wrapper, .main-top-wrapper p, .main-top-wrapper span, .main-top-wrapper li, .main-top-wrapper td, .main-top-wrapper th, .main-top-wrapper strong, .portal-update-indicator, .portal-update-indicator p, .portal-update-indicator span, .portal-update-indicator li, .portal-update-indicator td, .portal-update-indicator th, .portal-update-indicator strong, .screen-update-notify, .screen-update-notify p, .screen-update-notify span, .screen-update-notify li, .screen-update-notify td, .screen-update-notify th, .screen-update-notify strong, .primary-update-ribbon, .primary-update-ribbon p, .primary-update-ribbon span, .primary-update-ribbon li, .primary-update-ribbon td, .primary-update-ribbon th, .primary-update-ribbon strong, .theme-updated-info, .theme-updated-info p, .theme-updated-info span, .theme-updated-info li, .theme-updated-info td, .theme-updated-info th, .theme-updated-info strong, .site-upper-nav, .site-upper-nav p, .site-upper-nav span, .site-upper-nav li, .site-upper-nav td, .site-upper-nav th, .site-upper-nav strong, .local-welcome-area, .local-welcome-area p, .local-welcome-area span, .local-welcome-area li, .local-welcome-area td, .local-welcome-area th, .local-welcome-area strong, .web-welcome-billboard, .web-welcome-billboard p, .web-welcome-billboard span, .web-welcome-billboard li, .web-welcome-billboard td, .web-welcome-billboard th, .web-welcome-billboard strong, .brand-welcome-box, .brand-welcome-box p, .brand-welcome-box span, .brand-welcome-box li, .brand-welcome-box td, .brand-welcome-box th, .brand-welcome-box strong, .public-welcome-content, .public-welcome-content p, .public-welcome-content span, .public-welcome-content li, .public-welcome-content td, .public-welcome-content th, .public-welcome-content strong, .site-welcome-holder, .site-welcome-holder p, .site-welcome-holder span, .site-welcome-holder li, .site-welcome-holder td, .site-welcome-holder th, .site-welcome-holder strong, .app-welcome-stage, .app-welcome-stage p, .app-welcome-stage span, .app-welcome-stage li, .app-welcome-stage td, .app-welcome-stage th, .app-welcome-stage strong, .page-welcome-wrapper, .page-welcome-wrapper p, .page-welcome-wrapper span, .page-welcome-wrapper li, .page-welcome-wrapper td, .page-welcome-wrapper th, .page-welcome-wrapper strong, header, header p, header span, footer, footer p, footer span, footer li, table, th, td, table p, table span, table strong, table td, table th {
  color: var(--text-gray) !important;
}
.shell-action-header a, .custom-alert-dialog a, .ui-app-footer a, .layout-app-header a, .portal-backdrop-overlay a, .public-banner-box a, .primary-banner-content a, .shell-banner-inner a, .primary-bonus-header a, .shell-bottom-bar a, .screen-bottom-footer a, .main-bottom-menu-bar a, .shell-brand-bar a, .main-brand-footer a, .content-brand-hero a, .local-brand-wrapper a, .main-branding-container a, .app-branding-header a, .main-curtain-overlay a, .shell-curtain-shadow a, .content-date-status-bar a, .shell-dialog-backdrop a, .global-dialog-box a, .ui-dialog-card a, .app-dialog-dimmer a, .primary-dialog-panel a, .page-dialog-shell a, .layout-dialog-wrapper a, .ui-dimmer-screen a, .local-faq-content a, .layout-faq-item a, .web-faq-summary a, .global-feature-frame a, .ui-first-view a, .main-foot-section a, .ui-footer a, .shell-footer-area a, .custom-footer-area-container a, .shell-footer-base a, .site-footer-block a, .page-footer-body a, .view-footer-bottom-container a, .public-footer-box a, .theme-footer-box-container a, .footer-holder-wrap a, .main-footer-container-root a, .global-footer-content a, .brand-footer-content-wrap a, .view-footer-flex a, .ui-footer-grid-container a, .brand-footer-holder a, .site-footer-holder-wrap a, .core-footer-inner a, .custom-footer-inner-wrapper a, .page-footer-layout-box a, .app-footer-main-box a, .core-footer-navigation a, .portal-footer-panel a, .site-footer-row a, .ui-footer-section a, .content-footer-shell a, .local-footer-shell-container a, .local-footer-wrap a, .screen-footer-wrap-box a, .public-footer-wrapper a, .site-gateway-banner a, .site-glassmorphism-bg a, .web-global-footer a, .main-global-header a, .content-head-section a, .site-head-wrapper a, .public-header a, .custom-header-area a, .brand-wrapper a, .site-header-content a, .ui-header-flex a, .core-header-holder a, .custom-header-inner a, .content-header-navigation a, .web-header-shell a, .web-header-wrap a, .shell-headline-panel a, .ui-hero-box a, .public-hero-card a, .intro-container a, .screen-hero-content a, .theme-hero-grid a, .global-hero-holder a, .portal-hero-inner a, .content-hero-panel a, .lobby-intro a, .view-hero-shell a, .shell-hero-wrapper a, .public-info-card a, .shell-info-modal a, .layout-intro-block a, .view-intro-container a, .main-intro-wrapper a, .screen-last-modified-panel a, .content-latest-update-box a, .main-lead-banner a, .site-lightbox-box a, .local-lightbox-card a, .portal-lightbox-overlay a, .portal-lobby-intro a, .page-lower-panel a, .portal-main-footer a, .page-main-header a, .shell-main-showcase a, .ui-menu-container a, .site-menu-header a, .local-modal-box a, .web-modal-card a, .shell-modal-container a, .main-modal-curtain a, .main-modal-dimmer a, .view-modal-frame a, .screen-modal-panel a, .portal-modal-shadow a, .site-modal-wrapper-bg a, .view-modified-date a, .ui-nav-header a, .site-nav-inner a, .ui-nav-wrap a, .main-navbar-box a, .portal-navbar-container a, .site-navbar-inner a, .global-navigation-box a, .web-overlay-backdrop a, .page-overlay-curtain a, .custom-overlay-shield a, .primary-page-freshness a, .primary-phone-submenu-bar a, .theme-popup-card a, .global-popup-dimmer a, .shell-popup-frame a, .custom-popup-shadow a, .global-popup-window a, .core-popup-wrapper a, .web-portal-header a, .screen-portal-intro a, .portal-primary-header a, .core-prime-header a, .portal-promo-banner a, .public-promo-container a, .site-promo-content a, .content-promo-hero a, .shell-promo-popup a, .local-promo-wrapper a, .ui-refresh-stamp a, .custom-revision-tag a, .public-screen-overlay a, .screen-shading-overlay a, .primary-shadow-backdrop a, .lower-panel a, .primary-header a, .screen-site-info-footer a, .web-site-navigation a, .main-slots-toolbar a, .primary-sticky-header-wrapper a, .main-system-footer a, .core-system-header a, .page-timestamp-marker a, .portal-top-bar a, .web-top-bar-container a, .public-top-box a, .shell-top-grid a, .web-top-menu-bar a, .core-top-nav-bar a, .content-top-panel a, .page-top-promotion a, .content-top-row a, .main-top-wrapper a, .portal-update-indicator a, .screen-update-notify a, .primary-update-ribbon a, .theme-updated-info a, .site-upper-nav a, .local-welcome-area a, .web-welcome-billboard a, .brand-welcome-box a, .public-welcome-content a, .site-welcome-holder a, .app-welcome-stage a, .page-welcome-wrapper a, header a, footer a {
  color: #cbd5e1 !important;
}
.shell-action-header a:hover, .custom-alert-dialog a:hover, .ui-app-footer a:hover, .layout-app-header a:hover, .portal-backdrop-overlay a:hover, .public-banner-box a:hover, .primary-banner-content a:hover, .shell-banner-inner a:hover, .primary-bonus-header a:hover, .shell-bottom-bar a:hover, .screen-bottom-footer a:hover, .main-bottom-menu-bar a:hover, .shell-brand-bar a:hover, .main-brand-footer a:hover, .content-brand-hero a:hover, .local-brand-wrapper a:hover, .main-branding-container a:hover, .app-branding-header a:hover, .main-curtain-overlay a:hover, .shell-curtain-shadow a:hover, .content-date-status-bar a:hover, .shell-dialog-backdrop a:hover, .global-dialog-box a:hover, .ui-dialog-card a:hover, .app-dialog-dimmer a:hover, .primary-dialog-panel a:hover, .page-dialog-shell a:hover, .layout-dialog-wrapper a:hover, .ui-dimmer-screen a:hover, .local-faq-content a:hover, .layout-faq-item a:hover, .web-faq-summary a:hover, .global-feature-frame a:hover, .ui-first-view a:hover, .main-foot-section a:hover, .ui-footer a:hover, .shell-footer-area a:hover, .custom-footer-area-container a:hover, .shell-footer-base a:hover, .site-footer-block a:hover, .page-footer-body a:hover, .view-footer-bottom-container a:hover, .public-footer-box a:hover, .theme-footer-box-container a:hover, .footer-holder-wrap a:hover, .main-footer-container-root a:hover, .global-footer-content a:hover, .brand-footer-content-wrap a:hover, .view-footer-flex a:hover, .ui-footer-grid-container a:hover, .brand-footer-holder a:hover, .site-footer-holder-wrap a:hover, .core-footer-inner a:hover, .custom-footer-inner-wrapper a:hover, .page-footer-layout-box a:hover, .app-footer-main-box a:hover, .core-footer-navigation a:hover, .portal-footer-panel a:hover, .site-footer-row a:hover, .ui-footer-section a:hover, .content-footer-shell a:hover, .local-footer-shell-container a:hover, .local-footer-wrap a:hover, .screen-footer-wrap-box a:hover, .public-footer-wrapper a:hover, .site-gateway-banner a:hover, .site-glassmorphism-bg a:hover, .web-global-footer a:hover, .main-global-header a:hover, .content-head-section a:hover, .site-head-wrapper a:hover, .public-header a:hover, .custom-header-area a:hover, .brand-wrapper a:hover, .site-header-content a:hover, .ui-header-flex a:hover, .core-header-holder a:hover, .custom-header-inner a:hover, .content-header-navigation a:hover, .web-header-shell a:hover, .web-header-wrap a:hover, .shell-headline-panel a:hover, .ui-hero-box a:hover, .public-hero-card a:hover, .intro-container a:hover, .screen-hero-content a:hover, .theme-hero-grid a:hover, .global-hero-holder a:hover, .portal-hero-inner a:hover, .content-hero-panel a:hover, .lobby-intro a:hover, .view-hero-shell a:hover, .shell-hero-wrapper a:hover, .public-info-card a:hover, .shell-info-modal a:hover, .layout-intro-block a:hover, .view-intro-container a:hover, .main-intro-wrapper a:hover, .screen-last-modified-panel a:hover, .content-latest-update-box a:hover, .main-lead-banner a:hover, .site-lightbox-box a:hover, .local-lightbox-card a:hover, .portal-lightbox-overlay a:hover, .portal-lobby-intro a:hover, .page-lower-panel a:hover, .portal-main-footer a:hover, .page-main-header a:hover, .shell-main-showcase a:hover, .ui-menu-container a:hover, .site-menu-header a:hover, .local-modal-box a:hover, .web-modal-card a:hover, .shell-modal-container a:hover, .main-modal-curtain a:hover, .main-modal-dimmer a:hover, .view-modal-frame a:hover, .screen-modal-panel a:hover, .portal-modal-shadow a:hover, .site-modal-wrapper-bg a:hover, .view-modified-date a:hover, .ui-nav-header a:hover, .site-nav-inner a:hover, .ui-nav-wrap a:hover, .main-navbar-box a:hover, .portal-navbar-container a:hover, .site-navbar-inner a:hover, .global-navigation-box a:hover, .web-overlay-backdrop a:hover, .page-overlay-curtain a:hover, .custom-overlay-shield a:hover, .primary-page-freshness a:hover, .primary-phone-submenu-bar a:hover, .theme-popup-card a:hover, .global-popup-dimmer a:hover, .shell-popup-frame a:hover, .custom-popup-shadow a:hover, .global-popup-window a:hover, .core-popup-wrapper a:hover, .web-portal-header a:hover, .screen-portal-intro a:hover, .portal-primary-header a:hover, .core-prime-header a:hover, .portal-promo-banner a:hover, .public-promo-container a:hover, .site-promo-content a:hover, .content-promo-hero a:hover, .shell-promo-popup a:hover, .local-promo-wrapper a:hover, .ui-refresh-stamp a:hover, .custom-revision-tag a:hover, .public-screen-overlay a:hover, .screen-shading-overlay a:hover, .primary-shadow-backdrop a:hover, .lower-panel a:hover, .primary-header a:hover, .screen-site-info-footer a:hover, .web-site-navigation a:hover, .main-slots-toolbar a:hover, .primary-sticky-header-wrapper a:hover, .main-system-footer a:hover, .core-system-header a:hover, .page-timestamp-marker a:hover, .portal-top-bar a:hover, .web-top-bar-container a:hover, .public-top-box a:hover, .shell-top-grid a:hover, .web-top-menu-bar a:hover, .core-top-nav-bar a:hover, .content-top-panel a:hover, .page-top-promotion a:hover, .content-top-row a:hover, .main-top-wrapper a:hover, .portal-update-indicator a:hover, .screen-update-notify a:hover, .primary-update-ribbon a:hover, .theme-updated-info a:hover, .site-upper-nav a:hover, .local-welcome-area a:hover, .web-welcome-billboard a:hover, .brand-welcome-box a:hover, .public-welcome-content a:hover, .site-welcome-holder a:hover, .app-welcome-stage a:hover, .page-welcome-wrapper a:hover, header a:hover, footer a:hover {
  color: #ffffff !important;
}
.shell-action-header h1, .shell-action-header h2, .shell-action-header h3, .shell-action-header strong, .shell-action-header th, .shell-action-header td:first-child, .custom-alert-dialog h1, .custom-alert-dialog h2, .custom-alert-dialog h3, .custom-alert-dialog strong, .custom-alert-dialog th, .custom-alert-dialog td:first-child, .ui-app-footer h1, .ui-app-footer h2, .ui-app-footer h3, .ui-app-footer strong, .ui-app-footer th, .ui-app-footer td:first-child, .layout-app-header h1, .layout-app-header h2, .layout-app-header h3, .layout-app-header strong, .layout-app-header th, .layout-app-header td:first-child, .portal-backdrop-overlay h1, .portal-backdrop-overlay h2, .portal-backdrop-overlay h3, .portal-backdrop-overlay strong, .portal-backdrop-overlay th, .portal-backdrop-overlay td:first-child, .public-banner-box h1, .public-banner-box h2, .public-banner-box h3, .public-banner-box strong, .public-banner-box th, .public-banner-box td:first-child, .primary-banner-content h1, .primary-banner-content h2, .primary-banner-content h3, .primary-banner-content strong, .primary-banner-content th, .primary-banner-content td:first-child, .shell-banner-inner h1, .shell-banner-inner h2, .shell-banner-inner h3, .shell-banner-inner strong, .shell-banner-inner th, .shell-banner-inner td:first-child, .primary-bonus-header h1, .primary-bonus-header h2, .primary-bonus-header h3, .primary-bonus-header strong, .primary-bonus-header th, .primary-bonus-header td:first-child, .shell-bottom-bar h1, .shell-bottom-bar h2, .shell-bottom-bar h3, .shell-bottom-bar strong, .shell-bottom-bar th, .shell-bottom-bar td:first-child, .screen-bottom-footer h1, .screen-bottom-footer h2, .screen-bottom-footer h3, .screen-bottom-footer strong, .screen-bottom-footer th, .screen-bottom-footer td:first-child, .main-bottom-menu-bar h1, .main-bottom-menu-bar h2, .main-bottom-menu-bar h3, .main-bottom-menu-bar strong, .main-bottom-menu-bar th, .main-bottom-menu-bar td:first-child, .shell-brand-bar h1, .shell-brand-bar h2, .shell-brand-bar h3, .shell-brand-bar strong, .shell-brand-bar th, .shell-brand-bar td:first-child, .main-brand-footer h1, .main-brand-footer h2, .main-brand-footer h3, .main-brand-footer strong, .main-brand-footer th, .main-brand-footer td:first-child, .content-brand-hero h1, .content-brand-hero h2, .content-brand-hero h3, .content-brand-hero strong, .content-brand-hero th, .content-brand-hero td:first-child, .local-brand-wrapper h1, .local-brand-wrapper h2, .local-brand-wrapper h3, .local-brand-wrapper strong, .local-brand-wrapper th, .local-brand-wrapper td:first-child, .main-branding-container h1, .main-branding-container h2, .main-branding-container h3, .main-branding-container strong, .main-branding-container th, .main-branding-container td:first-child, .app-branding-header h1, .app-branding-header h2, .app-branding-header h3, .app-branding-header strong, .app-branding-header th, .app-branding-header td:first-child, .main-curtain-overlay h1, .main-curtain-overlay h2, .main-curtain-overlay h3, .main-curtain-overlay strong, .main-curtain-overlay th, .main-curtain-overlay td:first-child, .shell-curtain-shadow h1, .shell-curtain-shadow h2, .shell-curtain-shadow h3, .shell-curtain-shadow strong, .shell-curtain-shadow th, .shell-curtain-shadow td:first-child, .content-date-status-bar h1, .content-date-status-bar h2, .content-date-status-bar h3, .content-date-status-bar strong, .content-date-status-bar th, .content-date-status-bar td:first-child, .shell-dialog-backdrop h1, .shell-dialog-backdrop h2, .shell-dialog-backdrop h3, .shell-dialog-backdrop strong, .shell-dialog-backdrop th, .shell-dialog-backdrop td:first-child, .global-dialog-box h1, .global-dialog-box h2, .global-dialog-box h3, .global-dialog-box strong, .global-dialog-box th, .global-dialog-box td:first-child, .ui-dialog-card h1, .ui-dialog-card h2, .ui-dialog-card h3, .ui-dialog-card strong, .ui-dialog-card th, .ui-dialog-card td:first-child, .app-dialog-dimmer h1, .app-dialog-dimmer h2, .app-dialog-dimmer h3, .app-dialog-dimmer strong, .app-dialog-dimmer th, .app-dialog-dimmer td:first-child, .primary-dialog-panel h1, .primary-dialog-panel h2, .primary-dialog-panel h3, .primary-dialog-panel strong, .primary-dialog-panel th, .primary-dialog-panel td:first-child, .page-dialog-shell h1, .page-dialog-shell h2, .page-dialog-shell h3, .page-dialog-shell strong, .page-dialog-shell th, .page-dialog-shell td:first-child, .layout-dialog-wrapper h1, .layout-dialog-wrapper h2, .layout-dialog-wrapper h3, .layout-dialog-wrapper strong, .layout-dialog-wrapper th, .layout-dialog-wrapper td:first-child, .ui-dimmer-screen h1, .ui-dimmer-screen h2, .ui-dimmer-screen h3, .ui-dimmer-screen strong, .ui-dimmer-screen th, .ui-dimmer-screen td:first-child, .local-faq-content h1, .local-faq-content h2, .local-faq-content h3, .local-faq-content strong, .local-faq-content th, .local-faq-content td:first-child, .layout-faq-item h1, .layout-faq-item h2, .layout-faq-item h3, .layout-faq-item strong, .layout-faq-item th, .layout-faq-item td:first-child, .web-faq-summary h1, .web-faq-summary h2, .web-faq-summary h3, .web-faq-summary strong, .web-faq-summary th, .web-faq-summary td:first-child, .global-feature-frame h1, .global-feature-frame h2, .global-feature-frame h3, .global-feature-frame strong, .global-feature-frame th, .global-feature-frame td:first-child, .ui-first-view h1, .ui-first-view h2, .ui-first-view h3, .ui-first-view strong, .ui-first-view th, .ui-first-view td:first-child, .main-foot-section h1, .main-foot-section h2, .main-foot-section h3, .main-foot-section strong, .main-foot-section th, .main-foot-section td:first-child, .ui-footer h1, .ui-footer h2, .ui-footer h3, .ui-footer strong, .ui-footer th, .ui-footer td:first-child, .shell-footer-area h1, .shell-footer-area h2, .shell-footer-area h3, .shell-footer-area strong, .shell-footer-area th, .shell-footer-area td:first-child, .custom-footer-area-container h1, .custom-footer-area-container h2, .custom-footer-area-container h3, .custom-footer-area-container strong, .custom-footer-area-container th, .custom-footer-area-container td:first-child, .shell-footer-base h1, .shell-footer-base h2, .shell-footer-base h3, .shell-footer-base strong, .shell-footer-base th, .shell-footer-base td:first-child, .site-footer-block h1, .site-footer-block h2, .site-footer-block h3, .site-footer-block strong, .site-footer-block th, .site-footer-block td:first-child, .page-footer-body h1, .page-footer-body h2, .page-footer-body h3, .page-footer-body strong, .page-footer-body th, .page-footer-body td:first-child, .view-footer-bottom-container h1, .view-footer-bottom-container h2, .view-footer-bottom-container h3, .view-footer-bottom-container strong, .view-footer-bottom-container th, .view-footer-bottom-container td:first-child, .public-footer-box h1, .public-footer-box h2, .public-footer-box h3, .public-footer-box strong, .public-footer-box th, .public-footer-box td:first-child, .theme-footer-box-container h1, .theme-footer-box-container h2, .theme-footer-box-container h3, .theme-footer-box-container strong, .theme-footer-box-container th, .theme-footer-box-container td:first-child, .footer-holder-wrap h1, .footer-holder-wrap h2, .footer-holder-wrap h3, .footer-holder-wrap strong, .footer-holder-wrap th, .footer-holder-wrap td:first-child, .main-footer-container-root h1, .main-footer-container-root h2, .main-footer-container-root h3, .main-footer-container-root strong, .main-footer-container-root th, .main-footer-container-root td:first-child, .global-footer-content h1, .global-footer-content h2, .global-footer-content h3, .global-footer-content strong, .global-footer-content th, .global-footer-content td:first-child, .brand-footer-content-wrap h1, .brand-footer-content-wrap h2, .brand-footer-content-wrap h3, .brand-footer-content-wrap strong, .brand-footer-content-wrap th, .brand-footer-content-wrap td:first-child, .view-footer-flex h1, .view-footer-flex h2, .view-footer-flex h3, .view-footer-flex strong, .view-footer-flex th, .view-footer-flex td:first-child, .ui-footer-grid-container h1, .ui-footer-grid-container h2, .ui-footer-grid-container h3, .ui-footer-grid-container strong, .ui-footer-grid-container th, .ui-footer-grid-container td:first-child, .brand-footer-holder h1, .brand-footer-holder h2, .brand-footer-holder h3, .brand-footer-holder strong, .brand-footer-holder th, .brand-footer-holder td:first-child, .site-footer-holder-wrap h1, .site-footer-holder-wrap h2, .site-footer-holder-wrap h3, .site-footer-holder-wrap strong, .site-footer-holder-wrap th, .site-footer-holder-wrap td:first-child, .core-footer-inner h1, .core-footer-inner h2, .core-footer-inner h3, .core-footer-inner strong, .core-footer-inner th, .core-footer-inner td:first-child, .custom-footer-inner-wrapper h1, .custom-footer-inner-wrapper h2, .custom-footer-inner-wrapper h3, .custom-footer-inner-wrapper strong, .custom-footer-inner-wrapper th, .custom-footer-inner-wrapper td:first-child, .page-footer-layout-box h1, .page-footer-layout-box h2, .page-footer-layout-box h3, .page-footer-layout-box strong, .page-footer-layout-box th, .page-footer-layout-box td:first-child, .app-footer-main-box h1, .app-footer-main-box h2, .app-footer-main-box h3, .app-footer-main-box strong, .app-footer-main-box th, .app-footer-main-box td:first-child, .core-footer-navigation h1, .core-footer-navigation h2, .core-footer-navigation h3, .core-footer-navigation strong, .core-footer-navigation th, .core-footer-navigation td:first-child, .portal-footer-panel h1, .portal-footer-panel h2, .portal-footer-panel h3, .portal-footer-panel strong, .portal-footer-panel th, .portal-footer-panel td:first-child, .site-footer-row h1, .site-footer-row h2, .site-footer-row h3, .site-footer-row strong, .site-footer-row th, .site-footer-row td:first-child, .ui-footer-section h1, .ui-footer-section h2, .ui-footer-section h3, .ui-footer-section strong, .ui-footer-section th, .ui-footer-section td:first-child, .content-footer-shell h1, .content-footer-shell h2, .content-footer-shell h3, .content-footer-shell strong, .content-footer-shell th, .content-footer-shell td:first-child, .local-footer-shell-container h1, .local-footer-shell-container h2, .local-footer-shell-container h3, .local-footer-shell-container strong, .local-footer-shell-container th, .local-footer-shell-container td:first-child, .local-footer-wrap h1, .local-footer-wrap h2, .local-footer-wrap h3, .local-footer-wrap strong, .local-footer-wrap th, .local-footer-wrap td:first-child, .screen-footer-wrap-box h1, .screen-footer-wrap-box h2, .screen-footer-wrap-box h3, .screen-footer-wrap-box strong, .screen-footer-wrap-box th, .screen-footer-wrap-box td:first-child, .public-footer-wrapper h1, .public-footer-wrapper h2, .public-footer-wrapper h3, .public-footer-wrapper strong, .public-footer-wrapper th, .public-footer-wrapper td:first-child, .site-gateway-banner h1, .site-gateway-banner h2, .site-gateway-banner h3, .site-gateway-banner strong, .site-gateway-banner th, .site-gateway-banner td:first-child, .site-glassmorphism-bg h1, .site-glassmorphism-bg h2, .site-glassmorphism-bg h3, .site-glassmorphism-bg strong, .site-glassmorphism-bg th, .site-glassmorphism-bg td:first-child, .web-global-footer h1, .web-global-footer h2, .web-global-footer h3, .web-global-footer strong, .web-global-footer th, .web-global-footer td:first-child, .main-global-header h1, .main-global-header h2, .main-global-header h3, .main-global-header strong, .main-global-header th, .main-global-header td:first-child, .content-head-section h1, .content-head-section h2, .content-head-section h3, .content-head-section strong, .content-head-section th, .content-head-section td:first-child, .site-head-wrapper h1, .site-head-wrapper h2, .site-head-wrapper h3, .site-head-wrapper strong, .site-head-wrapper th, .site-head-wrapper td:first-child, .public-header h1, .public-header h2, .public-header h3, .public-header strong, .public-header th, .public-header td:first-child, .custom-header-area h1, .custom-header-area h2, .custom-header-area h3, .custom-header-area strong, .custom-header-area th, .custom-header-area td:first-child, .brand-wrapper h1, .brand-wrapper h2, .brand-wrapper h3, .brand-wrapper strong, .brand-wrapper th, .brand-wrapper td:first-child, .site-header-content h1, .site-header-content h2, .site-header-content h3, .site-header-content strong, .site-header-content th, .site-header-content td:first-child, .ui-header-flex h1, .ui-header-flex h2, .ui-header-flex h3, .ui-header-flex strong, .ui-header-flex th, .ui-header-flex td:first-child, .core-header-holder h1, .core-header-holder h2, .core-header-holder h3, .core-header-holder strong, .core-header-holder th, .core-header-holder td:first-child, .custom-header-inner h1, .custom-header-inner h2, .custom-header-inner h3, .custom-header-inner strong, .custom-header-inner th, .custom-header-inner td:first-child, .content-header-navigation h1, .content-header-navigation h2, .content-header-navigation h3, .content-header-navigation strong, .content-header-navigation th, .content-header-navigation td:first-child, .web-header-shell h1, .web-header-shell h2, .web-header-shell h3, .web-header-shell strong, .web-header-shell th, .web-header-shell td:first-child, .web-header-wrap h1, .web-header-wrap h2, .web-header-wrap h3, .web-header-wrap strong, .web-header-wrap th, .web-header-wrap td:first-child, .shell-headline-panel h1, .shell-headline-panel h2, .shell-headline-panel h3, .shell-headline-panel strong, .shell-headline-panel th, .shell-headline-panel td:first-child, .ui-hero-box h1, .ui-hero-box h2, .ui-hero-box h3, .ui-hero-box strong, .ui-hero-box th, .ui-hero-box td:first-child, .public-hero-card h1, .public-hero-card h2, .public-hero-card h3, .public-hero-card strong, .public-hero-card th, .public-hero-card td:first-child, .intro-container h1, .intro-container h2, .intro-container h3, .intro-container strong, .intro-container th, .intro-container td:first-child, .screen-hero-content h1, .screen-hero-content h2, .screen-hero-content h3, .screen-hero-content strong, .screen-hero-content th, .screen-hero-content td:first-child, .theme-hero-grid h1, .theme-hero-grid h2, .theme-hero-grid h3, .theme-hero-grid strong, .theme-hero-grid th, .theme-hero-grid td:first-child, .global-hero-holder h1, .global-hero-holder h2, .global-hero-holder h3, .global-hero-holder strong, .global-hero-holder th, .global-hero-holder td:first-child, .portal-hero-inner h1, .portal-hero-inner h2, .portal-hero-inner h3, .portal-hero-inner strong, .portal-hero-inner th, .portal-hero-inner td:first-child, .content-hero-panel h1, .content-hero-panel h2, .content-hero-panel h3, .content-hero-panel strong, .content-hero-panel th, .content-hero-panel td:first-child, .lobby-intro h1, .lobby-intro h2, .lobby-intro h3, .lobby-intro strong, .lobby-intro th, .lobby-intro td:first-child, .view-hero-shell h1, .view-hero-shell h2, .view-hero-shell h3, .view-hero-shell strong, .view-hero-shell th, .view-hero-shell td:first-child, .shell-hero-wrapper h1, .shell-hero-wrapper h2, .shell-hero-wrapper h3, .shell-hero-wrapper strong, .shell-hero-wrapper th, .shell-hero-wrapper td:first-child, .public-info-card h1, .public-info-card h2, .public-info-card h3, .public-info-card strong, .public-info-card th, .public-info-card td:first-child, .shell-info-modal h1, .shell-info-modal h2, .shell-info-modal h3, .shell-info-modal strong, .shell-info-modal th, .shell-info-modal td:first-child, .layout-intro-block h1, .layout-intro-block h2, .layout-intro-block h3, .layout-intro-block strong, .layout-intro-block th, .layout-intro-block td:first-child, .view-intro-container h1, .view-intro-container h2, .view-intro-container h3, .view-intro-container strong, .view-intro-container th, .view-intro-container td:first-child, .main-intro-wrapper h1, .main-intro-wrapper h2, .main-intro-wrapper h3, .main-intro-wrapper strong, .main-intro-wrapper th, .main-intro-wrapper td:first-child, .screen-last-modified-panel h1, .screen-last-modified-panel h2, .screen-last-modified-panel h3, .screen-last-modified-panel strong, .screen-last-modified-panel th, .screen-last-modified-panel td:first-child, .content-latest-update-box h1, .content-latest-update-box h2, .content-latest-update-box h3, .content-latest-update-box strong, .content-latest-update-box th, .content-latest-update-box td:first-child, .main-lead-banner h1, .main-lead-banner h2, .main-lead-banner h3, .main-lead-banner strong, .main-lead-banner th, .main-lead-banner td:first-child, .site-lightbox-box h1, .site-lightbox-box h2, .site-lightbox-box h3, .site-lightbox-box strong, .site-lightbox-box th, .site-lightbox-box td:first-child, .local-lightbox-card h1, .local-lightbox-card h2, .local-lightbox-card h3, .local-lightbox-card strong, .local-lightbox-card th, .local-lightbox-card td:first-child, .portal-lightbox-overlay h1, .portal-lightbox-overlay h2, .portal-lightbox-overlay h3, .portal-lightbox-overlay strong, .portal-lightbox-overlay th, .portal-lightbox-overlay td:first-child, .portal-lobby-intro h1, .portal-lobby-intro h2, .portal-lobby-intro h3, .portal-lobby-intro strong, .portal-lobby-intro th, .portal-lobby-intro td:first-child, .page-lower-panel h1, .page-lower-panel h2, .page-lower-panel h3, .page-lower-panel strong, .page-lower-panel th, .page-lower-panel td:first-child, .portal-main-footer h1, .portal-main-footer h2, .portal-main-footer h3, .portal-main-footer strong, .portal-main-footer th, .portal-main-footer td:first-child, .page-main-header h1, .page-main-header h2, .page-main-header h3, .page-main-header strong, .page-main-header th, .page-main-header td:first-child, .shell-main-showcase h1, .shell-main-showcase h2, .shell-main-showcase h3, .shell-main-showcase strong, .shell-main-showcase th, .shell-main-showcase td:first-child, .ui-menu-container h1, .ui-menu-container h2, .ui-menu-container h3, .ui-menu-container strong, .ui-menu-container th, .ui-menu-container td:first-child, .site-menu-header h1, .site-menu-header h2, .site-menu-header h3, .site-menu-header strong, .site-menu-header th, .site-menu-header td:first-child, .local-modal-box h1, .local-modal-box h2, .local-modal-box h3, .local-modal-box strong, .local-modal-box th, .local-modal-box td:first-child, .web-modal-card h1, .web-modal-card h2, .web-modal-card h3, .web-modal-card strong, .web-modal-card th, .web-modal-card td:first-child, .shell-modal-container h1, .shell-modal-container h2, .shell-modal-container h3, .shell-modal-container strong, .shell-modal-container th, .shell-modal-container td:first-child, .main-modal-curtain h1, .main-modal-curtain h2, .main-modal-curtain h3, .main-modal-curtain strong, .main-modal-curtain th, .main-modal-curtain td:first-child, .main-modal-dimmer h1, .main-modal-dimmer h2, .main-modal-dimmer h3, .main-modal-dimmer strong, .main-modal-dimmer th, .main-modal-dimmer td:first-child, .view-modal-frame h1, .view-modal-frame h2, .view-modal-frame h3, .view-modal-frame strong, .view-modal-frame th, .view-modal-frame td:first-child, .screen-modal-panel h1, .screen-modal-panel h2, .screen-modal-panel h3, .screen-modal-panel strong, .screen-modal-panel th, .screen-modal-panel td:first-child, .portal-modal-shadow h1, .portal-modal-shadow h2, .portal-modal-shadow h3, .portal-modal-shadow strong, .portal-modal-shadow th, .portal-modal-shadow td:first-child, .site-modal-wrapper-bg h1, .site-modal-wrapper-bg h2, .site-modal-wrapper-bg h3, .site-modal-wrapper-bg strong, .site-modal-wrapper-bg th, .site-modal-wrapper-bg td:first-child, .view-modified-date h1, .view-modified-date h2, .view-modified-date h3, .view-modified-date strong, .view-modified-date th, .view-modified-date td:first-child, .ui-nav-header h1, .ui-nav-header h2, .ui-nav-header h3, .ui-nav-header strong, .ui-nav-header th, .ui-nav-header td:first-child, .site-nav-inner h1, .site-nav-inner h2, .site-nav-inner h3, .site-nav-inner strong, .site-nav-inner th, .site-nav-inner td:first-child, .ui-nav-wrap h1, .ui-nav-wrap h2, .ui-nav-wrap h3, .ui-nav-wrap strong, .ui-nav-wrap th, .ui-nav-wrap td:first-child, .main-navbar-box h1, .main-navbar-box h2, .main-navbar-box h3, .main-navbar-box strong, .main-navbar-box th, .main-navbar-box td:first-child, .portal-navbar-container h1, .portal-navbar-container h2, .portal-navbar-container h3, .portal-navbar-container strong, .portal-navbar-container th, .portal-navbar-container td:first-child, .site-navbar-inner h1, .site-navbar-inner h2, .site-navbar-inner h3, .site-navbar-inner strong, .site-navbar-inner th, .site-navbar-inner td:first-child, .global-navigation-box h1, .global-navigation-box h2, .global-navigation-box h3, .global-navigation-box strong, .global-navigation-box th, .global-navigation-box td:first-child, .web-overlay-backdrop h1, .web-overlay-backdrop h2, .web-overlay-backdrop h3, .web-overlay-backdrop strong, .web-overlay-backdrop th, .web-overlay-backdrop td:first-child, .page-overlay-curtain h1, .page-overlay-curtain h2, .page-overlay-curtain h3, .page-overlay-curtain strong, .page-overlay-curtain th, .page-overlay-curtain td:first-child, .custom-overlay-shield h1, .custom-overlay-shield h2, .custom-overlay-shield h3, .custom-overlay-shield strong, .custom-overlay-shield th, .custom-overlay-shield td:first-child, .primary-page-freshness h1, .primary-page-freshness h2, .primary-page-freshness h3, .primary-page-freshness strong, .primary-page-freshness th, .primary-page-freshness td:first-child, .primary-phone-submenu-bar h1, .primary-phone-submenu-bar h2, .primary-phone-submenu-bar h3, .primary-phone-submenu-bar strong, .primary-phone-submenu-bar th, .primary-phone-submenu-bar td:first-child, .theme-popup-card h1, .theme-popup-card h2, .theme-popup-card h3, .theme-popup-card strong, .theme-popup-card th, .theme-popup-card td:first-child, .global-popup-dimmer h1, .global-popup-dimmer h2, .global-popup-dimmer h3, .global-popup-dimmer strong, .global-popup-dimmer th, .global-popup-dimmer td:first-child, .shell-popup-frame h1, .shell-popup-frame h2, .shell-popup-frame h3, .shell-popup-frame strong, .shell-popup-frame th, .shell-popup-frame td:first-child, .custom-popup-shadow h1, .custom-popup-shadow h2, .custom-popup-shadow h3, .custom-popup-shadow strong, .custom-popup-shadow th, .custom-popup-shadow td:first-child, .global-popup-window h1, .global-popup-window h2, .global-popup-window h3, .global-popup-window strong, .global-popup-window th, .global-popup-window td:first-child, .core-popup-wrapper h1, .core-popup-wrapper h2, .core-popup-wrapper h3, .core-popup-wrapper strong, .core-popup-wrapper th, .core-popup-wrapper td:first-child, .web-portal-header h1, .web-portal-header h2, .web-portal-header h3, .web-portal-header strong, .web-portal-header th, .web-portal-header td:first-child, .screen-portal-intro h1, .screen-portal-intro h2, .screen-portal-intro h3, .screen-portal-intro strong, .screen-portal-intro th, .screen-portal-intro td:first-child, .portal-primary-header h1, .portal-primary-header h2, .portal-primary-header h3, .portal-primary-header strong, .portal-primary-header th, .portal-primary-header td:first-child, .core-prime-header h1, .core-prime-header h2, .core-prime-header h3, .core-prime-header strong, .core-prime-header th, .core-prime-header td:first-child, .portal-promo-banner h1, .portal-promo-banner h2, .portal-promo-banner h3, .portal-promo-banner strong, .portal-promo-banner th, .portal-promo-banner td:first-child, .public-promo-container h1, .public-promo-container h2, .public-promo-container h3, .public-promo-container strong, .public-promo-container th, .public-promo-container td:first-child, .site-promo-content h1, .site-promo-content h2, .site-promo-content h3, .site-promo-content strong, .site-promo-content th, .site-promo-content td:first-child, .content-promo-hero h1, .content-promo-hero h2, .content-promo-hero h3, .content-promo-hero strong, .content-promo-hero th, .content-promo-hero td:first-child, .shell-promo-popup h1, .shell-promo-popup h2, .shell-promo-popup h3, .shell-promo-popup strong, .shell-promo-popup th, .shell-promo-popup td:first-child, .local-promo-wrapper h1, .local-promo-wrapper h2, .local-promo-wrapper h3, .local-promo-wrapper strong, .local-promo-wrapper th, .local-promo-wrapper td:first-child, .ui-refresh-stamp h1, .ui-refresh-stamp h2, .ui-refresh-stamp h3, .ui-refresh-stamp strong, .ui-refresh-stamp th, .ui-refresh-stamp td:first-child, .custom-revision-tag h1, .custom-revision-tag h2, .custom-revision-tag h3, .custom-revision-tag strong, .custom-revision-tag th, .custom-revision-tag td:first-child, .public-screen-overlay h1, .public-screen-overlay h2, .public-screen-overlay h3, .public-screen-overlay strong, .public-screen-overlay th, .public-screen-overlay td:first-child, .screen-shading-overlay h1, .screen-shading-overlay h2, .screen-shading-overlay h3, .screen-shading-overlay strong, .screen-shading-overlay th, .screen-shading-overlay td:first-child, .primary-shadow-backdrop h1, .primary-shadow-backdrop h2, .primary-shadow-backdrop h3, .primary-shadow-backdrop strong, .primary-shadow-backdrop th, .primary-shadow-backdrop td:first-child, .lower-panel h1, .lower-panel h2, .lower-panel h3, .lower-panel strong, .lower-panel th, .lower-panel td:first-child, .primary-header h1, .primary-header h2, .primary-header h3, .primary-header strong, .primary-header th, .primary-header td:first-child, .screen-site-info-footer h1, .screen-site-info-footer h2, .screen-site-info-footer h3, .screen-site-info-footer strong, .screen-site-info-footer th, .screen-site-info-footer td:first-child, .web-site-navigation h1, .web-site-navigation h2, .web-site-navigation h3, .web-site-navigation strong, .web-site-navigation th, .web-site-navigation td:first-child, .main-slots-toolbar h1, .main-slots-toolbar h2, .main-slots-toolbar h3, .main-slots-toolbar strong, .main-slots-toolbar th, .main-slots-toolbar td:first-child, .primary-sticky-header-wrapper h1, .primary-sticky-header-wrapper h2, .primary-sticky-header-wrapper h3, .primary-sticky-header-wrapper strong, .primary-sticky-header-wrapper th, .primary-sticky-header-wrapper td:first-child, .main-system-footer h1, .main-system-footer h2, .main-system-footer h3, .main-system-footer strong, .main-system-footer th, .main-system-footer td:first-child, .core-system-header h1, .core-system-header h2, .core-system-header h3, .core-system-header strong, .core-system-header th, .core-system-header td:first-child, .page-timestamp-marker h1, .page-timestamp-marker h2, .page-timestamp-marker h3, .page-timestamp-marker strong, .page-timestamp-marker th, .page-timestamp-marker td:first-child, .portal-top-bar h1, .portal-top-bar h2, .portal-top-bar h3, .portal-top-bar strong, .portal-top-bar th, .portal-top-bar td:first-child, .web-top-bar-container h1, .web-top-bar-container h2, .web-top-bar-container h3, .web-top-bar-container strong, .web-top-bar-container th, .web-top-bar-container td:first-child, .public-top-box h1, .public-top-box h2, .public-top-box h3, .public-top-box strong, .public-top-box th, .public-top-box td:first-child, .shell-top-grid h1, .shell-top-grid h2, .shell-top-grid h3, .shell-top-grid strong, .shell-top-grid th, .shell-top-grid td:first-child, .web-top-menu-bar h1, .web-top-menu-bar h2, .web-top-menu-bar h3, .web-top-menu-bar strong, .web-top-menu-bar th, .web-top-menu-bar td:first-child, .core-top-nav-bar h1, .core-top-nav-bar h2, .core-top-nav-bar h3, .core-top-nav-bar strong, .core-top-nav-bar th, .core-top-nav-bar td:first-child, .content-top-panel h1, .content-top-panel h2, .content-top-panel h3, .content-top-panel strong, .content-top-panel th, .content-top-panel td:first-child, .page-top-promotion h1, .page-top-promotion h2, .page-top-promotion h3, .page-top-promotion strong, .page-top-promotion th, .page-top-promotion td:first-child, .content-top-row h1, .content-top-row h2, .content-top-row h3, .content-top-row strong, .content-top-row th, .content-top-row td:first-child, .main-top-wrapper h1, .main-top-wrapper h2, .main-top-wrapper h3, .main-top-wrapper strong, .main-top-wrapper th, .main-top-wrapper td:first-child, .portal-update-indicator h1, .portal-update-indicator h2, .portal-update-indicator h3, .portal-update-indicator strong, .portal-update-indicator th, .portal-update-indicator td:first-child, .screen-update-notify h1, .screen-update-notify h2, .screen-update-notify h3, .screen-update-notify strong, .screen-update-notify th, .screen-update-notify td:first-child, .primary-update-ribbon h1, .primary-update-ribbon h2, .primary-update-ribbon h3, .primary-update-ribbon strong, .primary-update-ribbon th, .primary-update-ribbon td:first-child, .theme-updated-info h1, .theme-updated-info h2, .theme-updated-info h3, .theme-updated-info strong, .theme-updated-info th, .theme-updated-info td:first-child, .site-upper-nav h1, .site-upper-nav h2, .site-upper-nav h3, .site-upper-nav strong, .site-upper-nav th, .site-upper-nav td:first-child, .local-welcome-area h1, .local-welcome-area h2, .local-welcome-area h3, .local-welcome-area strong, .local-welcome-area th, .local-welcome-area td:first-child, .web-welcome-billboard h1, .web-welcome-billboard h2, .web-welcome-billboard h3, .web-welcome-billboard strong, .web-welcome-billboard th, .web-welcome-billboard td:first-child, .brand-welcome-box h1, .brand-welcome-box h2, .brand-welcome-box h3, .brand-welcome-box strong, .brand-welcome-box th, .brand-welcome-box td:first-child, .public-welcome-content h1, .public-welcome-content h2, .public-welcome-content h3, .public-welcome-content strong, .public-welcome-content th, .public-welcome-content td:first-child, .site-welcome-holder h1, .site-welcome-holder h2, .site-welcome-holder h3, .site-welcome-holder strong, .site-welcome-holder th, .site-welcome-holder td:first-child, .app-welcome-stage h1, .app-welcome-stage h2, .app-welcome-stage h3, .app-welcome-stage strong, .app-welcome-stage th, .app-welcome-stage td:first-child, .page-welcome-wrapper h1, .page-welcome-wrapper h2, .page-welcome-wrapper h3, .page-welcome-wrapper strong, .page-welcome-wrapper th, .page-welcome-wrapper td:first-child, header h1, header h2, header h3, header strong, footer h1, footer h2, footer h3, footer strong, footer .ui-footer-heading, th, td:first-child, table th, table td:first-child, .portal-clock-graphics, .shell-clock-symbol, .local-date-label, .global-freshness-icon, .view-freshness-stamp-text, .layout-last-edit-info, .app-last-updated-icon, .site-last-updated-text, .web-modified-text, .ui-refresh-indicator, .portal-time-marker-svg, .core-time-vector, .global-timestamp-icon, .content-timestamp-value, .app-update-glyph, .brand-updated-on-caption, .site-action-join-btn, .site-action-login, .ui-action-register, .page-auth-login, .portal-auth-signin-btn, .local-btn-accept, .shell-btn-account-login, .ui-btn-action, .custom-btn-action-start, .shell-btn-activate, .ui-btn-activate-bonus, .shell-btn-activate-promo, .core-btn-agree, .btn-activate-bonus, .core-btn-claim, .web-btn-claim-bonus, .theme-btn-claim-now, .theme-btn-claim-offer, .page-btn-collect-bonus, .web-btn-confirm, .core-btn-continue, .theme-btn-create-account, .main-btn-cta, .local-btn-cta-action, .custom-btn-enter, .brand-btn-expand-games, .app-btn-expand-list, .app-btn-fetch-more, .brand-btn-fetch-slots, .site-btn-game-action, .site-btn-game-launch, .web-btn-game-play, .global-btn-game-spin, .screen-btn-get-bonus, .custom-btn-get-more-slots, .public-btn-get-now, .view-btn-get-offer, .web-btn-get-started, .custom-btn-get-started-hero, .site-btn-go, .app-btn-go-login, .main-btn-go-signup, .custom-btn-grab-bonus, .core-btn-hero-action, .brand-btn-hero-play, .theme-btn-join, .view-btn-join-now, .content-btn-join-promo, .core-btn-launch, .view-btn-launch-game, .view-btn-load-extra, .brand-btn-load-games, .btn-show-next, .page-btn-load-more-slots, .core-btn-load-next, .login-link-btn, .screen-btn-main-action, .screen-btn-modal-action, .content-btn-more-games, .screen-btn-more-games-list, .screen-btn-more-items, .local-btn-more-slots, .primary-btn-new-account, .screen-btn-next-page, .brand-btn-next-slots, .global-btn-open-account, .content-btn-optin, .btn-start-game, .view-btn-play-demo, .custom-btn-play-direct, .view-btn-play-game, .content-btn-play-hero, .theme-btn-play-now, .app-btn-play-now-slot, .main-btn-popup-action, .screen-btn-portal-login, .portal-btn-proceed, .content-btn-promo-action, .ui-btn-receive-bonus, .brand-btn-receive-offer, .view-btn-register, .view-btn-request-more, .primary-btn-run-game, .app-btn-run-slot, .brand-btn-see-more, .core-btn-show-more, .layout-btn-show-next, .web-btn-sign-in, .core-btn-sign-up, .site-btn-signin, .custom-btn-signup, .main-btn-signup-now, .local-btn-slot-action, .core-btn-slot-launch, .web-btn-slot-play, .public-btn-spin, .local-btn-spin-now, .btn-get-started, .ui-btn-start-bonus, .custom-btn-start-game, .global-btn-start-playing, .site-btn-start-spin, .portal-btn-submit, .app-btn-submit-action, .public-btn-take-bonus, .web-btn-take-offer, .site-btn-trigger, .site-btn-trigger-game, .shell-btn-user-enter, .primary-btn-view-more, .global-enter-button, .site-join-now-btn, .ui-login-action, .shell-login-click, .primary-login-control, .core-login-link-btn, .shell-login-trigger, .layout-member-login, .btn-get-now, .custom-register-trigger-btn, .ui-signin-button, .primary-signup-button, .shell-trigger-login, .page-trigger-signup, .layout-user-login {
  color: var(--text-main) !important;
}

.update-ribbon{display:flex;align-items:center;gap:8px;background:var(--bg-subpanel,#0d1b3e);color:var(--text-main,#fff);padding:14px 20px;border-radius:8px;margin-top:30px;margin-bottom:10px;font-size:14px;font-weight:500;font-family:sans-serif;box-shadow:0 4px 12px rgba(0,0,0,0.1);border:1px solid var(--border-color,transparent)}
.app-last-updated-icon{color:var(--accent-gold,#3b82f6);min-width:16px}
@media(max-width:700px){h1{text-align:center}}

.glassmorphism-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease; }
.glassmorphism-bg.brand-show { opacity: 1; visibility: visible; }
.popup-card { background-color: var(--bg-panel, #0b1220); background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../../app/page_images/30bet-hero.webp'); background-size: cover; background-position: center; border: 2px solid var(--accent-gold, #ffd014); border-radius: 20px; width: 90%; max-width: 420px; padding: 32px 24px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); position: relative; text-align: center; transform: scale(0.8); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.glassmorphism-bg.brand-show .popup-card { transform: scale(1); }
.dismiss-action { position: absolute; top: 14px; right: 18px; font-size: 24px; color: var(--text-muted, #8e9aa8); cursor: pointer; background: transparent; border: none; outline: none; transition: color 0.2s ease, transform 0.2s ease; }
.popup-copy { font-size: 1.15rem; line-height: 1.5; color: #ffffff; margin-bottom: 24px; margin-top: 10px; font-family: 'Outfit', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.theme-popunder-highlight { color: var(--accent-gold, #ffd014); }
.btn-get-now { display: inline-block; background-color: var(--accent-gold, #ffd014); color: #000000; font-weight: bold; text-transform: uppercase; padding: 14px 36px; border-radius: 30px; text-decoration: none; font-size: 1.05rem; font-family: sans-serif; letter-spacing: 0.05em; border: none; outline: none; cursor: pointer; box-shadow: 0 4px 15px rgba(255, 208, 20, 0.3); transition: background-color 0.2s ease, transform 0.2s ease; animation: popunder-pulse 2s infinite; }
.btn-get-now:hover { background-color: var(--accent-hover, #e5b90f); transform: translateY(-2px); }
@keyframes popunder-pulse { 0% { box-shadow: 0 0 0 0 var(--accent-gold, #ffd014); } 70% { box-shadow: 0 0 0 15px rgba(255, 208, 20, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 208, 20, 0); } }
/* generator-layout-overrides:v2 */
header [data-site-logo='true'] { display: block; width: auto; height: auto; max-width: 180px; max-height: 42px; object-fit: contain; flex-shrink: 0; }
@media (max-width: 768px) { header [data-site-logo='true'] { max-height: clamp(32px, 9.5vw, 38px); max-width: clamp(120px, 40vw, 170px); } }
body header, body header[class], footer, section, .primary-sticky-header-wrapper, .content-head-section, .web-header-wrap, .primary-header, .site-gateway-banner, .ui-first-view, .lobby-intro, .main-lead-banner, .shell-games-wrapper, .global-slots-wrapper, .core-casino-slots-area, .games-panel, .theme-article-section, .view-info-section, .shell-bottom-bar, .ui-app-footer, .lower-panel { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; box-sizing: border-box; }
@media (min-width: 769px) { header > :first-child, header .core-header-holder, header .custom-header-inner, header .brand-wrapper, header .web-header-shell, header .main-navbar-box, header .web-portal-header, header .public-header-wrapper, header .site-header-content, header .portal-navbar-container, section .local-promo-wrapper, section .site-promo-content, section .intro-container, section .shell-banner-inner, section .shell-hero-wrapper, .screen-hero-content, .web-section-container, .shell-games-wrapper > .web-section-container, .global-slots-wrapper > .web-section-container, .games-panel > .web-section-container, .core-casino-slots-area > .web-section-container, .theme-slots-area > .web-section-container, section .main-slots-toolbar, section .local-games-list, section .lobby-grid, section .ui-slots-layout, section .screen-slots-flex-grid, main, article, .core-article-wrapper, .content-article-shell, .page-article-body, .public-article-content, .primary-article-holder, .portal-post-wrapper, .article-inner, .custom-info-wrapper, .brand-main-article-box, .portal-content-wrapper, .theme-article-section .web-section-container, .layout-article-inner, .site-article-grid, .local-post-content, .app-content-area, .public-footer-wrapper, .page-footer-blocks-grid, .content-footer-bottom, footer .screen-footer-wrap-box, footer .app-footer-main-box, footer .footer-holder-wrap, footer .page-footer-layout-box, footer .public-footer-info-grid, footer .page-footer-widgets-grid { max-width: 1260px; margin-left: auto; margin-right: auto;  box-sizing: border-box; width: 100%; } }
@media (min-width: 769px) { .local-promo-wrapper > p, .site-promo-content > p, .shell-banner-inner > p, .shell-hero-wrapper > p, .local-banner-text, .web-welcome-paragraph, .screen-banner-desc, .theme-welcome-desc, .view-intro-desc, .core-promo-desc { max-width: 620px; } }
.portal-slot-img-wrapper { border-radius: 20px; }
@media (min-width: 769px) { .lobby-intro, .site-gateway-banner, .ui-first-view { padding-top: 88px; padding-bottom: 88px; min-height: 450px; } }
@media (min-width: 769px) { .lobby-grid, .local-games-list, .ui-slots-layout, .screen-slots-flex-grid { gap: 14px; } }
@media (max-width: 768px) { .lobby-grid, .local-games-list, .ui-slots-layout, .screen-slots-flex-grid { gap: 8px; } }
.lower-panel, .shell-bottom-bar, .ui-app-footer { padding-top: 36px; padding-bottom: 36px; }
.btn-activate-bonus, .view-btn-join-now, .global-enter-button { border-radius: 8px; }
a[data-affiliate-filled='true'] { color: var(--cta-text-color, #ffffff) !important; -webkit-text-fill-color: var(--cta-text-color, #ffffff) !important; }
body header a[data-affiliate-login='true'] { color: var(--text-main); -webkit-text-fill-color: var(--text-main); }
body [data-hero-background='true'] { --text-main: #ffffff; --text-gray: #e2e8f0; --text-muted: #cbd5e1; }
body [data-hero-background='true'] p { color: var(--text-gray); }

@media (min-width: 769px) {
  .lobby-grid, .app-games-grid, .ui-slots-layout, .custom-games-layout, .local-slots-matrix, .shell-games-matrix, .core-lobby-grid, .portal-slots-display, .public-games-display, .layout-slots-row, .web-games-row, .core-slots-list, .local-games-list, .content-slots-deck, .core-games-deck, .primary-lobby-layout, .theme-slots-gallery, .view-games-gallery, .core-lobby-matrix, .screen-slots-flex-grid, .site-games-flex-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 768px) {
  .lobby-grid, .app-games-grid, .ui-slots-layout, .custom-games-layout, .local-slots-matrix, .shell-games-matrix, .core-lobby-grid, .portal-slots-display, .public-games-display, .layout-slots-row, .web-games-row, .core-slots-list, .local-games-list, .content-slots-deck, .core-games-deck, .primary-lobby-layout, .theme-slots-gallery, .view-games-gallery, .core-lobby-matrix, .screen-slots-flex-grid, .site-games-flex-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
