:root {
  --success-color: #2ecc71;
  --success-color-light: #732fb6;
  --icon-color: #fd7b82;
  --header-bg-color: #1a0d1f;
  --sidebar-bg-color: #732fb6;
  --bonus-card-bg-color: #d24a98;
  --btn-round: 2rem;
  --btn-text-color: #ffffff;
  --table-head-bg-color: #4a1a4f;
  --table-head-text-color: #ffe8ee;
  --table-cell-bg-color: #1a0d1f;
  --table-cell-text-color: #f3dce4;
  --faq-bg-color: #d24a98;
  --faq-divider-color: #4a2a50;
  --faq-border-color: #4a2a50;
  --faq-round: 1rem;
  --base: 1rem;
  --container-width: 1414px;
  --container-padding-x: 20px;
  --header-height: 4rem;
  --sidebar-width-short: 4rem;
  --sidebar-width: 20rem;
  --transition-duration: 0.2s;
  --games-grid-cols: 6;
  --seo-content-width: var(--container-width);
  --round-sm: 0.5rem;
  --round-base: 1rem;
  --round-l: 2rem;
  --font-primary: "Montserrat", Arial, sans-serif;
  --button-bg-color: #fd717a;
  --button-text-color: #ffffff;
  --fh-bg-color: #1a0d1f;
  --text-color: #f3dce4;
  --title-color: #ffffff;
  --menu-color: #732fb6;
  --table-1-color: #2a1530;
  --table-2-color: #3a1c40;
  --main-theme-color: #140814;
  --button-bg-hover: #d24a98;
  --border-color: #4a2a50;
  --footer-text-color: #e0b8c8;
  --bg-color: #140814;
  --divider-color: #4a2a50;
  --white-color: #ffffff;
  --accent-color: #fd717a;
  --decor-gradient: radial-gradient(circle, #fd7b82 0%, transparent 70%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  border: none;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body,
html,
.shell {
  height: 100%;
}

body {
  background-color: var(--main-theme-color);
  color: var(--text-color);
  font-family: var(--font-primary);
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  min-width: 24px;
}

button {
  background: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
  font-weight: 700;
  line-height: 120%;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.6rem;
}
p {
  font-size: 1rem;
  line-height: 140%;
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.2rem;
  }
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-width);
  padding: 0 var(--container-padding-x);
  width: 100%;
}

/* CTA core — visual of primary offer buttons hangs on this selector */
[role="button"][aria-label="arialabel-spinpug"] {
  cursor: pointer;
  outline: none;
}

[role="button"][aria-label="arialabel-spinpug"].btn {
  align-items: center;
  background: var(--success-color-light);
  border: 2px solid var(--border-color);
  border-radius: var(--btn-round);
  color: var(--button-text-color);
  display: inline-flex;
  font-weight: 600;
  gap: 5px;
  justify-content: center;
  padding: 6px 10px;
  text-align: center;
  transition: var(--transition-duration);
}

[role="button"][aria-label="arialabel-spinpug"].btn-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  width: 100%;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  color: var(--button-text-color);
  border-radius: 6px;
  background: var(--button-bg-color);
  margin: 25px 0;
}

[role="button"][aria-label="arialabel-spinpug"]:focus-visible {
  outline: 2px solid var(--button-bg-color);
  outline-offset: 2px;
}

.btn {
  align-items: center;
  background: var(--button-bg-color);
  border: 2px solid var(--border-color);
  border-radius: var(--btn-round);
  color: var(--button-text-color);
  display: inline-flex;
  font-weight: 600;
  gap: 5px;
  justify-content: center;
  padding: 6px 10px;
  text-align: center;
  transition: var(--transition-duration);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-color);
}

.btn-success {
  background: var(--success-color);
  border-color: var(--success-color);
}

.btn-wide {
  padding: 0.4em 0.625em;
  width: 100%;
}

.btn-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  width: 100%;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  color: var(--button-text-color);
  border-radius: 6px;
  background: var(--button-bg-color);
  margin: 25px 0;
}

@media (any-hover: hover) {
  .btn:hover,
  .btn-lg:hover,
  .btn-success:hover {
    background: var(--button-bg-hover);
    border-color: var(--button-bg-hover);
  }
}

/* Layout */
.sidebar {
  background: var(--sidebar-bg-color);
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  max-width: var(--sidebar-width-short);
  position: fixed;
  top: 0;
  transition: 0.25s;
  width: 100%;
  z-index: 900;
}

.sidebar.is-expanded {
  max-width: var(--sidebar-width);
}

