:root {
  --dark-mode-10: #0f1643;
  --gray-0: #fcfcfc;
  --blue-70: #0b50ff;
  --dark-mode-80: #84a3e1;
  --blue-80: #0e39cb;
  --dark-mode-40: #374ca9;
  --dark-mode-20: #192360;
  --black: #111314;
  --gray-100: #1a1920;
  --gray-10: #dee2e6;
  --gray-30: #a7acba;
  --gray-80: #3d3d4c;
  --dark-mode-0: #080c29;
  --dark-mode-5: #0c1136;
  --blue-40: #59a0ff;
  --blue-100: #0e1a5d;
  --red-40: #e02c33;
  --red-60: #bc0006;
  --red-80: #840003;
  --green-60: #02990d;
  --green-70: #017f09;
  --green-100: #004901;
  --yellow-40: #ffc52f;
  --yellow-60: #f2a400;
  --yellow-80: #d27d00;
  --orange-50: #ff8517;
  --orange-60: #f26d09;
  --orange-80: #d34100;
  --pink-50: #ff3a8b;
  --pink-70: #e71468;
  --pink-90: #b60455;
  --dark-mode-30: #273583;
  --white: white;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--dark-mode-10);
  color: var(--gray-0);
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 72px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5em;
}

a {
  color: var(--blue-70);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 40px;
}

li {
  margin-bottom: 4px;
}

img {
  width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

blockquote {
  border-left: 5px solid var(--dark-mode-80);
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.5em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 6px;
  font-size: 12px;
  line-height: 14px;
}

.sg-nav {
  border-right: 1px solid #ced5db;
  width: 240px;
  height: 0;
  position: fixed;
  inset: 0% auto 0 0;
}

.sg-menu-brand {
  margin-top: 40px;
  margin-bottom: 50px;
  margin-left: 30px;
  padding-left: 0;
}

.sg-menu {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.sg-menu-link {
  color: var(--dark-mode-80);
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 20px;
  transition: background-color .2s, color .2s;
}

.sg-menu-link:hover {
  color: var(--gray-0);
}

.sg-menu-link.w--current {
  background-color: var(--blue-80);
  color: var(--gray-0);
  border-radius: 8px;
  padding-right: 0;
  font-weight: 600;
}

.horizontal-line {
  background-color: var(--dark-mode-40);
  opacity: .2;
  width: 100%;
  height: 1px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.horizontal-line.design-system {
  position: relative;
}

.sg-block {
  margin-bottom: 32px;
}

.sg-description {
  color: var(--gray-0);
  max-width: 420px;
}

.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.grid.desk-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid.desk-3.tab-3 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}

.grid.desk-3.steps {
  background-color: var(--dark-mode-20);
  border-radius: 8px;
  align-content: center;
  padding: 20px;
}

.grid.desk-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid.desk-4.tab-4 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}

.grid.desk-2 {
  grid-template-rows: auto;
}

.grid.desk-2.tab-2 {
  z-index: 6;
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr;
}

.grid.desk-2.tab-2.banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/placeholder_460x215.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 8px;
  height: auto;
  min-height: 300px;
  padding: 40px;
  overflow: hidden;
}

.grid.desk-2.features {
  color: var(--black);
  text-align: left;
}

.grid.desk-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid.desk-6.tab-2 {
  color: var(--black);
}

.grid.desk-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid.desk-5.tab-2 {
  color: var(--black);
}

.wrapper {
  width: 100%;
  min-height: 100vh;
}

._1-2-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.tab-link {
  opacity: .5;
  color: var(--gray-0);
  text-align: center;
  background-color: #0000;
  border-radius: 8px;
  flex: 0 auto;
  margin-right: 0;
  padding: 20px 28px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
}

.tab-link:hover {
  opacity: 1;
}

.tab-link.w--current {
  background-color: var(--gray-0);
  opacity: 1;
  color: var(--gray-100);
  padding-top: 20px;
  padding-bottom: 20px;
}

._2-1-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-3 {
  flex: none;
  width: 25%;
}

.column.desk-9 {
  width: 75%;
}

.spacer {
  background-color: #ece7e0;
  height: 48px;
}

.spacer._48 {
  background-color: #0000;
  border-radius: 6px;
  width: 48px;
}

.spacer._120 {
  background-color: #0000;
  width: 120px;
  height: 120px;
}

