:root {
  --bg-dark: #f0f0f0;
  --bg-panel: #2d2d2d;
  --bg-subpanel: #393939;
  --border-color: #454545;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-gray: #334155;
  --accent-gold: #c9a84c;
  --accent-hover: #b59438;
  --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;
}
.page-sticky-header-wrapper {
  position: sticky;
  top: -1px;
  z-index: 100;
}
.upper-nav {
  background-color: var(--bg-panel);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 24px;
}
.header-area {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shell-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.casino-logo {
  max-height: 40px;
  height: 40px;
  width: auto;
  display: block;
}
.burger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.burger-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.2s;
}
.quick-links {
  display: flex;
  gap: 24px;
}
.quick-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;
}
.quick-links a:hover,
.quick-links a.view-active {
  color: var(--text-main);
}
.quick-links a.view-active {
  border-bottom: 2px solid var(--accent-gold);
}
.entry-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-user-enter {
  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;
}
.btn-user-enter:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.join-now-btn {
  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;
}
.join-now-btn:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.app-mobile-controls-row {
  display: none;
}
.phone-nav-bar {
  display: none;
}
.bonus-header {
  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;
}
.bonus-header::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%;
}
.feature-badge {
  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-headline {
  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;
}
.layout-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;
}
.intro-paragraph {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 520px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.btn-take-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-take-bonus:hover {
  transform: translateY(-2px);
  background-color: var(--accent-hover);
}
.lobby-section {
  padding: 24px 24px;
  background-color: var(--bg-dark);
}
.app-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;
}
.web-slots-toolbar-left {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none; 
}
.web-slots-toolbar-left::-webkit-scrollbar {
  display: none; 
}
.web-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;
}
.web-toolbar-btn:hover {
  color: var(--accent-gold);
}
.web-toolbar-btn.view-active {
  background-color: var(--border-color);
  color: var(--text-main);
}
.page-slots-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shell-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;
}
.shell-toolbar-dropdown:hover {
  border-color: var(--accent-gold);
}
.shell-toolbar-dropdown .public-caret {
  font-size: 10px;
  color: var(--accent-gold);
}
.layout-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;
}
.layout-toolbar-search:hover {
  border-color: var(--accent-gold);
}
@media (max-width: 768px) {
  .main-slots-toolbar {
    padding: 8px;
  }
  .page-slots-toolbar-right {
    display: none; 
  }
}
.games-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.game-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.web-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;
}
.game-item:hover .web-slot-img-wrapper {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}
.site-slot-char {
  font-size: 44px;
  user-select: none;
}
.portal-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;
}
.game-item:hover .portal-play-overlay {
  opacity: 1;
}
.portal-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;
}
.portal-slot-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.site-load-more-wrapper {
  margin-top: 32px;
  text-align: center;
}
.btn-view-more {
  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-view-more:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
}
.post-container {
  max-width: 1260px;
  margin: 12px auto 60px;
  padding: 0 24px;
}
.post-container h1,
.post-container h2,
.post-container h3 {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 16px;
}
.post-container h1 {
  font-size: 26px;
  border-bottom: 2.5px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 28px;
  margin-top: 20px;
}
.post-container h2 {
  font-size: 19px;
}
.post-container h3 {
  font-size: 15px;
}
.post-container p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
  margin: 0 0 18px;
}
.post-container ul,
.post-container ol {
  margin: 0 0 20px;
  padding: 0;
}
.post-container ul {
  list-style: none;
}
.post-container ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}
.post-container 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);
}
.post-container ol {
  list-style: none;
  counter-reset: custom-ol-counter;
}
.post-container 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;
}
.post-container ol li::before {
  content: counter(custom-ol-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-weight: 700;
}
.post-container li strong {
  color: var(--text-main);
}
.post-container 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;
}
.post-container th,
.post-container td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
}
.post-container th {
  background-color: var(--bg-subpanel);
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
}
.post-container tr:last-child td {
  border-bottom: 0;
}
.post-container td:first-child {
  color: var(--text-main);
  font-weight: 600;
  width: 32%;
}
.post-container td:last-child {
  color: var(--text-gray);
}
.ui-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;
}
.screen-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;
}
.screen-faq-summary::-webkit-details-marker {
  display: none;
}
.layout-faq-icon::after {
  content: "+";
  color: #4da6ff;
  font-size: 20px;
  font-weight: 800;
}
.ui-faq-item[open] .layout-faq-icon::after {
  content: "−";
}
.ui-faq-item[open] .screen-faq-summary {
  background-color: var(--bg-subpanel);
}
.shell-faq-content {
  padding: 0 20px 20px 20px;
  background-color: var(--bg-subpanel);
}
.shell-faq-content p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}
.shell-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-columns-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr 1.5fr;
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto 40px;
}
.app-footer-col {
  display: flex;
  flex-direction: column;
}
.footer-intro-desc {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 13px;
  margin: 0;
}
.app-footer-heading {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px;
}
.footer-bottom-links, .brand-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom-links li, .brand-footer-contact li {
  margin-bottom: 12px;
}
.footer-bottom-links a, .brand-footer-contact a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-bottom-links a:hover, .brand-footer-contact a:hover {
  color: var(--accent-gold);
}
.brand-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-contact-icon {
  color: var(--accent-gold);
  display: flex;
}
.shell-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;
}
.shell-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%;
  }
  .header-area {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .upper-nav {
    padding: 12px 12px;
  }
  .shell-header-left {
    width: auto;
    justify-content: flex-start;
    position: static;
    gap: 0;
    order: 1;
    min-width: 0;
    flex-shrink: 1;
  }
  .burger-toggle {
    display: flex;
    position: static;
    transform: none;
    order: 3;
    flex-shrink: 0;
  }
  .quick-links {
    display: none;
  }
  .entry-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
    flex-shrink: 0;
    margin-left: auto;
  }
  .entry-buttons .btn-user-enter,
  .entry-buttons .join-now-btn {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 4px;
  }
  .shell-header-left .local-logo-link {
    order: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
  }
  .casino-logo {
    max-width: 100%;
    height: 32px;
    max-height: 32px;
    object-fit: contain;
  }
  @media (max-width: 380px) {
    .upper-nav {
      padding: 10px 10px;
    }
    .entry-buttons {
      gap: 4px;
    }
    .entry-buttons .btn-user-enter,
    .entry-buttons .join-now-btn {
      padding: 5px 8px;
      font-size: 11px;
      border-radius: 4px;
    }
    .casino-logo {
      height: 32px;
      max-height: 32px;
    }
    .burger-toggle {
      width: 18px;
      height: 14px;
    }
  }
  .app-mobile-controls-row {
    display: none;
  }
  .shell-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;
  }
  .ui-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;
  }
  .phone-nav-bar {
    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;
  }
  .phone-nav-bar::-webkit-scrollbar {
    display: none;
  }
  .phone-nav-bar 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;
  }
  .phone-nav-bar a .web-icon {
    font-size: 11px;
    color: var(--accent-gold);
  }
  .bonus-header {
    padding: 50px 16px;
    min-height: auto;
    text-align: center;
    background-position: center center;
    background-size: cover;
    aspect-ratio: auto;
  }
  .bonus-header::before {
    background: rgba(0, 0, 0, 0.6);
  }
  .intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bonus-headline {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .layout-hero-offer-label {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .intro-paragraph {
    font-size: 13px;
    margin: 0 auto 20px;
  }
  .btn-take-bonus {
    padding: 12px 30px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
  }
  .games-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .games-list > .game-item:nth-child(3n+1):last-child {
    display: none;
  }
  .games-list > .game-item:nth-child(3n+1):nth-last-child(2),
  .games-list > .game-item:nth-child(3n+1):nth-last-child(2) ~ .game-item {
    display: none;
  }
  .site-slot-char {
    font-size: 24px;
  }
  .post-container h1 {
    font-size: 20px;
    margin-top: 10px;
  }
  .post-container h2 {
    font-size: 16px;
  }
  .post-container table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .post-container th, 
  .post-container td {
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .lower-panel {
    padding: 32px 16px 20px;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .theme-footer-brand {
    text-align: left;
    align-items: flex-start;
  }
  .theme-footer-brand img {
    max-width: 110px;
  }
  .post-container p,
  .post-container ul li,
  .post-container ol li,
  .screen-faq-summary,
  .shell-faq-content p {
    font-size: 14px;
  }
}
:root { --cta-text-color: #ffffff; }


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

.modified-date{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)}
.site-last-updated-icon{color:var(--accent-gold,#3b82f6);min-width:16px}
@media(max-width:700px){h1{text-align:center}}

.modal-curtain { 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; }
.modal-curtain.app-show { opacity: 1; visibility: visible; }
.dialog-shell { background-color: var(--bg-panel, #0b1220); background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../../ui/pic_assets/gqbet-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); }
.modal-curtain.app-show .dialog-shell { transform: scale(1); }
.close-control { 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; }
.dialog-message { 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; }
.site-popunder-highlight { color: var(--accent-gold, #ffd014); }
.btn-optin { 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-optin: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, .page-sticky-header-wrapper, .primary-head-section, .app-header-wrap, .upper-nav, .custom-gateway-banner, .global-first-view, .bonus-header, .local-lead-banner, .view-games-wrapper, .view-slots-wrapper, .site-casino-slots-area, .lobby-section, .custom-article-section, .global-info-section, .shell-bottom-bar, .shell-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 .custom-header-holder, header .site-header-inner, header .header-area, header .public-header-shell, header .screen-navbar-box, header .custom-portal-header, header .public-header-wrapper, header .app-header-content, header .layout-navbar-container, section .public-promo-wrapper, section .screen-promo-content, section .intro-container, section .app-banner-inner, section .global-hero-wrapper, .screen-hero-content, .app-section-container, .view-games-wrapper > .app-section-container, .view-slots-wrapper > .app-section-container, .lobby-section > .app-section-container, .site-casino-slots-area > .app-section-container, .shell-slots-area > .app-section-container, section .main-slots-toolbar, section .shell-games-list, section .games-list, section .core-slots-layout, section .main-slots-flex-grid, main, article, .layout-article-wrapper, .public-article-shell, .app-article-body, .app-article-content, .main-article-holder, .view-post-wrapper, .post-container, .ui-info-wrapper, .content-main-article-box, .main-content-wrapper, .custom-article-section .app-section-container, .brand-article-inner, .core-article-grid, .portal-post-content, .page-content-area, .global-footer-wrapper, .core-footer-blocks-grid, .shell-footer-bottom, footer .public-footer-wrap-box, footer .view-footer-main-box, footer .footer-wrap-box, footer .page-footer-layout-box, footer .screen-footer-info-grid, footer .custom-footer-widgets-grid { max-width: 1260px; margin-left: auto; margin-right: auto;  box-sizing: border-box; width: 100%; } }
@media (min-width: 769px) { .public-promo-wrapper > p, .screen-promo-content > p, .app-banner-inner > p, .global-hero-wrapper > p, .theme-banner-text, .brand-welcome-paragraph, .site-banner-desc, .global-welcome-desc, .layout-intro-desc, .ui-promo-desc { max-width: 620px; } }
.web-slot-img-wrapper { border-radius: 6px; }
@media (min-width: 769px) { .bonus-header, .custom-gateway-banner, .global-first-view { padding-top: 88px; padding-bottom: 88px; min-height: 478px; } }
@media (min-width: 769px) { .games-list, .shell-games-list, .core-slots-layout, .main-slots-flex-grid { gap: 15px; } }
@media (max-width: 768px) { .games-list, .shell-games-list, .core-slots-layout, .main-slots-flex-grid { gap: 8px; } }
.lower-panel, .shell-bottom-bar, .shell-app-footer { padding-top: 39px; padding-bottom: 39px; }
.btn-take-bonus, .brand-btn-join-now, .app-enter-button { border-radius: 4px; }
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) {
  .games-list, .portal-games-grid, .core-slots-layout, .web-games-layout, .core-slots-matrix, .core-games-matrix, .content-lobby-grid, .core-slots-display, .theme-games-display, .global-slots-row, .primary-games-row, .core-slots-list, .shell-games-list, .core-slots-deck, .web-games-deck, .layout-lobby-layout, .main-slots-gallery, .shell-games-gallery, .layout-lobby-matrix, .main-slots-flex-grid, .portal-games-flex-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

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