.page {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: var(--sidebar-width-short);
  transition: 0.25s;
  width: calc(100% - var(--sidebar-width-short));
  max-width: none;
}

.page.is-expanded {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
}

.topbar {
  background: var(--fh-bg-color);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.24),
    0 0 1px 0 rgba(0, 0, 0, 0.32);
  height: var(--header-height);
  left: 0;
  margin-left: var(--sidebar-width-short);
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.25s;
  width: calc(100% - var(--sidebar-width-short));
  max-width: none;
  z-index: 900;
}

.topbar.is-expanded {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
}

.topbar.is-expanded .brand {
  display: none;
}

.header-side {
  align-items: center;
  background: var(--fh-bg-color);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.24);
  display: flex;
  height: var(--header-height);
  max-height: var(--header-height);
}

.menu-toggle {
  align-items: center;
  aspect-ratio: 1 / 1;
  color: var(--icon-color);
  display: inline-flex;
  height: auto;
  justify-content: center;
  max-height: 100%;
  width: 4rem;
}

.menu-toggle.is-expanded {
  transform: scaleX(-1);
}

.sidebar .brand {
  display: none;
  margin: 0 auto;
}

.sidebar.is-expanded .brand {
  display: inline-block;
}

.brand {
  display: inline-block;
  max-width: 125px;
}

.brand img {
  width: 100%;
  min-width: 100px;
}

.side-scroll {
  display: none;
  flex-direction: column;
  height: 90%;
  justify-content: space-between;
  overflow-y: auto;
  padding: 1rem 0.5rem;
}

.sidebar.is-expanded .side-scroll {
  display: flex;
}

.side-scroll::-webkit-scrollbar {
  width: 0;
}

.nav-featured {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.nav-tile,
.nav-link {
  background: var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-duration);
}

.nav-tile {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.5rem;
  overflow: hidden;
  padding: 5px 0.5rem;
  position: relative;
}

.nav-tile::before {
  content: "";
  filter: blur(30px);
  height: 120px;
  left: -15px;
  opacity: 0.7;
  position: absolute;
  top: -80px;
  width: 120px;
  z-index: 1;
}

.nav-tile.is-lg {
  font-size: 0.875rem;
  justify-content: center;
}

.nav-tile img,
.nav-tile span,
.nav-link img,
.nav-link span {
  position: relative;
  z-index: 2;
}

.nav-tile img,
.nav-tile svg {
  max-width: 28px;
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}

.nav-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.nav-grid .spg-side-promos,
.nav-grid .err-side-promos {
  grid-column: 1 / -1;
}

.nav-stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}

