:root {
  --black: #050505;
  --panel: #151515;
  --wine: #5d0010;
  --wine-2: #870b23;
  --red: #df3151;
  --pink: #ff6c82;
  --gold: #f3d28b;
  --cream: #e9e4b5;
  --green: #6bd94d;
  --muted: #a9a3a3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: #fff;
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  min-width: 320px;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -18%, rgba(111, 5, 24, .22), transparent 30%),
    var(--black);
}

.page {
  width: min(1460px, calc(100% - 104px));
  margin: 0 auto;
  padding: 0 28px 120px;
}

.side-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: 72px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #080808 0 10%, #290008 48%, #070707 100%);
  border-right: 1px solid #290008;
}

.side-logo {
  width: 58px;
  height: 33px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.side-logo img {
  width: 136px;
  max-width: none;
}

.side-nav button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #a8a3a3;
  font-size: 19px;
  cursor: pointer;
}

.side-nav button:hover,
.side-nav button.active {
  color: var(--gold);
  background: #5b0615;
  box-shadow: inset 3px 0 0 #e09b24;
}

.topbar {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-logo {
  display: none;
}

.desktop-shortcuts {
  display: flex;
  gap: 4px;
}

.desktop-shortcuts button {
  border: 0;
  background: transparent;
  color: #c5c0c0;
  padding: 10px 16px;
  cursor: pointer;
}

.desktop-shortcuts button:first-child {
  color: var(--pink);
}

.auth-actions {
  margin-left: auto;
  display: flex;
  gap: 12px;
}

.auth-actions button,
.promo-copy button {
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.auth-actions button {
  min-height: 36px;
  padding: 0 18px;
}

.login {
  color: #fff;
  background: linear-gradient(#8e1128, #690719);
  box-shadow: 0 0 0 2px #b64459;
}

.register,
.promo-copy button {
  color: #120e08;
  background: linear-gradient(135deg, #e9b95b, #fae6ad);
}

.mobile-tabs {
  display: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.promos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo-card {
  position: relative;
  min-height: 236px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: #4f0012;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(56, 0, 10, .76), transparent 72%);
}

.promo-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-copy {
  min-height: 236px;
  width: 55%;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
}

.promo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #b41838;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-copy small {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-copy strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.3vw, 23px);
  line-height: 1.15;
}

.promo-copy button {
  margin-top: 10px;
  padding: 9px 14px;
  font-size: 12px;
}

.section-heading {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2,
.section-heading .section-title {
  margin: 0;
  color: #f7f4f2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.see-all {
  border: 0;
  border-radius: 8px;
  padding: 8px 13px;
  background: var(--wine-2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.see-all span {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 9px;
  background: #f2d99b;
  color: #3b1b12;
  font-size: 12px;
}

.arrow {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: #191919;
  color: #8b8585;
  font-size: 24px;
  cursor: pointer;
}

.big-wins {
  min-width: 0;
}

.win-icon {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #210007;
  background: #fff;
  font: 16px Arial, sans-serif;
  vertical-align: 2px;
}

.big-win-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.win-card {
  min-width: 0;
  height: 91px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  border-radius: 13px;
  overflow: hidden;
  background: linear-gradient(115deg, #4c0614, #290007);
}

.win-card img {
  width: 92px;
  height: 91px;
  object-fit: cover;
}

.win-card div {
  min-width: 0;
  padding: 10px 9px;
  display: flex;
  flex-direction: column;
}

.win-card strong {
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.win-card small {
  margin-top: 3px;
  color: var(--pink);
}

.win-card b {
  margin-top: auto;
  color: var(--green);
  font-size: 17px;
}

.category {
  min-width: 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.category-featured .game-grid {
  grid-template-rows: repeat(2, auto);
}

.game-card {
  position: relative;
  width: 100%;
  aspect-ratio: .63;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #250009;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}

.game-card:hover img {
  transform: scale(1.04);
  filter: brightness(.72);
}

.favorite {
  position: absolute;
  top: 7px;
  right: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 1px 3px #000;
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 7px;
  border-radius: 5px;
  color: #fff;
  background: #36a851;
  font-size: 12px;
  font-weight: 900;
}

.game-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 56px;
  padding: 25px 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent, rgba(0, 0, 0, .94));
  text-align: center;
}

.game-overlay strong {
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.game-overlay small {
  margin-top: 4px;
  color: #c9c3c3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.winners-panel {
  margin-top: 18px;
}

.table-tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #40000c;
}

.table-tabs button {
  position: relative;
  border: 0;
  padding: 11px 0;
  color: #e45d72;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.table-tabs button.active {
  color: #fff;
}

.table-tabs button.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--pink);
}

.table-tabs span {
  margin-left: auto;
  color: #d66375;
  font-size: 12px;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
  font-size: 12px;
}

th {
  padding: 7px 10px;
  color: #f47a8e;
  font-weight: 700;
  text-align: left;
}

td {
  padding: 8px 10px;
  background: #58000e;
}

td:first-child {
  border-radius: 7px 0 0 7px;
  color: #fff;
  font-weight: 700;
}

td:nth-last-child(2) {
  color: #6aaccd;
  background: #28b7ae;
  font-weight: 900;
}

td:last-child {
  border-radius: 0 7px 7px 0;
  color: var(--green);
  background: #58000e;
  font-weight: 900;
}

.providers {
  padding-bottom: 34px;
  border-bottom: 1px solid #261014;
}

.provider-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.provider {
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #3e000c, #180004);
}

.provider img {
  max-width: 64%;
  max-height: 35px;
}

.payments {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  opacity: .9;
}

.payments img {
  width: 72px;
  height: 30px;
  object-fit: contain;
}

footer {
  padding: 48px 0 20px;
  color: #886b70;
  font-size: 12px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 136px;
}

.footer-brand button {
  border: 1px solid #5a1522;
  border-radius: 5px;
  padding: 7px 11px;
  background: #46000d;
  color: #fff;
  font-size: 12px;
}

.footer-links {
  margin: -65px 0 36px 280px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px 24px;
}

.footer-links a {
  color: #bb5363;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-certificates {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
}

.cga {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 30px;
  color: #00241f;
  background: #81edce;
  font-size: 13px;
  font-weight: 900;
}

.cookie-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  min-height: 56px;
  padding: 10px max(20px, calc((100vw - 880px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #dfc9cd;
  background: #57000d;
  box-shadow: 0 -3px 18px rgba(0, 0, 0, .45);
  font-size: 12px;
  text-align: center;
}

.cookie-bar strong {
  color: var(--gold);
}

.cookie-bar button {
  border: 0;
  border-radius: 7px;
  padding: 8px 17px;
  color: #2a1700;
  background: #f1d690;
  font-weight: 800;
  cursor: pointer;
}

.support,
.back-top {
  position: fixed;
  right: 18px;
  z-index: 45;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 11px;
  background: #8e1128;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
  cursor: pointer;
}

.support {
  bottom: 76px;
}

.back-top {
  bottom: 126px;
}

.bottom-nav {
  display: none;
}

@media (max-width: 1180px) {
  .page {
    width: calc(100% - 72px);
    margin-left: 72px;
  }

  .game-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .game-grid .game-card:nth-child(n+13) {
    display: none;
  }

  .big-win-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .win-card:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 78px;
    overflow-x: hidden;
  }

  .side-nav,
  .desktop-shortcuts,
  .desktop-only {
    display: none;
  }

  .page {
    width: 100%;
    margin: 0;
    padding: 0 0 112px;
  }

  .topbar {
    height: 72px;
    padding: 8px 14px;
    background: #050505;
  }

  .mobile-logo {
    width: 64px;
    display: block;
    overflow: hidden;
  }

  .mobile-logo img {
    width: 120px;
    max-width: none;
    transform: translateX(-2px);
  }

  .auth-actions {
    gap: 10px;
  }

  .auth-actions button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 14px;
  }

  .mobile-tabs {
    margin: 0 13px 10px;
    height: 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 10px;
    background: #1a1a1a;
  }

  .mobile-tabs button {
    border: 0;
    color: var(--pink);
    background: transparent;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-tabs button.active {
    border-radius: 10px;
    color: #fff;
    background: #9e102b;
  }

  main {
    gap: 19px;
  }

  .promos {
    margin: 0 0 5px 13px;
    padding-right: 13px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .promos::-webkit-scrollbar,
  .big-win-track::-webkit-scrollbar,
  .game-grid::-webkit-scrollbar {
    display: none;
  }

  .promo-card {
    min-width: calc(100vw - 26px);
    min-height: 238px;
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .promo-card img {
    object-position: 58% center;
  }

  .promo-copy {
    min-height: 238px;
    width: 63%;
    padding: 16px 15px;
  }

  .promo-label {
    top: 14px;
    left: 15px;
    font-size: 12px;
  }

  .promo-copy strong {
    font-size: 19px;
  }

  .promo-copy button {
    padding: 10px 14px;
    font-size: 13px;
  }

  .big-wins,
  .category,
  .providers {
    padding-left: 13px;
  }

  .section-heading {
    min-height: 34px;
    padding-right: 13px;
  }

  .section-heading h2,
  .section-heading .section-title {
    font-size: 21px;
  }

  .win-icon {
    display: none;
  }

  .section-actions .arrow {
    display: none;
  }

  .see-all {
    padding: 4px 0;
    color: var(--pink);
    background: transparent;
    font-size: 14px;
  }

  .see-all span {
    display: none;
  }

  .big-win-track {
    padding-right: 13px;
    display: flex;
    gap: 9px;
    overflow-x: auto;
  }

  .win-card {
    min-width: 268px;
    height: 100px;
    grid-template-columns: 100px minmax(0, 1fr);
    border-radius: 13px;
  }

  .win-card img {
    width: 100px;
    height: 100px;
  }

  .win-card strong {
    font-size: 15px;
  }

  .win-card b {
    font-size: 19px;
  }

  .game-grid {
    padding-right: 13px;
    display: flex;
    gap: 9px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .category-featured .game-grid {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(7, calc((100vw - 44px) / 3));
  }

  .game-grid .game-card,
  .game-grid .game-card:nth-child(n+13) {
    display: block;
    flex: 0 0 calc((100vw - 44px) / 3);
    aspect-ratio: .73;
    border-radius: 11px;
    scroll-snap-align: start;
  }

  .game-overlay {
    min-height: 44px;
    padding: 19px 4px 6px;
  }

  .game-overlay strong {
    font-size: 12px;
  }

  .favorite {
    top: 5px;
    right: 5px;
    font-size: 19px;
  }

  .winners-panel {
    padding-right: 13px;
  }

  .table-tabs {
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .table-tabs span {
    display: none;
  }

  table {
    min-width: 780px;
  }

  .provider-track {
    padding-right: 13px;
    display: flex;
    overflow-x: auto;
  }

  .provider {
    flex: 0 0 145px;
  }

  .payments {
    padding-right: 13px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .payments img {
    flex: 0 0 64px;
  }

  footer {
    padding: 36px 13px 20px;
  }

  .footer-brand {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-links {
    margin: 30px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-bar {
    right: 10px;
    bottom: 87px;
    left: 10px;
    min-height: 68px;
    padding: 10px 10px 10px 18px;
    justify-content: space-between;
    border-radius: 16px;
    gap: 12px;
    font-size: 13px;
    text-align: left;
  }

  .cookie-bar button {
    padding: 11px 16px;
    font-size: 14px;
  }

  .bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    height: 78px;
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #3d0009;
    box-shadow: 0 -5px 22px rgba(0, 0, 0, .5);
  }

  .bottom-nav button {
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--pink);
    background: transparent;
    font-size: 12px;
  }

  .bottom-nav button span {
    font-size: 25px;
    line-height: 1;
  }

  .bottom-nav button.active {
    color: var(--gold);
    background: radial-gradient(circle at 50% 30%, #5f1d26 0 20px, transparent 21px);
  }

  .support {
    right: 13px;
    bottom: 175px;
  }

  .back-top {
    display: none;
  }
}

/* Desktop chrome and lower-page content, matched to the supplied original. */
@media (min-width: 701px) {
  .page {
    width: min(1470px, calc(100% - 110px));
    margin-left: max(84px, calc((100vw - 1402px) / 2));
    margin-right: 0;
    padding: 0 0 90px;
  }

  .topbar {
    height: 70px;
  }

  .header-brand {
    position: fixed;
    z-index: 65;
    top: 0;
    left: 0;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    background: #050505;
  }

  .brand-logo {
    width: 152px;
    height: 38px;
    display: grid;
    place-items: center;
    border-right: 1px solid #3d0710;
    padding-right: 16px;
  }

  .brand-logo img {
    width: 136px;
    display: block;
  }

  .menu-toggle,
  .search-toggle {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle {
    padding: 8px 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #ff667b;
  }

  .search-toggle {
    position: relative;
    background: #1a1a1a;
  }

  .search-toggle span {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 11px;
    height: 11px;
    border: 2px solid #c8c5c6;
    border-radius: 50%;
  }

  .search-toggle span::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    right: -6px;
    bottom: -3px;
    border-radius: 2px;
    background: #c8c5c6;
    transform: rotate(45deg);
  }

  .auth-actions {
    position: fixed;
    z-index: 65;
    top: 17px;
    right: 18px;
  }

  .side-nav {
    top: 70px;
    width: 68px;
    padding: 14px 9px;
    gap: 10px;
    background: linear-gradient(180deg, #160005, #310009 70%, #260007);
    border-right: 1px solid #4b0713;
  }

  .side-nav button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    font-size: 20px;
  }

  .side-nav button:hover,
  .side-nav button.active {
    background: #610b1a;
    box-shadow: none;
  }

  .side-nav button.active {
    color: #f7e3e5;
  }

  .side-nav .side-promo {
    color: #e7aa27;
    background: transparent;
  }

  .side-nav .side-phone {
    color: #1dd333;
  }

  .side-separator {
    width: 48px;
    height: 1px;
    margin: 2px 0;
    background: #5c0b18;
  }

  .casino-disc {
    font-size: 28px;
    letter-spacing: -3px;
  }

  main {
    padding-top: 50px;
  }

  .promos {
    display: flex;
    gap: 0;
  }

  .promo-card {
    display: none;
    flex: 0 0 486px;
    min-height: 242px;
  }

  .promo-card:nth-child(2) {
    display: block;
  }

  .promo-card:nth-child(2) .promo-copy {
    min-height: 242px;
  }
}

.seo-zone {
  margin-top: 62px;
  padding: 0 24px 30px;
  color: #ff6b7c;
}

.seo-content {
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  transition: max-height .35s ease, opacity .25s ease;
}

.seo-content h1,
.seo-content h2,
.seo-content h3 {
  margin: 27px 0 16px;
  color: #ff7887;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.seo-content h1 {
  margin-top: 0;
  font-size: 34px;
}

.seo-content h2 {
  font-size: 27px;
}

.seo-content h3 {
  font-size: 21px;
}

.seo-content p {
  margin: 0 0 16px;
}

.seo-content ul,
.seo-content ol {
  margin: 10px 0 20px 25px;
  padding-left: 15px;
}

.seo-content a {
  color: #315cff;
  text-decoration: none;
}

.seo-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  color: #f48a98;
}

.seo-content th,
.seo-content td {
  padding: 10px 12px;
  border: 1px solid #5b1722;
  background: #130004;
}

.seo-faq {
  margin: 0;
}

.seo-faq dt {
  margin-top: 20px;
  color: #ff8b98;
  font-weight: 800;
}

.seo-faq dd {
  margin: 7px 0 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #391018;
}

.seo-zone.is-collapsed .seo-content {
  max-height: 0;
  opacity: 0;
}

.seo-toggle {
  display: block;
  margin: 20px auto 0;
  border: 1px solid #ba4356;
  border-radius: 8px;
  padding: 8px 14px;
  color: #fff;
  background: #8d1429;
  box-shadow: inset 0 0 0 1px #5a0715;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  margin-top: 74px;
  padding: 0 24px 20px;
  color: #ee6073;
  font-size: 12px;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 58px;
  padding-bottom: 38px;
}

.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}

.site-footer .footer-brand img {
  width: 150px;
}

.site-footer .footer-brand button {
  border: 1px solid #a83c4f;
  border-radius: 8px;
  padding: 9px 12px;
  color: #fff;
  background: #87152a;
  font-weight: 700;
}

.site-footer .footer-brand button span {
  margin-left: 10px;
}

.site-footer .footer-links {
  margin: 0;
  display: grid;
  grid-template-columns: .85fr 1.2fr 1.65fr 1fr;
  gap: 34px;
}

.site-footer .footer-links div {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.site-footer .footer-links a {
  color: #f05d71;
  font-weight: 700;
}

.footer-utility {
  min-height: 96px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.footer-license {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-license small {
  color: #8c6e73;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 15px;
}

.app-badge {
  height: 38px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #861326;
  font-weight: 800;
}

.app-badge img {
  width: 20px;
  height: 24px;
  object-fit: contain;
}

.age-badge {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 2px solid #eee;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.ssl-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 26px;
}

.ssl-badge small {
  font-size: 12px;
  line-height: 1;
}

.footer-legal {
  padding-top: 34px;
  color: #cc4357;
}

.footer-legal p {
  margin: 0 0 10px;
}

@media (max-width: 700px) {
  .topbar {
    position: relative;
  }

  .header-brand {
    min-width: 76px;
  }

  .brand-logo {
    display: block;
    width: 66px;
    overflow: hidden;
  }

  .brand-logo img {
    width: 120px;
    max-width: none;
  }

  .menu-toggle,
  .search-toggle {
    display: none;
  }

  .promos .promo-card,
  .promos .promo-card:nth-child(2) {
    display: block;
  }

  .seo-zone {
    margin-top: 40px;
    padding: 0 13px 22px;
  }

  .seo-content {
    font-size: 14px;
  }

  .seo-content h1 {
    font-size: 25px;
  }

  .seo-content h2 {
    font-size: 21px;
  }

  .seo-content h3 {
    font-size: 18px;
  }

  .site-footer {
    margin-top: 40px;
    padding: 0 13px 20px;
  }

  .site-footer .footer-main {
    display: block;
  }

  .site-footer .footer-links {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .site-footer .footer-utility {
    align-items: flex-start;
    gap: 20px;
  }

  .footer-license {
    display: none;
  }

  .footer-badges {
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (min-width: 701px) {
  body.side-hidden .side-nav {
    transform: translateX(-100%);
  }

  .side-nav {
    transition: transform .2s ease;
  }
}