.spacer._96 {
  background-color: #0000;
  width: 96px;
  height: 96px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._80 {
  background-color: #0000;
  width: 80px;
  height: 80px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._16 {
  background-color: #0000;
  width: 16px;
  height: 16px;
}

.spacer._60 {
  background-color: #0000;
  width: 60px;
  height: 60px;
}

.spacer._8 {
  background-color: #0000;
  width: 8px;
  height: 8px;
}

.spacer._12 {
  background-color: #0000;
  width: 12px;
  height: 12px;
}

.spacer._20 {
  text-transform: uppercase;
  background-color: #0000;
  width: 20px;
  height: 20px;
}

.spacer._28 {
  text-transform: uppercase;
  background-color: #0000;
  width: 28px;
  height: 28px;
}

.spacer._40 {
  background-color: #0000;
  border-radius: 6px;
  width: 40px;
  height: 40px;
}

.paragraph {
  margin-bottom: 16px;
}

.paragraph.small {
  opacity: .75;
  font-size: 14px;
}

.paragraph.large {
  font-size: 20px;
}

.visible-spacer {
  background-color: var(--dark-mode-20);
  border-radius: 5px;
  display: inline-block;
}

.rich-text {
  text-align: left;
}

.rich-text img {
  border-radius: 6px;
}

.ds-module {
  background-color: var(--dark-mode-20);
  border-radius: 5px;
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

.icon {
  margin-right: 0;
  position: static;
}

.icon._32px {
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 32px;
}

.icon._24px {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
}

.icon._16px {
  width: 16px;
  height: 16px;
  line-height: 16%;
}

.ds-icon-grid {
  margin-top: 24px;
}

.vertical-tab {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tabs-menu {
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.color-block {
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.gray-0 {
  background-color: var(--gray-0);
}

.color-block.gray-10 {
  background-color: var(--gray-10);
}

.color-block.gray-30 {
  background-color: var(--gray-30);
}

.color-block.gray-80 {
  background-color: var(--gray-80);
}

.color-block.black {
  background-color: var(--black);
}

.color-block.gray-100 {
  background-color: var(--gray-100);
}

.color-block.dark-mode-0 {
  background-color: var(--dark-mode-0);
}

.color-block.dark-mode-5 {
  border: 1px solid var(--dark-mode-20);
  background-color: var(--dark-mode-5);
}

.color-block.dark-mode-10 {
  background-color: var(--dark-mode-10);
}

.color-block.dark-mode-20 {
  background-color: var(--dark-mode-20);
}

.color-block.dark-mode-40 {
  background-color: var(--dark-mode-40);
}

.color-block.dark-mode-80 {
  background-color: var(--dark-mode-80);
}

.color-block.blue-40 {
  background-color: var(--blue-40);
}

.color-block.blue-70 {
  background-color: var(--blue-70);
}

.color-block.blue-80 {
  background-color: var(--blue-80);
}

.color-block.blue-100 {
  background-color: var(--blue-100);
}

.color-block.red-40 {
  background-color: var(--red-40);
}

.color-block.red-60 {
  background-color: var(--red-60);
}

.color-block.red-80 {
  background-color: var(--red-80);
}

.color-block.green-60 {
  background-color: var(--green-60);
}

.color-block.green-70 {
  background-color: var(--green-70);
}

.color-block.green-100 {
  background-color: var(--green-100);
}

.color-block.yellow-40 {
  background-color: var(--yellow-40);
}

.color-block.yellow-60 {
  background-color: var(--yellow-60);
}

.color-block.yellow-80 {
  background-color: var(--yellow-80);
}

.color-block.orange-50 {
  background-color: var(--orange-50);
}

.color-block.orange-60 {
  background-color: var(--orange-60);
}

.color-block.orange-80 {
  background-color: var(--orange-80);
}

.color-block.pink-50 {
  background-color: var(--pink-50);
}

.color-block.pink-70 {
  background-color: var(--pink-70);
}

.color-block.pink-90 {
  background-color: var(--pink-90);
}

.color-block.dark-mode-30 {
  background-color: var(--dark-mode-30);
}

.sg-content {
  background-color: var(--gray-0);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
}

.sg-section {
  z-index: 0;
  background-color: var(--dark-mode-5);
  text-align: left;
  padding: 60px 80px 60px 60px;
  position: relative;
}

.sg-section.header {
  background-color: var(--blue-70);
  color: #fff;
}

.ds-icon {
  margin-right: 24px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.btn {
  color: #fff;
  text-align: center;
  flex: none;
  padding: 10px 20px;
  font-family: Young Serif, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all .2s;
  box-shadow: 0 4px 4px #0003;
}

.btn.outline {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--gray-0);
  background-color: #8d806e2e;
  transition: all .3s;
  box-shadow: inset 0 0 0 1px #fcfcfc33, 0 4px 4px #0003;
}

.btn.outline:hover {
  background-color: #fcfcfc33;
  box-shadow: 0 0 40px #fcfcfc33, inset 0 0 0 1px #fcfcfc4d;
}

.btn.outline.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.outline.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.secondary {
  color: var(--gray-0);
  background-color: #412a19;
  background-image: linear-gradient(#5f3a2b, #412a19);
  border: 2px solid #412a19;
  transition: all .3s;
}

.btn.secondary:hover {
  background-color: #5f3a2b;
  background-image: none;
  box-shadow: 0 0 40px #5f3a2b33, 0 4px 4px #0003;
}

.btn.secondary.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.secondary.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.primary {
  opacity: 1;
  color: var(--gray-0);
  background-color: #b60321;
  background-image: linear-gradient(#b60321, #9b000e);
  border: 2px solid #b2031f;
  box-shadow: inset 0 2px 5px #00000036, 0 4px 4px #0003;
}

.btn.primary:hover {
  background-color: #b60321;
  background-image: none;
  box-shadow: 0 0 40px #fd464d, 0 4px 4px #0003;
}

.btn.primary.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.primary.big:hover {
  box-shadow: 0 0 40px #fd464d47, 0 4px 4px #0003;
}

.btn.primary.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.buy-action {
  background-color: var(--red-40);
  background-image: linear-gradient(to bottom, var(--red-40), var(--red-60));
  color: var(--gray-0);
  transition: all .3s;
}

.btn.buy-action:hover {
  background-image: none;
  box-shadow: 0 0 40px #e02c3333, 0 4px 4px #0003;
}

.btn.buy-action.big {
  background-image: linear-gradient(to bottom, var(--red-40), var(--red-60));
  padding: 20px 40px;
  font-size: 20px;
}

.btn.buy-action.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.light {
  background-color: var(--gray-0);
  background-image: linear-gradient(to bottom, var(--gray-0), var(--gray-10));
  color: var(--gray-100);
  transition: all .3s;
}

.btn.light:hover {
  background-image: none;
  box-shadow: 0 0 40px #fcfcfc33, 0 4px 4px #0003;
}

.btn.light.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.light.small {
  padding: 6px 16px;
  font-size: 14px;
}

.ds-section-header {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
  display: flex;
}

.text-box {
  max-width: 1300px;
}

.text-box._640px {
  max-width: 640px;
  min-height: 64px;
}

.text-box._640px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._420px {
  max-width: 420px;
  min-height: 64px;
}

.text-box._420px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._310px {
  max-width: 310px;
  min-height: 64px;
}

.text-box._310px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._1300px {
  max-width: 1300px;
  min-height: 64px;
}

.text-box._1300px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._860px {
  max-width: 860px;
  min-height: 64px;
}

.text-box._860px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._530px {
  max-width: 530px;
  min-height: 64px;
}

.text-box._530px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.sg-label {
  color: var(--dark-mode-80);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
}

.white-link {
  color: #9ec5fa;
}

.sg-nav-container {
  border-right: 1px solid var(--dark-mode-20);
  background-color: var(--dark-mode-5);
  width: 240px;
  height: 100vh;
}

.subtittle {
  font-family: Young Serif, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.display {
  font-family: Poppins, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 86px;
}

.brand {
  width: 178px;
  height: 40px;
}

.brand.symbol {
  width: 40px;
}

.content-wrap {
  grid-row-gap: 40px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
}

.content-wrap.center {
  text-align: center;
  align-items: center;
  max-width: 1300px;
}

.content-wrap.tab {
  grid-column-gap: 60px;
  flex-direction: row;
  align-items: stretch;
}

.twitch-video-wrapper {
  text-align: left;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  flex-direction: column;
  align-items: center;
  width: 80%;
  padding-top: 56.25%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header {
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  font-size: 24px;
  line-height: 150%;
  display: flex;
}

.header.select {
  grid-row-gap: 0px;
}

.header.center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.header.center._860px {
  max-width: 860px;
}

.header.center._860px.editions {
  color: var(--black);
}

.header._640px {
  max-width: 640px;
}

.header.faq-header {
  color: var(--black);
  width: 100%;
  max-width: 310px;
  font-size: 20px;
}

.header.left.clear {
  color: var(--black);
}

.container {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 40px;
  display: flex;
  position: relative;
}

.container.footer {
  border-top: 2px solid #08080833;
  padding-top: 80px;
}

.container.highlight {
  grid-row-gap: 80px;
}

.container.details {
  padding-top: 20px;
}

.container.about {
  padding-bottom: 80px;
}

.section {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.section.highlight {
  background-image: linear-gradient(#0f1643a3, #141f66), url('../images/placeholder_460x215.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.section.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.section.intro {
  z-index: 1;
  background-image: url('../images/ruff-divider-top.png'), url('../images/embers-bg.png'), linear-gradient(#00000036, #301609bf), radial-gradient(circle closest-corner, #0000 73%, #1113148c), url('../images/bg-fold.jpg');
  background-position: 50% 100%, 100% 100%, 0 0, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat, repeat, repeat;
  background-size: contain, cover, auto, auto, cover;
  background-attachment: scroll, scroll, scroll, scroll, scroll;
  justify-content: center;
  min-height: 1100px;
  position: relative;
}

.section.footer {
  background-image: linear-gradient(#d9b78a, #e0a96d);
}

.section.faq-list {
  background-image: linear-gradient(#dab588, #dbb98d00 57%, #d9b78a), url('../images/bg-faq.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  margin-top: -1px;
  padding-top: 60px;
}

.section.about {
  z-index: 1;
  background-image: url('../images/bg-about.jpg');
  background-position: 50%;
  margin-top: -1px;
  padding-bottom: 20px;
  position: relative;
}

.section.galeria {
  background-image: url('../images/divider-bottom.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.section.screenshots {
  background-image: url('../images/ruff-divider-top.png'), linear-gradient(#34302a, #33302a00 87%), url('../images/bg-library.jpg');
  background-position: 50% 100%, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat;
  background-size: contain, auto, cover;
  margin-top: -1px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.editions {
  background-image: linear-gradient(#d9b384, #fff0 56%, #dab688), url('../images/bg-about.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  margin-top: -1px;
}

.section.specs {
  background-image: url('../images/ruff-divider-bottom.png'), url('../images/ruff-divider-top.png'), linear-gradient(#332c292e, #5240364a 73%, #3a2e28b8), url('../images/bg-specs.jpg');
  background-position: 50% 0, 50% 100%, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-size: contain, contain, auto, auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.features {
  background-image: url('../images/midia-divider.png'), url('../images/ruff-divider-bottom.png'), radial-gradient(circle, #fff0 56%, #5e4526), url('../images/bg-features.jpg');
  background-position: 50% 100%, 50% 0, 0 0, 50%;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-size: contain, contain, auto, cover;
  margin-top: -1px;
  padding-bottom: 60px;
}

.twitch-wrapper {
  text-align: left;
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: flex;
}

.twitch-chat-wrapper {
  text-align: left;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding-top: 56.25%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-body {
  grid-row-gap: 8px;
  -webkit-text-stroke-color: #0d191f;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
}

.card-body.small {
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.clock-label {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: -5px;
}

.clock-number {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}

.clock {
  width: 60px;
}

.box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  max-width: 80px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.card {
  background-color: var(--dark-mode-20);
  border-radius: 8px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
}

.card:hover {
  outline-offset: 0px;
  outline: 3px solid #fff;
  transform: scale(1.03);
}

.discount {
  color: #fcfcfc;
  background-color: #630f07;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 24px;
}

.discount.small {
  padding: 2px 4px;
  font-size: 14px;
}

.price-area {
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  display: flex;
}

.price {
  grid-column-gap: 8px;
  text-align: left;
  flex: 1;
  align-items: center;
  min-width: 150px;
  height: 28px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.price.big {
  justify-content: center;
}

.price.highlight {
  flex: 0 auto;
  width: auto;
  font-size: 32px;
}

.price.small {
  font-size: 14px;
}

.card-header {
  width: 100%;
}

.disclaimer {
  border-radius: 5px;
  font-size: 14px;
  font-style: italic;
}

.product-label {
  z-index: 2;
  grid-column-gap: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #192360;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.product-label.steam {
  background-image: linear-gradient(41deg, #142e4c, #12456f);
}

.product-label.ubisoft {
  z-index: 2;
  background-image: linear-gradient(41deg, #242424, #222);
}

.product-label.nintendo {
  background-image: linear-gradient(to right, #c01523, #e41727);
}

.product-label.epic-games {
  color: var(--black);
  background-image: linear-gradient(to right, #e7e7e7, #efeeee);
}

.product-label.playstation {
  background-image: linear-gradient(to right, #064ed5, #005ed1);
}

.product-label.xbox {
  background-image: linear-gradient(to right, #107f10, #139113);
}

.heading-4 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 12px;
}

.icon-wrapper {
  align-items: stretch;
  width: 20px;
  height: 20px;
  display: flex;
}

.icon-wrapper.highlight {
  width: 18px;
  height: 18px;
}

.preorder-tag-block {
  z-index: 5;
  grid-column-gap: 8px;
  align-items: center;
  margin-top: -12px;
  margin-left: 20px;
  display: flex;
  position: absolute;
}

.preorder-tag-block.small {
  margin-left: 12px;
}

.preorder-tag {
  grid-column-gap: 10px;
  background-color: var(--blue-70);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 30px;
  padding: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  display: flex;
}

.arrow-slider {
  color: #505162;
  background-color: #edeff1;
  border: 1px solid #c2c7d0;
  border-radius: 8px;
  width: 50px;
  height: 40px;
  font-size: 20px;
  transition: all .2s;
  inset: auto;
}

.arrow-slider:hover {
  border-color: var(--blue-70);
  background-color: var(--blue-70);
  color: #fcfcfc;
}

.arrow-slider.right {
  top: auto;
  bottom: 0%;
  right: 0;
}

.arrow-slider.right.highlight {
  margin-bottom: 40px;
  margin-right: 40px;
}

.arrow-slider.left {
  top: auto;
  bottom: 0%;
  left: 0%;
}

.arrow-slider.left.highlight {
  margin-bottom: 40px;
  margin-left: 40px;
}

.card-gradient {
  background-image: linear-gradient(#fff0, #0e184e);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 100%;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.card-product-link {
  grid-row-gap: 20px;
  -webkit-text-stroke-color: #0d191f;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  position: static;
}

.carousel-mask {
  width: 32%;
  max-width: 433px;
  height: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  overflow: visible;
}

.carousel-mask.col-6 {
  width: 100%;
  max-width: 200px;
}

.card-long {
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-long:hover {
  outline-offset: 0px;
  background-color: #0d191f;
  outline-width: 3px;
  outline-style: solid;
  transform: scale(1.03);
}

.game-long-bg {
  object-fit: cover;
  border-radius: 0 0 8px 8px;
  width: 100%;
  height: 100%;
  max-height: 480px;
}

.price-long {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  display: flex;
}

.slider-dot {
  text-align: center;
  width: 100%;
  max-width: 1380px;
  padding-top: 14px;
  font-size: 12px;
  line-height: 12px;
  inset: auto 0% 0%;
}

.slider-dot.highlight {
  margin-bottom: 40px;
}

.carousel-slider-long {
  margin-right: 20px;
}

.card-long-body {
  z-index: 1;
  grid-row-gap: 16px;
  -webkit-text-stroke-color: #0d191f;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.carousel {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 400px;
}

.carousel.is_contained {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 60px;
  position: relative;
}

.carousel.highlight {
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 850px;
  display: flex;
}

.long-card-title {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.tag-wrapper {
  grid-column-gap: 10px;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 6px;
  display: flex;
}

.counter {
  grid-column-gap: 5px;
  align-items: flex-end;
  width: 100%;
  max-width: 420px;
  display: flex;
}

.tabs-content {
  width: 100%;
  overflow: visible;
}

.tabs {
  width: 100%;
  max-width: 1300px;
  margin-top: 20px;
}

.image-tab {
  justify-content: center;
  width: 100%;
  max-width: 500px;
  display: flex;
}

.games-preview {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.select-game {
  border-radius: 8px;
  transition: all .2s;
}

.video {
  background-image: none;
  overflow: hidden;
  box-shadow: 0 4px 8px #0000004d;
}

.classind {
  grid-column-gap: 12px;
  color: var(--black);
  background-color: #fcfcfc;
  border-radius: 8px;
  align-items: center;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.classind-tittle {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}

.classind-content {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.classind-img {
  width: 100%;
  max-width: 40px;
}

.product-tag-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
  position: static;
}

.product-tag {
  grid-column-gap: 8px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #192360;
  border-radius: 5px;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 6px 8px;
  font-family: Work Sans, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  display: flex;
  overflow: auto;
}

.product-tag.steam {
  background-image: linear-gradient(41deg, #142e4c, #12456f);
}

.product-tag.ubisoft {
  background-image: linear-gradient(41deg, #242424, #222);
  display: none;
}

.product-tag.epic-games {
  color: var(--black);
  background-image: linear-gradient(41deg, #e7e7e7, #efeeee);
  display: none;
}

.product-tag.nintendo {
  background-image: linear-gradient(41deg, #c11623, #e41727);
  display: none;
}

.product-tag.playstation {
  background-image: linear-gradient(41deg, #064ed4, #005ed0);
  display: none;
}

.product-tag.xbox {
  background-image: linear-gradient(41deg, #118011, #139013);
  display: none;
}

.product-tag.preorder {
  background-color: var(--blue-70);
}

.product-tag.genre {
  background-color: var(--dark-mode-20);
}

.drops-area {
  grid-column-gap: 4px;
  color: var(--yellow-40);
  border-radius: 4px;
  align-items: center;
  padding: 4px 4px 4px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.footer-social-nav {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  display: flex;
}

.footer-title {
  color: var(--black);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Young Serif, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.company {
  max-width: 310px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.brand-footer {
  padding-top: 0;
  padding-bottom: 15px;
  font-family: Varela, sans-serif;
  font-weight: 400;
  display: flex;
}

.footer-nav {
  flex-direction: column;
  display: flex;
}

.copyright {
  color: var(--black);
  align-self: center;
  margin-left: 10px;
  font-size: 14px;
}

.footer-link {
  color: #000000a1;
  width: 100%;
  margin-bottom: 20px;
  font-family: Varela, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.footer-link:hover {
  color: #000;
}

.social-icon {
  height: 16px;
}

.social-icon.twitch, .social-icon.instagram, .social-icon.youtube {
  width: 18px;
  height: 18px;
}

.social-icon.discord {
  width: 19px;
  height: 18px;
}

.social-icon.facebook {
  width: 18px;
  height: 18px;
}

.social-icon.tiktok {
  width: 16px;
  height: 19px;
}

.social-icon.bluesky {
  width: 18px;
  height: 16px;
}

.social-icon.threads {
  width: 18px;
  height: 18px;
}

.social-icon.x {
  width: 18px;
  height: 16px;
}

.brand-black {
  filter: brightness(0%);
  width: 138px;
  height: 30px;
}

.video-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.video-wrap.right {
  padding-left: 60px;
}

.video-wrap.left {
  padding-right: 60px;
}

.video-wrap._550px {
  max-width: 550px;
}

.price-wrap {
  grid-column-gap: 20px;
  color: var(--black);
  align-items: center;
  font-family: Young Serif, sans-serif;
  font-size: 24px;
  display: flex;
}

.buy-wrap {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.btn-area {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.btn-area._310px {
  max-width: 310px;
}

.btn-area._420px {
  grid-template-columns: 1fr 1fr;
  align-content: start;
  max-width: 420px;
}

.btn-area._420px.select {
  max-width: none;
}

.btn-area._420px.game {
  grid-template-columns: 1fr;
  max-width: 300px;
}

.image-wrap {
  width: 100%;
  overflow: hidden;
}

.image-wrap.right {
  padding-left: 60px;
}

.image-wrap.left {
  z-index: 2;
  max-width: 580px;
  position: absolute;
  top: -170px;
  left: -17px;
}

.image-wrap.media {
  transition: all .2s;
  box-shadow: 5px 5px 12px -1px #00000045;
}

.image-wrap.media:hover {
  filter: sepia();
  transform: scale(1.03);
}

.description-text {
  grid-row-gap: 8px;
  color: var(--black);
  flex-direction: column;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Varela, sans-serif;
  font-weight: 400;
  display: flex;
}

.logo-wrap {
  align-self: flex-start;
}

.logo-wrap.center {
  justify-content: center;
  align-self: center;
}

.logo-img {
  max-height: 230px;
}

.content {
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  font-size: 24px;
  line-height: 150%;
  display: flex;
}

.content.center {
  text-align: center;
  align-items: center;
}

.mask {
  width: 100%;
  height: auto;
  overflow: visible;
}

.bg {
  background-image: linear-gradient(to bottom, #0c113680, var(--dark-mode-10)), url('../images/placeholder_600x900.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  position: absolute;
  inset: 0%;
}

.credit-btn {
  border: 3px solid var(--dark-mode-80);
  text-align: center;
  background-color: #0000;
  border-radius: 12px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  transition: all .3s;
}

.credit-btn:hover {
  background-color: #59a0ff33;
}

.credit-btn:active {
  color: #0b50ff;
  background-color: #fcfcfc;
  border-color: #fcfcfc;
}

.credit-btn.credit-btn--active {
  border-color: var(--gray-0);
  background-color: var(--gray-0);
  color: var(--blue-70);
}

.credit-btn.credit-btn--active:hover {
  color: var(--blue-70);
  background-color: #fcfcfc;
}

.illustration-wrap {
  width: 100%;
  position: relative;
}

.illustration-wrap.banner {
  justify-content: flex-end;
  display: flex;
}

.image-illustration {
  height: 200px;
}

.carousel-slider {
  margin-right: 20px;
}

.box-content {
  background-color: var(--dark-mode-20);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  max-height: 200px;
  padding: 40px 20px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.box-content:hover {
  color: #000;
  background-color: #fcfcfc;
  transform: scale(1.03);
}

.container-2 {
  grid-column-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.carousel-genres {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 400px;
}

.carousel-genres.is_contained {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-bottom: 60px;
  position: relative;
  overflow: visible;
}

.genre-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.publisher--con {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 0;
  display: flex;
}

.publisher--con.ci-games {
  height: 100px;
}

.publisher--con.warner {
  height: 120px;
}

.publisher--con.ubisoft {
  height: 100px;
}

.coupon-wrap {
  border: 2px dashed var(--yellow-60);
  text-align: center;
  width: 100%;
  padding: 20px;
}

.coupon-code {
  color: var(--yellow-60);
}

.step {
  grid-column-gap: 20px;
  align-items: center;
  font-size: 20px;
  line-height: 150%;
  display: flex;
}

.step-number {
  background-color: var(--gray-0);
  color: var(--dark-mode-20);
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-weight: 700;
  display: flex;
}

.faq-body-cont {
  color: var(--dark-mode-80);
  padding: 0 30px 30px;
}

.faq-content {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-content._860px {
  width: 100%;
  max-width: 860px;
}

.faq-answer {
  color: var(--gray-30);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 32px;
  font-family: Varela, sans-serif;
  font-weight: 400;
}

.faq-img {
  z-index: 2;
  color: var(--gray-0);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
  position: relative;
  inset: 0% auto 0% 0%;
}

.container-3 {
  grid-column-gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.social-faq {
  grid-column-gap: 12px;
  padding-top: 20px;
  padding-left: 32px;
  display: flex;
}

.toggle-text {
  z-index: 2;
  color: var(--gray-0);
  white-space: normal;
  width: 100%;
  max-width: 640px;
  margin-left: 8px;
  font-family: Young Serif, sans-serif;
  font-weight: 400;
  position: relative;
}

.faq-icon {
  z-index: 2;
  color: var(--gray-10);
  width: 32px;
  height: 32px;
  margin-right: 16px;
  position: absolute;
  inset: auto 0% auto auto;
}

.faq-p {
  background-color: #7a6043;
  width: 100%;
  overflow: hidden;
}

.faq {
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 20px;
  line-height: 24px;
  display: flex;
}

.faq-body {
  z-index: 1;
  background-color: #0000;
  display: block;
  position: relative;
}

.faq-body.w--open {
  background-color: #0000;
}

.btn-socialmedia-faq {
  color: #fff;
  background-color: #1113147d;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.btn-socialmedia-faq:hover {
  background-color: #5865f2;
}

.btn-socialmedia-faq.x:hover {
  background-color: #242424;
}

.btn-socialmedia-faq.youtube:hover {
  background-color: red;
}

.btn-socialmedia-faq.twitch:hover {
  background-color: #9146ff;
}

.btn-socialmedia-faq.facebook:hover {
  background-color: #1778f2;
}

.btn-socialmedia-faq.instagram:hover {
  background-color: #f00075;
}

.btn-socialmedia-faq.tiktok:hover {
  background-color: #010101;
}

.btn-socialmedia-faq.threads:hover {
  background-color: #0a0a0a;
}

.btn-socialmedia-faq.bluesky:hover {
  background-color: #0085ff;
}

.navbar {
  z-index: 999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #1f1b17cc;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: fixed;
}

.btn-droparea {
  display: none;
}

.navlinks {
  background-color: #0000;
  display: flex;
  position: static;
}

.navlinks.w--open {
  display: flex;
}

.navlink {
  grid-column-gap: 8px;
  color: #fcfcfc80;
  text-align: center;
  padding: 28px 20px;
  font-family: Young Serif, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.navlink:hover {
  color: var(--gray-0);
}

.navlink.w--current {
  border-bottom: 4px none var(--blue-70);
  color: var(--gray-0);
  background-image: linear-gradient(#0000, #ff3b1c40);
  padding-bottom: 24px;
}

.navlink.w--open {
  z-index: 1;
  background-color: var(--gray-0);
  color: var(--gray-100);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.navlink.dropdown-link {
  grid-column-gap: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: space-between;
  display: none;
}

.navlink.dropdown-link.w--open {
  z-index: 1;
  background-color: var(--gray-0);
  color: var(--gray-100);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.navlink.dropdown {
  display: flex;
}

.navlink.dropdown.hide, .dropdown {
  display: none;
}

.dropdown.menu.w--open {
  background-color: var(--gray-0);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-bottom: 20px;
  padding-right: 20px;
  box-shadow: 0 2px 20px #0003;
}

.navlink-dropdown {
  color: var(--gray-80);
  text-align: left;
  width: 100%;
  padding: 14px 20px 14px 40px;
  font-family: Young Serif, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s;
}

.navlink-dropdown:hover {
  color: #1a1920;
}

.navlink-dropdown.w--current {
  border-left: 4px solid var(--blue-70);
  color: var(--gray-100);
  padding-left: 36px;
}

.image-content {
  font-size: 16px;
  line-height: 150%;
}

.btn-buyarea {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch stretch;
  min-width: 150px;
  display: grid;
  position: relative;
}

.btn-buyarea._200px {
  width: 100%;
  max-width: 200px;
}

.btn-buyarea._250px {
  width: 100%;
  max-width: 250px;
}

.header-text {
  grid-row-gap: 8px;
  flex-direction: column;
  font-family: Varela, sans-serif;
  font-weight: 400;
  display: flex;
}

.heading-5, .header-title {
  font-family: Young Serif, sans-serif;
  font-weight: 400;
}

.text-block-2 {
  font-family: Varela, sans-serif;
  font-weight: 400;
}

.specs-table-bg {
  background-color: #00000026;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.specs-table-bg.hide-column {
  padding-left: 25px;
}

.specs-table {
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.specs-requirements {
  color: #fff;
  font-family: Young Serif, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}

.specs-text {
  color: #fff;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Varela, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}

.specs-text.single-line {
  flex: 1;
}

.specs-title {
  color: #fff;
  text-align: left;
  flex: 1;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Young Serif, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.specs-table-alpha {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.specs-table-alpha.hide-column {
  padding-left: 25px;
  padding-right: 25px;
}

.game-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.game-img-wrap {
  border-radius: 0;
  width: 100%;
  max-width: 450px;
}

.game-title {
  font-family: Young Serif, sans-serif;
  font-size: 28px;
  font-weight: 400;
  overflow: hidden;
}

.text-block-3 {
  overflow-wrap: normal;
  font-size: 18px;
  line-height: 150%;
}

.info-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.info-block.editions {
  color: var(--black);
}

.body {
  background-color: #4d3d2f;
}

.image-3 {
  z-index: 2;
  max-width: 400px;
  position: absolute;
  inset: -13% 0% 0% auto;
}

.feature-block {
  text-align: center;
  background-image: url('../images/bg-about.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  padding: 24px 32px;
  font-family: Young Serif, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.reliquia-1 {
  z-index: 2;
  max-width: 280px;
  position: absolute;
  inset: -9% auto 0% 4%;
}

.cards {
  z-index: 2;
  max-width: 400px;
  position: absolute;
  inset: -25% 0% 0% auto;
}

.image-4 {
  opacity: .68;
  position: absolute;
  inset: 50% 0% 0%;
}

.reliquia-2 {
  z-index: 2;
  max-width: 250px;
}

.image-5 {
  border-radius: 12px;
}

.drops-area-2 {
  grid-column-gap: 4px;
  color: #ffc52f;
  border-radius: 4px;
  align-items: center;
  padding: 4px 4px 4px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.btn-socialmedia {
  color: #fff;
  background-color: #7a604394;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.btn-socialmedia:hover {
  background-color: #5865f2;
}

.btn-socialmedia.tiktok:hover {
  background-color: #010101;
}

.btn-socialmedia.instagram:hover {
  background-color: #f00075;
}

.btn-socialmedia.twitch:hover {
  background-color: #9146ff;
}

.btn-socialmedia.facebook:hover {
  background-color: #1778f2;
}

.btn-socialmedia.x:hover {
  background-color: #242424;
}

.btn-socialmedia.youtube:hover {
  background-color: red;
}

.btn-socialmedia.bluesky:hover {
  background-color: #0085ff;
}

.btn-socialmedia.threads:hover {
  background-color: #0a0a0a;
}

.brand-white {
  color: #fcfcfc;
  height: 30px;
}

@media screen and (min-width: 1280px) {
  .sg-nav {
    width: 280px;
  }

  .sg-content {
    margin-left: 280px;
  }

  .sg-nav-container {
    width: 280px;
  }

  .header.left {
    justify-content: center;
  }

  .container {
    z-index: 5;
  }

  .container.hidden {
    overflow: hidden;
  }

  .section.highlight {
    z-index: 1;
    position: relative;
  }

  .section.intro {
    background-position: 50% 100%, 100% 100%, 0 0, 0 0, 50%;
  }

  .section.faq-list {
    background-image: linear-gradient(#dab588, #dbb98d00 48% 85%, #d9b78a), url('../images/bg-faq.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .section.screenshots {
    padding-top: 80px;
  }

  .section.features {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .clock-label {
    font-weight: 500;
  }

  .price-area {
    align-items: center;
  }

  .preorder-tag {
    display: block;
  }

  .arrow-slider.right {
    bottom: 0;
  }

  .arrow-slider.right.highlight, .arrow-slider.left.highlight {
    width: 40px;
    height: 60px;
    bottom: auto;
  }

  .card-product-link {
    z-index: 0;
    background-image: none;
  }

  .carousel-mask {
    width: 32.3%;
    min-height: 500px;
  }

  .carousel-mask.col-6 {
    max-width: 200px;
    min-height: auto;
  }

  .card-long {
    max-width: 500px;
    margin-right: 0;
  }

  .game-long-bg {
    object-fit: cover;
    background-image: linear-gradient(#000 22%, #fff);
  }

  .carousel-slider-long {
    margin-right: 20px;
  }

  .card-long-body {
    background-image: none;
  }

  .carousel.highlight {
    min-height: 850px;
  }

  .tabs {
    width: 100%;
    max-width: 1300px;
  }

  .image-tab {
    max-width: 550px;
  }

  .games-preview {
    flex-direction: column;
    display: flex;
  }

  .video, .classind {
    max-width: 580px;
  }

  .image-wrap.left {
    max-width: 600px;
    top: -179px;
    left: 0;
  }

  .container-2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .carousel-genres.is_contained {
    overflow: hidden;
  }

  .genre-icon {
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    display: flex;
  }

  .publisher--con {
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 150px;
    display: flex;
  }

  .container-3 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .faq-icon {
    max-width: none;
    display: block;
    overflow: visible;
  }

  .image-3 {
    max-width: 500px;
    inset: -12% 6% 0% auto;
  }

  .feature-block {
    justify-content: center;
  }

  .reliquia-1 {
    max-width: 300px;
    inset: -11% 0% 0% -5%;
  }

  .cards {
    max-width: 450px;
    inset: -26% 0% 0% 78%;
  }

  .image-4 {
    z-index: 2;
    opacity: .66;
    inset: 353px 0% 0%;
  }

  .reliquia-2 {
    inset: -5% auto 0% 18%;
  }
}

@media screen and (max-width: 991px) {
  .sg-nav {
    z-index: 10;
    background-color: #f0f2f3;
    border-right-style: none;
    width: 100%;
    height: 80px;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: 0;
    right: 0;
    overflow: visible;
  }

  .sg-menu-brand {
    margin-top: 4px;
    margin-bottom: 16px;
  }

  .sg-menu {
    z-index: 500;
    background-color: #f0f2f3;
    border-bottom: 1px solid #e1e5e7;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
    box-shadow: 0 3px 5px #0000000d;
  }

  .sg-menu-button {
    margin-right: 12px;
    padding: 15px;
    top: -10px;
  }

  .sg-menu-button.w--open {
    color: #356af0;
    background-color: #d0e8ff;
    border-radius: 40px;
  }

  .sg-block {
    margin-bottom: 40px;
  }

  .grid {
    margin-left: 0;
  }

  .grid.desk-3, .grid.desk-3.tab-3, .grid.desk-3.about, .grid.desk-4.tab-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-2.tab-2.banner {
    height: auto;
    min-height: 300px;
  }

  .grid.desk-6.tab-2, .grid.desk-5, .grid.desk-5.tab-2 {
    grid-template-columns: 1fr 1fr;
  }

  ._1-2-grid {
    margin-left: 0;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  ._2-1-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-left: 0;
  }

  .column {
    width: 50%;
  }

  .column.desk-3 {
    flex-wrap: nowrap;
    width: 33.33%;
  }

  .sg-content {
    border-left-style: none;
    width: 100%;
    margin-left: 0;
    position: static;
  }

  .btn {
    position: relative;
  }

  .sg-menu-icon {
    font-size: 32px;
  }

  .sg-nav-container {
    width: auto;
    height: auto;
  }

  .content-wrap {
    align-items: center;
    max-width: none;
    font-size: 20px;
  }

  .content-wrap.tab {
    flex-direction: column;
    align-items: center;
  }

  .twitch-video-wrapper {
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    font-size: 20px;
  }

  .header {
    text-align: center;
    align-self: stretch;
    align-items: center;
  }

  .header.faq-header {
    text-align: left;
  }

  .header.left {
    text-align: left;
    align-items: flex-start;
  }

  .header.left.clear {
    align-items: center;
  }

  .container.highlight {
    height: auto;
  }

  .section.intro {
    background-image: url('../images/ruff-divider-top.png'), url('../images/embers-bg.png'), linear-gradient(#00000061, #301609d4 97%), radial-gradient(circle closest-corner, #0000 73%, #1113148c), url('../images/bg-fold.jpg');
    background-position: 50% 100%, 100% 100%, 0 0, 0 0, 50%;
    background-repeat: no-repeat, repeat, repeat, repeat, repeat;
    background-size: contain, cover, auto, auto, cover;
    background-attachment: scroll, scroll, scroll, scroll, scroll;
  }

  .section.screenshots {
    padding-top: 0;
  }

  .twitch-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    font-size: 20px;
  }

  .twitch-chat-wrapper {
    border-top-right-radius: 0;
    border-bottom-left-radius: 12px;
    align-items: center;
    width: 100%;
    height: 400px;
    margin-bottom: 0;
    font-size: 20px;
  }

  .price.highlight {
    justify-content: center;
    width: auto;
  }

  .carousel-mask {
    width: 48%;
  }

  .carousel-slider-long {
    margin-right: 6%;
  }

  .carousel.is_contained {
    overflow: visible;
  }

  .carousel.highlight {
    height: auto;
    min-height: auto;
  }

  .tag-wrapper {
    grid-row-gap: 10px;
    flex-direction: row;
  }

  .counter {
    width: 100%;
  }

  .image-tab {
    justify-content: center;
    width: 100%;
    max-width: 400px;
    display: none;
  }

  .games-preview {
    align-items: center;
  }

  .video {
    margin-bottom: 0;
    margin-right: auto;
  }

  .classind {
    text-align: left;
    width: 100%;
    margin-top: 0;
    margin-right: auto;
  }

  .product-tag-wrap {
    justify-content: center;
  }

  .product-tag.steam {
    margin-right: 10px;
  }

  .company {
    text-align: left;
    max-width: none;
  }

  .footer-nav {
    text-align: left;
  }

  .video-wrap {
    max-width: 530px;
    padding-left: 0;
  }

  .video-wrap.right {
    padding-left: 0;
  }

  .video-wrap.left {
    padding-right: 0;
  }

  .price-wrap {
    justify-content: center;
    align-self: center;
    width: 100%;
    max-width: 530px;
  }

  .buy-wrap {
    width: 100%;
    max-width: 530px;
  }

  .btn-area._310px.banner {
    align-self: flex-start;
    max-width: 200px;
  }

  .btn-area._420px, .btn-area._420px.select {
    max-width: 420px;
  }

  .image-wrap.right {
    padding-left: 0;
  }

  .image-wrap.left {
    padding-right: 0;
    display: none;
  }

  .description-text {
    text-align: center;
  }

  .logo-wrap {
    justify-content: center;
    align-self: center;
    max-width: 100%;
  }

  .content {
    align-self: stretch;
    align-items: center;
  }

  .content.banner {
    font-size: 16px;
  }

  .credit-btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .illustration-wrap {
    justify-content: center;
    display: flex;
  }

  .box-content {
    min-height: 180px;
    max-height: 180px;
  }

  .carousel-genres.is_contained {
    overflow: visible;
  }

  .genre-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .publisher--con {
    width: 120px;
    height: 120px;
  }

  .publisher--con.ci-games {
    width: 100px;
    height: 80px;
  }

  .step {
    align-items: center;
  }

  .faq-answer {
    padding-left: 32px;
    font-size: 14px;
    line-height: 150%;
  }

  .faq-img {
    width: 24px;
    height: 24px;
  }

  .toggle-text {
    margin-right: 20px;
    font-size: 18px;
    line-height: 150%;
  }

  .faq-icon {
    width: 24px;
  }

  .menu-icon {
    width: 24px;
    height: 24px;
  }

  .menu, .navigation {
    order: 1;
  }

  .navbar {
    grid-column-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr max-content min-content;
    grid-auto-columns: 1fr;
    padding: 4px 16px 4px 40px;
    display: grid;
  }

  .btn-droparea {
    width: 100%;
    padding-left: 20px;
    display: none;
  }

  .navlinks {
    display: none;
  }

  .navlinks.w--open {
    background-color: #1f1b17;
    flex-direction: column;
    align-items: flex-start;
    width: 240px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0;
    display: flex;
    position: absolute;
    right: 0;
    box-shadow: 0 2px 20px #0003;
  }

  .navlink {
    color: var(--gray-0);
    text-align: left;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }

  .navlink:hover {
    color: #999;
  }

  .navlink.w--current {
    border-left: 4px none var(--blue-70);
    color: var(--gray-0);
    background-image: linear-gradient(270deg, #0000 9%, #ff3b1c4f);
    border-bottom-style: none;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 36px;
  }

  .navlink.dropdown-link {
    display: none;
  }

  .dropdown {
    z-index: 1;
    grid-column-gap: 20px;
    color: #fcfcfc;
    align-items: center;
    padding-right: 20px;
    display: flex;
  }

  .dropdown.w--open {
    color: #fff;
    background-color: #1f1b17;
  }

  .dropdown-select {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: none;
  }

  .navlink-dropdown {
    color: #3d3d4cb3;
    text-align: left;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 40px;
    display: none;
  }

  .navlink-dropdown:hover {
    color: #3d3d4c;
  }

  .btn-buyarea {
    grid-template-columns: 1fr .5fr;
  }

  .btn-buyarea._200px {
    max-width: none;
  }

  .header-text {
    text-align: center;
  }

  .header-text.faq-text {
    text-align: left;
  }

  .specs-table-bg.hide-column {
    display: none;
  }

  .specs-table {
    grid-template-columns: 0 1fr 1fr;
  }

  .specs-text {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 16px;
    line-height: 22px;
  }

  .specs-table-alpha.hide-column {
    display: none;
  }

  .game-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-block {
    min-height: 150px;
  }

  .reliquia-1, .cards, .reliquia-2 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 40px;
    line-height: 46px;
  }

  h3 {
    font-size: 34px;
    line-height: 40px;
  }

  h4 {
    font-size: 28px;
    line-height: 34px;
  }

  h5 {
    font-size: 24px;
    line-height: 28px;
  }

  h6 {
    font-size: 20px;
    line-height: 24px;
  }

  .sg-menu-brand.w--current {
    margin-top: 14px;
  }

  .sg-menu {
    background-color: #fff;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .grid.desk-3 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-3.tab-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-3.steps, .grid.desk-3.about {
    grid-template-columns: 1fr;
  }

  .grid.desk-4.tab-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-2.tab-2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid.desk-2.tab-2.banner {
    grid-template-rows: auto auto;
  }

  .grid.desk-2.tab-2.landscape-2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  ._1-2-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .tab-link {
    border-bottom-width: 0;
    border-radius: 10px;
    width: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .tab-link.w--current {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  ._2-1-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .spacer {
    height: 32px;
  }

  .spacer._60 {
    height: 48px;
  }

  .paragraph {
    font-size: 15px;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .ds-colour-block {
    width: 25%;
  }

  .sg-content {
    margin-left: 0;
  }

  .sg-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .btn.outline.big {
    width: 100%;
  }

  .btn.buy-action {
    padding: 6px 16px;
    font-size: 14px;
  }

  .btn.buy-action.big {
    width: 100%;
  }

  .subtittle {
    font-size: 24px;
    line-height: 20px;
  }

  .display {
    font-size: 60px;
    line-height: 72px;
  }

  .brand {
    width: 133.5px;
    height: 30px;
  }

  .content-wrap {
    grid-row-gap: 20px;
    height: 100%;
    font-size: 16px;
  }

  .twitch-video-wrapper {
    align-items: center;
  }

  .header {
    text-align: center;
    font-size: 20px;
  }

  .header.faq-header {
    text-align: center;
    max-width: 640px;
    font-size: 24px;
  }

  .header.left {
    text-align: center;
    align-items: center;
  }

  .container {
    align-items: flex-start;
    padding-bottom: 60px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .section.intro {
    background-image: url('../images/ruff-divider-top.png'), url('../images/embers-bg.png'), linear-gradient(#0000004f, #301609e0 81%), radial-gradient(circle closest-corner, #0000 73%, #1113148c), url('../images/bg-fold.jpg');
    background-position: 50% 100%, 100% 100%, 0 0, 0 0, 50%;
    background-repeat: no-repeat, repeat, repeat, repeat, repeat;
    background-size: contain, cover, auto, auto, cover;
    background-attachment: scroll, scroll, scroll, scroll, scroll;
  }

  .section.screenshots {
    padding-top: 0;
  }

  .twitch-wrapper, .twitch-chat-wrapper {
    align-items: center;
  }

  .card-body {
    padding: 18px 12px 16px;
    font-size: 14px;
    line-height: 18px;
  }

  .clock-number {
    font-size: 42px;
  }

  .box {
    margin-left: 5px;
    margin-right: 5px;
  }

  .box.hide {
    display: none;
  }

  .card {
    padding-bottom: 0;
  }

  .price-area {
    flex-flow: wrap;
    align-items: center;
    height: auto;
  }

  .price.big {
    font-size: 14px;
  }

  .price.highlight {
    justify-content: flex-start;
  }

  .preorder-tag-block {
    margin-top: -14px;
    margin-left: 12px;
  }

  .card-product-link {
    font-size: 14px;
    line-height: 18px;
  }

  .carousel-mask {
    width: 48%;
    max-width: 400px;
    height: auto;
  }

  .carousel-mask.col-6 {
    max-width: 160px;
  }

  .card-long-body {
    padding: 12px 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .tag-wrapper {
    flex-direction: row;
  }

  .counter {
    grid-column-gap: 0px;
    justify-content: center;
  }

  .image-tab {
    max-width: 400px;
  }

  .product-tag.preorder.product-card {
    height: 24px;
  }

  .drops-area {
    font-size: 12px;
  }

  .footer-social-nav {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .company {
    flex-direction: column;
    display: flex;
  }

  .brand-footer {
    justify-content: flex-start;
    align-items: stretch;
  }

  .video-wrap, .price-wrap {
    max-width: 420px;
  }

  .buy-wrap {
    align-items: stretch;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-area {
    max-width: 420px;
  }

  .btn-area._310px.banner {
    align-self: center;
  }

  .image-wrap.right {
    max-width: 400px;
  }

  .image-wrap.left {
    max-width: 500px;
  }

  .image-wrap.left.giftcard {
    max-width: 400px;
  }

  .description-text {
    grid-row-gap: 20px;
  }

  .logo-wrap.center {
    align-self: center;
  }

  .content {
    text-align: center;
  }

  .content.banner {
    align-items: center;
  }

  .illustration-wrap.banner {
    max-width: 350px;
  }

  .box-content {
    min-height: 160px;
    max-height: 160px;
  }

  .container-2 {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .genre-icon {
    width: 70px;
    height: 70px;
    display: flex;
  }

  .publisher--con {
    width: 100px;
  }

  .coupon-wrap {
    font-size: 20px;
  }

  .container-3 {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .toggle-text {
    width: 100%;
    max-width: 400px;
    font-size: 16px;
  }

  .navbar {
    grid-template-columns: 1fr max-content;
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
    top: 0;
  }

  .btn-droparea {
    flex-direction: column;
    padding-top: 20px;
    display: flex;
  }

  .btn-navarea {
    display: none;
  }

  .dropdown {
    padding: 13px;
  }

  .image-content {
    margin-bottom: 40px;
  }

  .btn-buyarea {
    grid-template-columns: 1fr .75fr;
  }

  .header-text.faq-text {
    text-align: center;
    font-size: 20px;
  }

  .specs-text {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }

  .image-3, .reliquia-1, .cards, .reliquia-2 {
    display: none;
  }

  .drops-area-2 {
    font-size: 12px;
  }
}

@media screen and (max-width: 479px) {
  .sg-menu-brand {
    margin-left: 16px;
  }

  .sg-menu-button {
    margin-right: 4px;
  }

  .grid.desk-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .grid.desk-3.tab-3 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid.desk-4.tab-2 {
    grid-template-columns: 1fr;
  }

  .grid.desk-2.tab-2 {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 40px;
  }

  .grid.desk-2.tab-2.landscape-2, .grid.desk-2.features, .grid.desk-5 {
    grid-template-columns: 1fr;
  }

  .tab-link {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
  }

  .column {
    margin-bottom: 0;
  }

  .column.desk-3 {
    width: 100%;
  }

  .tabs-menu {
    flex-direction: row;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .sg-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn {
    width: 100%;
    font-size: 16px;
  }

  .subtittle {
    line-height: 130%;
  }

  .content-wrap {
    grid-row-gap: 28px;
    height: auto;
  }

  .twitch-video-wrapper {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .header.center._860px, .header.left.clear {
    font-size: 18px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.intro {
    background-image: url('../images/ruff-divider-top.png'), url('../images/embers-bg.png'), linear-gradient(#0000004f, #301609e0 62%), radial-gradient(circle closest-corner, #0000 73%, #1113148c), url('../images/bg-fold.jpg');
    background-position: 50% 100%, 100% 100%, 0 0, 0 0, 50%;
    background-repeat: no-repeat, repeat, repeat, repeat, repeat;
    background-size: contain, cover, auto, auto, cover;
    background-attachment: scroll, scroll, scroll, scroll, scroll;
  }

  .section.specs {
    background-size: contain, contain, auto, cover;
  }

  .twitch-chat-wrapper {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .card-body {
    padding-bottom: 16px;
  }

  .clock-number {
    font-size: 28px;
  }

  .box {
    max-width: 60px;
    margin-left: 0;
    margin-right: 0;
  }

  .box.hide {
    display: none;
  }

  .price.highlight {
    justify-content: center;
  }

  .disclaimer {
    text-align: center;
    font-size: 12px;
  }

  .carousel-mask {
    width: 100%;
    min-width: 250px;
  }

  .carousel-mask.col-6 {
    min-width: 160px;
  }

  .slider-dot {
    display: none;
  }

  .carousel-slider-long {
    margin-right: 6%;
  }

  .counter {
    flex-flow: wrap;
    justify-content: center;
  }

  .counter.center {
    justify-content: center;
  }

  .games-preview {
    text-align: center;
  }

  .classind {
    grid-column-gap: 12px;
    padding: 12px;
  }

  .classind-tittle {
    font-size: 14px;
  }

  .classind-img {
    max-width: 40px;
  }

  .drops-area {
    justify-content: center;
  }

  .footer-social-nav {
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto auto auto;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: flex;
  }

  .price-wrap {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .btn-area._310px {
    justify-items: stretch;
  }

  .btn-area._420px {
    grid-template-columns: 1fr;
  }

  .image-wrap.right.giftcard, .image-wrap.left.giftcard {
    display: none;
  }

  .content {
    align-items: flex-start;
  }

  .credit-btn {
    border-width: 2px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 14px;
  }

  .carousel-slider {
    margin-right: 12px;
  }

  .faq-body-cont {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-answer {
    padding-left: 0;
  }

  .faq-img {
    display: none;
  }

  .social-faq {
    grid-row-gap: 12px;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .toggle-text {
    max-width: 230px;
    margin-left: 0;
  }

  .btn-buyarea {
    grid-template-columns: 1fr;
  }

  .specs-table {
    flex-direction: column;
    display: flex;
  }

  .specs-requirements {
    margin-top: 70px;
    margin-bottom: 10px;
  }

  .specs-text {
    margin-top: 20px;
    line-height: 25px;
  }

  .specs-text.single-line {
    margin-top: 30px;
  }

  .feature-block {
    min-height: 200px;
  }

  .drops-area-2 {
    justify-content: center;
  }

  .btn-socialmedia.tiktok:hover {
    background-color: #111314;
  }
}

#w-node-_523c5fe8-5da0-24b6-9096-95e4f2592bc7-4bbd4561 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
}

#w-node-_0ee45527-8464-7c97-e1ac-884dca729a42-4bbd4561 {
  grid-area: 2 / 1 / 2 / 2;
}

#w-node-_123e9653-380d-1281-c7ab-8e6804090f27-4bbd4561 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-_0ee45527-8464-7c97-e1ac-884dca729a5e-4bbd4561 {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_0ee45527-8464-7c97-e1ac-884dca729a60-4bbd4561 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4cb98cc1-fe10-2616-515b-bf04085f5314-4bbd4561 {
  grid-area: 1 / 1 / 4 / 2;
  place-self: center start;
}

#w-node-_4cb98cc1-fe10-2616-515b-bf04085f52ee-4bbd4561 {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_3bbde420-e67b-2d1d-927c-d9d9c1180c0c-4bbd4561, #w-node-_16b6eb2e-56bf-1adf-6891-8d5d5625c303-4bbd4561, #w-node-_43457984-c327-aacb-eb0b-4f825abe7962-4bbd4561, #w-node-_43457984-c327-aacb-eb0b-4f825abe7963-4bbd4561, #w-node-_7f108b5a-5cd2-7e0f-acef-bb1d1fc1f4f7-4bbd4561, #w-node-_7f108b5a-5cd2-7e0f-acef-bb1d1fc1f4f8-4bbd4561, #w-node-e5f46de4-59da-18e6-9dcc-8114dde6f299-4bbd4561, #w-node-_0571af54-92a1-3497-d059-18b8cfdf2a43-4bbd4561, #w-node-_3a5081bd-d385-b239-26c1-97cf18adc449-4bbd4561, #w-node-e98ddffb-6482-db56-9d2f-31a031248ee3-4bbd4561, #w-node-_1f31a8f5-76d1-1a08-a9c1-113963771349-4bbd4561, #w-node-a20dda9e-9244-43ee-21a0-c8ce989729ac-4bbd4561, #w-node-_5b7f1ad2-ef78-281c-2b93-4d40cefacd2a-4bbd4561, #w-node-_763774b4-592b-c9da-2bb8-a39e02196070-4bbd4561, #w-node-ac5756c3-dff7-e394-f672-b15150caa4f0-4bbd4561, #w-node-_6fb6e818-5936-dcca-96ed-d65a1ca342a1-4bbd4561, #w-node-_4e191a00-67d0-28b5-8593-7a3992f74c24-4bbd4561, #w-node-c53960dd-72a8-c2f3-6ff2-8bf0f8f61cb1-4bbd4561, #w-node-_7ff6489f-5712-45da-3027-986d9fe22aac-4bbd4561, #w-node-b152b8e4-dcee-e56a-71a2-3fd276ef54b4-4bbd4561, #w-node-_60a76cea-3dd0-6e93-97e7-8ff5bad4256b-4bbd4561, #w-node-_69d5cfe4-c37a-8bc8-9e52-c13adac73345-4bbd4561 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_666494f0-9855-6857-28c4-b0ee3a34d6b9-4bbd4561 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_7d3d05be-8b57-58ed-d297-2c1b0ff23337-4bbd4561 {
  justify-self: start;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde71-4bbd4561 {
  grid-column-end: 2.99265;
  grid-column-start: 2;
  grid-row-end: 1.99265;
  grid-row-start: 1;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde74-4bbd4561 {
  grid-column-end: 1.99265;
  grid-column-start: 1;
  grid-row-end: 2.99265;
  grid-row-start: 2;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde77-4bbd4561 {
  grid-column-end: 2.99265;
  grid-column-start: 2;
  grid-row-end: 2.99265;
  grid-row-start: 2;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde7a-4bbd4561 {
  grid-column-end: 2.99265;
  grid-column-start: 2;
  grid-row-end: 3.99265;
  grid-row-start: 3;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde7d-4bbd4561 {
  grid-column-end: 2.99265;
  grid-column-start: 2;
  grid-row-end: 4.99265;
  grid-row-start: 4;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde80-4bbd4561 {
  grid-column-end: 2.99265;
  grid-column-start: 2;
  grid-row-end: 5.99265;
  grid-row-start: 5;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde83-4bbd4561 {
  grid-column-end: 2.99265;
  grid-column-start: 2;
  grid-row-end: 6.99265;
  grid-row-start: 6;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde86-4bbd4561 {
  grid-column-end: 2.99265;
  grid-column-start: 2;
  grid-row-end: 7.99265;
  grid-row-start: 7;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde89-4bbd4561 {
  grid-column-end: 3.99265;
  grid-column-start: 3;
  grid-row-end: 1.99265;
  grid-row-start: 1;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde8c-4bbd4561 {
  grid-column-end: 1.99265;
  grid-column-start: 1;
  grid-row-end: 3.99265;
  grid-row-start: 3;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde8f-4bbd4561 {
  grid-column-end: 3.99265;
  grid-column-start: 3;
  grid-row-end: 2.99265;
  grid-row-start: 2;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde92-4bbd4561 {
  grid-column-end: 3.99265;
  grid-column-start: 3;
  grid-row-end: 3.99265;
  grid-row-start: 3;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde95-4bbd4561 {
  grid-column-end: 1.99265;
  grid-column-start: 1;
  grid-row-end: 4.99265;
  grid-row-start: 4;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde98-4bbd4561 {
  grid-column-end: 3.99265;
  grid-column-start: 3;
  grid-row-end: 4.99265;
  grid-row-start: 4;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde9b-4bbd4561 {
  grid-column-end: 1.99265;
  grid-column-start: 1;
  grid-row-end: 5.99265;
  grid-row-start: 5;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32dde9e-4bbd4561 {
  grid-column-end: 3.99265;
  grid-column-start: 3;
  grid-row-end: 5.99265;
  grid-row-start: 5;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32ddea1-4bbd4561 {
  grid-column-end: 3.99265;
  grid-column-start: 3;
  grid-row-end: 6.99265;
  grid-row-start: 6;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32ddea4-4bbd4561 {
  grid-column-end: 3.99265;
  grid-column-start: 3;
  grid-row-end: 7.99265;
  grid-row-start: 7;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32ddea7-4bbd4561 {
  grid-column-end: 1.99265;
  grid-column-start: 1;
  grid-row-end: 6.99265;
  grid-row-start: 6;
}

#w-node-f22133e9-4dd8-403d-8b70-3a18a32ddeaa-4bbd4561 {
  grid-column-end: 1.99265;
  grid-column-start: 1;
  grid-row-end: 7.99265;
  grid-row-start: 7;
}

#w-node-a9545890-0acb-79e6-07ef-ca0a423127ee-4bbd4561 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1280px) {
  #w-node-_4cb98cc1-fe10-2616-515b-bf04085f52ee-4bbd4561 {
    grid-area: 1 / 2 / 3 / 3;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_523c5fe8-5da0-24b6-9096-95e4f2592bc7-4bbd4561 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_0ee45527-8464-7c97-e1ac-884dca729a42-4bbd4561 {
    grid-column-end: 3;
  }

  #w-node-_123e9653-380d-1281-c7ab-8e6804090f27-4bbd4561 {
    grid-row-start: 3;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_0ee45527-8464-7c97-e1ac-884dca729a5e-4bbd4561 {
    grid-row: 4 / 5;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_4cb98cc1-fe10-2616-515b-bf04085f5314-4bbd4561 {
    grid-column: 2 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_4cb98cc1-fe10-2616-515b-bf04085f52ee-4bbd4561 {
    grid-column-start: 1;
  }

  #w-node-_7d3d05be-8b57-58ed-d297-2c1b0ff23337-4bbd4561 {
    justify-self: stretch;
  }

  #w-node-a9545890-0acb-79e6-07ef-ca0a423127ee-4bbd4561 {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-a9545890-0acb-79e6-07ef-ca0a4231280a-4bbd4561, #w-node-a9545890-0acb-79e6-07ef-ca0a4231281f-4bbd4561, #w-node-a9545890-0acb-79e6-07ef-ca0a42312831-4bbd4561, #w-node-a9545890-0acb-79e6-07ef-ca0a4231284f-4bbd4561 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4cb98cc1-fe10-2616-515b-bf04085f5314-4bbd4561 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: end center;
  }

  #w-node-_4cb98cc1-fe10-2616-515b-bf04085f52ee-4bbd4561 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7f108b5a-5cd2-7e0f-acef-bb1d1fc1f4f7-4bbd4561 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1b97e0b1-d4e5-be7e-6420-356905ffbda1-4bbd4561 {
    place-self: stretch center;
  }

  #w-node-a9545890-0acb-79e6-07ef-ca0a423127ee-4bbd4561 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a9545890-0acb-79e6-07ef-ca0a4231280a-4bbd4561, #w-node-a9545890-0acb-79e6-07ef-ca0a4231281f-4bbd4561, #w-node-a9545890-0acb-79e6-07ef-ca0a42312831-4bbd4561, #w-node-a9545890-0acb-79e6-07ef-ca0a4231284f-4bbd4561 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4cb98cc1-fe10-2616-515b-bf04085f52ee-4bbd4561 {
    grid-column-end: 3;
  }

  #w-node-d1babad4-1591-5091-f74a-b150c7bebb7c-4bbd4561, #w-node-d1babad4-1591-5091-f74a-b150c7bebb7e-4bbd4561 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a9545890-0acb-79e6-07ef-ca0a423127ee-4bbd4561 {
    grid-column: span 2 / span 2;
  }

  #w-node-_8c4703a2-dfba-6679-02b5-f3930b27a055-4bbd4561, #w-node-_8c4703a2-dfba-6679-02b5-f3930b27a057-4bbd4561 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