.nav-link {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-link svg,
.nav-link .nav-ico {
  max-width: 1.25rem;
  color: #fff;
}

.side-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.sidebar .side-foot .btn,
.sidebar .side-foot .app-chip,
.sidebar .side-foot .btn-wide {
  width: 12.5rem;
  max-width: 12.5rem;
  margin-left: 0;
  margin-right: auto;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.sidebar .side-foot .app-chip {
  border-radius: var(--btn-round);
}

.app-chip {
  align-items: center;
  background: var(--button-bg-color);
  border-radius: 5px;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.5rem;
  width: 100%;
}

.app-chip img {
  max-width: 40px;
}

.app-chip span {
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-mini {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0 0.5rem;
}

.sidebar.is-expanded .nav-mini {
  display: none;
}

.mini-btn {
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: var(--round-sm);
  display: flex;
  justify-content: center;
  width: 3rem;
  transition: var(--transition-duration);
}

.mini-btn img,
.mini-btn svg,
.mini-sep svg,
.nav-mini svg {
  max-width: 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}

.nav-mini .mini-sep,
.nav-mini .mini-btn {
  color: #fff;
}

.mini-sep {
  display: inline-flex;
  justify-content: center;
  padding: 5px 0;
  width: 100%;
}

.mini-sep.is-top {
  border-bottom: 1px solid var(--divider-color);
}
.mini-sep.is-bot {
  border-top: 1px solid var(--divider-color);
}

@media (any-hover: hover) {
  .mini-btn:hover {
    background: rgba(0, 0, 0, 0.15);
  }
}

.menu-backdrop {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  .sidebar.is-expanded {
    display: block;
    max-width: var(--sidebar-width);
    z-index: 1200;
  }
  .page,
  .page.is-expanded,
  .topbar,
  .topbar.is-expanded {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .menu-backdrop.is-on {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 4, 12, 0.55);
    z-index: 1100;
  }
  .hide-desktop {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .hide-mobile {
    display: none;
  }
}

body.is-locked,
.is-locked {
  overflow: hidden;
}

.topbar-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
}

.brand-lockup {
  align-items: center;
  display: flex;
  justify-content: center;
}

.mobile-toggle {
  color: var(--icon-color);
  margin-left: 10px;
  margin-right: 5px;
  transform: scaleX(-1);
}

.segment {
  background: var(--border-color);
  border-radius: var(--round-l);
  display: inline-flex;
}

.segment-btn {
  align-items: center;
  border-radius: var(--round-l);
  display: flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 5px;
  padding: 0.4rem;
}

.segment-btn svg {
  color: var(--icon-color);
}
.segment-btn.is-on {
  background: var(--button-bg-color);
}
.segment-btn.is-on span,
.segment-btn.is-on svg {
  color: var(--button-text-color);
}

.top-actions {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.search-btn {
  color: var(--icon-color);
}

.mobile-tabs {
  display: none;
  border-radius: var(--round-l);
  margin-bottom: 15px;
  width: 100%;
}

.mobile-tabs .segment-btn {
  flex: 1 1 50%;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .topbar-inner {
    gap: 0;
  }
  .segment {
    display: none;
  }
  .search-btn {
    display: none;
  }
  .brand {
    max-width: 100px;
  }
  .mobile-tabs {
    display: inline-flex;
    height: auto;
  }
}

.main {
  padding-top: calc(var(--header-height) + 1rem);
}

/* Promo cards */
.promo-row {
  height: 200px;
  min-height: 175px;
  overflow: hidden;
}

.promo-scroller {
  height: 100%;
  overflow-x: auto;
}

.promo-scroller::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.promo-track {
  display: flex;
  gap: 0.5rem;
  height: 100%;
}

.promo-card {
  background: var(--bonus-card-bg-color);
  border-radius: var(--round-base);
  display: inline-block;
  flex: 1 1 0;
  height: 100%;
  min-width: 0;
  max-width: none;
  overflow: hidden;
  position: relative;
}

.promo-media {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.promo-body {
  align-items: flex-start;
  background: linear-gradient(161deg, var(--fh-bg-color) 0%, var(--table-1-color) 90%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  inset: 0;
  justify-content: space-between;
  padding: 0.75rem;
  position: absolute;
  width: 100%;
}

.promo-tag {
  background: var(--button-bg-color);
  border-radius: var(--round-sm);
  color: var(--button-text-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 0.5rem;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.promo-copy {
  color: var(--text-color);
  position: relative;
  z-index: 3;
}

.promo-lead {
  font-weight: 600;
}

.promo-body .btn {
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 1024px) {
  .promo-row {
    height: auto;
  }
  .promo-card {
    height: 175px;
  }
}

@media screen and (max-width: 768px) {
  .promo-row {
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  .promo-scroller {
    height: auto;
    overflow-x: visible;
  }
  .promo-track {
    flex-direction: column;
    height: auto;
  }
  .promo-card {
    flex: 1 0 auto;
    height: auto;
    max-width: 100%;
    min-height: 190px;
    width: 100%;
  }
  .promo-media {
    height: 150px;
  }
}

/* Games */
.games-block {
  margin: 2rem 0;
}
.games-head {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.games-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title-color);
}
.games-scroll {
  overflow-x: auto;
}
.games-scroll::-webkit-scrollbar {
  height: 0;
}
.games-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(var(--games-grid-cols), minmax(0, 1fr));
}

.game-card {
  display: inline-flex;
  flex-direction: column;
  max-width: 208px;
}

.game-thumb {
  aspect-ratio: 1 / 1;
  background: var(--menu-color);
  border-radius: var(--round-base);
  margin-bottom: 0.5rem;
  max-height: 235px;
  overflow: hidden;
  position: relative;
}

.game-thumb img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition-duration);
  width: 100%;
}

.game-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  position: absolute;
}

.game-caption {
  background: linear-gradient(180deg, rgba(109, 0, 216, 0), #47008d);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: 0;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  text-align: center;
}

.game-name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (any-hover: hover) {
  .game-card:hover .game-overlay {
    opacity: 1;
  }
  .game-card:hover .game-thumb img {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  .games-title {
    font-size: 1.25rem;
  }
}

.games-embed {
  margin: 1.5rem 0 2rem;
}

.games-embed .games-title {
  font-size: 1.35rem;
  margin-top: 0;
}

.games-embed .games-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.games-embed .game-card {
  width: 100%;
  max-width: none;
}

@media screen and (min-width: 769px) {
  .games-embed .games-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(208px, 1fr));
  }
}

.games-embed .games-head {
  flex-wrap: wrap;
}

.games-embed .games-head .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Article / SEO */
.article {
  margin-bottom: 2rem;
  user-select: text;
}

.article-inner {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 var(--container-padding-x);
  width: 100%;
}

.article h1,
.article h2 {
  margin-top: 2rem;
}
.article h3,
.article h4 {
  margin-top: 1rem;
}
.article p {
  margin-top: 1rem;
  color: var(--text-color);
}
.article li {
  margin-left: 2.5rem;
  margin-top: 0.5rem;
  color: var(--text-color);
  font-size: 1rem;
}
.article ul li {
  list-style-type: disc;
}
.article ol li {
  list-style-type: decimal;
}
.article a {
  color: var(--button-bg-color);
  text-decoration: underline;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.table-wrap::-webkit-scrollbar {
  height: 5px;
}
.table-wrap::-webkit-scrollbar-thumb {
  background-color: var(--menu-color);
  border-radius: 20px;
}

.article table,
.article td,
.article th {
  border: 2px solid var(--border-color);
  border-collapse: collapse;
}

.article table {
  margin: 1rem 0;
  width: auto;
  max-width: 100%;
}

.article thead th {
  background: var(--table-head-bg-color);
  color: var(--table-head-text-color);
  padding: 0.5rem 1rem;
}

.article tbody td {
  background: var(--table-cell-bg-color);
  color: var(--table-cell-text-color);
  padding: 1rem;
  text-align: center;
}

.article img.inline-shot {
  display: block;
  margin: 1.5rem 0;
  border-radius: var(--round-base);
  max-width: 100%;
}

.shot-cta {
  display: block;
  margin: 1.5rem 0;
  border-radius: var(--round-base);
  overflow: hidden;
  max-width: 100%;
}

.spg-shot-vista {
  max-width: 916px;
  margin-left: 0;
  margin-right: auto;
}

.shot-cta-inline {
  width: fit-content;
  max-width: 100%;
}

.shot-cta-inline img,
.shot-cta .inline-shot {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.shot-cta img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: var(--round-base);
  transition: transform var(--transition-duration);
}

@media (any-hover: hover) {
  .shot-cta:hover img {
    transform: scale(1.02);
  }
}

.content-banner {
  margin: 1.75rem 0 0.5rem;
  overflow: hidden;
  border-radius: var(--round-base);
}

.content-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0;
}

.note {
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  background: var(--fh-bg-color);
  border-left: 5px solid var(--button-bg-color);
  margin-top: 1.5rem;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.875rem;
  margin: 0 auto 1rem;
  max-width: var(--container-width);
  padding: 0 var(--container-padding-x);
  width: 100%;
  color: var(--footer-text-color);
}

.crumb a {
  color: var(--button-bg-color);
}

.page-hero {
  margin: 0 auto 1.5rem;
  max-width: var(--container-width);
  padding: 0 var(--container-padding-x);
  width: 100%;
  border-radius: var(--round-base);
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 800px;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  margin: 1.5rem 0;
}

.pay-row [role="button"] {
  display: inline-flex;
  align-items: center;
}

.pay-row img {
  height: 28px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
}

/* FAQ */
.faq {
  margin: 2rem auto;
  max-width: var(--container-width);
  padding: 0 var(--container-padding-x);
  width: 100%;
}

.faq h2 {
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-item summary {
  color: var(--text-color);
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--table-1-color);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-weight: 700;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-body {
  padding: 15px 20px;
  background: var(--table-2-color);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
}

.footer-top {
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 2.5rem;
}

.footer-nav {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-nav a,
.footer-nav [role="button"] {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--footer-text-color);
}

.footer-help h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-help p {
  color: var(--footer-text-color);
  margin-bottom: 1rem;
}

.help-mail {
  align-items: center;
  display: inline-flex;
  font-weight: 600;
  gap: 5px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-bottom .app-chip {
  max-width: 180px;
  margin-top: 0;
  width: auto;
}

.rg-row {
  align-items: center;
  display: flex;
  margin: 0 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.rg-row img {
  max-height: 40px;
  width: auto;
}

.legal {
  color: var(--text-color);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
}

.legal p {
  margin-top: 0.75rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}

.socials [role="button"] {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--border-color);
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    justify-content: center;
    flex-direction: column;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .article-inner,
  .faq,
  .crumb,
  .page-hero {
    max-width: 100%;
  }
  .article th,
  .article td {
    padding: 5px !important;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  table {
    word-break: break-word;
  }
}

.err-box {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.err-box h1 {
  margin-bottom: 1rem;
}
.err-box p {
  margin-bottom: 1.5rem;
}
