@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body{
    margin: 0;
    direction: ltr;
    font-family: 'Noto Sans', sans-serif !important;   
}

*, *::before, *::after {
  box-sizing: border-box;
}
button {
  cursor: pointer;
}
:root {
 --dark: #212121;
 --bright:  #006F5F;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.footer-logos a img {
  height: 50px;
  width: 100%;
  object-fit: contain;
  display: block;
}
.structure-holder {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.entry-header {
  background-image: url(visualtreasure/back/bg-all-068dcd759d3900.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.entry-header-ovelay {
  background: linear-gradient(90deg, #4432bac9,#120088c9,#000038c9);
}

.entry-header-navstring-bg {
  background-color: background: linear-gradient(90deg, #070739c9,#120088c9,#282D4Fc9);
  padding: 15px 0;
}

.entry-header-navstring {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}

.entry-header-logo {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  align-items: center;
}

.entry-header-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.entry-header-logo h3 {
  margin: 0;
  font-weight: 400;
  font-size: 23px;
  color: #fff;
}

.eh-navstring, .eh-ns-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.eh-ns-link {
  gap: 5px;
}

.eh-ns-link a {
  font-size: 18px;
  color: #fff;
  transition: color 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.eh-ns-link svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  transition: transform 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.eh-ns-link:hover a {
  color: #c64756;
}

.eh-ns-link:hover svg {
  transform: rotate(45deg);
  fill: #c64756; 
}

.entry-header-banner {
  padding-top: 165px;
  padding-bottom: 165px;
  display: flex;
  flex-direction: row-reverse;
  gap: 49px;
}

.eh-banner-title-wrapper {
  width: 60%;
}

.eh-banner-title {
  padding-left: 49px;
  position: relative;
}

.eh-banner-title:before {
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 0 25px 25px color-mix(in srgb, #070739 40%,#0000 30%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0px;
}

.eh-banner-title h2 {
  color: #FFFFFF;
  font-size: 26px;
  line-height: 48px;
  margin-bottom: 8px;
}

.eh-banner-deco-col-wrapper {
  position: relative;
  width: 35%;
}

.eh-banner-deco {
  position: absolute;
  right: 0;
  animation: entry-anim 5s linear infinite alternate-reverse;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
}

@keyframes entry-anim {
  0% {
      transform: translateX(25px);
  }

  25% {
      transform: translateY(25px);
  }

  50% {
      transform: translateX(-50px);
  }

  75% {
      transform: translateY(-25px);
  }

  100% {
      transform: translate(0);
  }
}

.eh-banner-deco-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.eh-banner-deco-col:first-child {
  margin-top: -130px;
}

.eh-banner-deco-img {
  max-width: 200px;
  height: 270px;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  border-radius: 200px;
}

.eh-banner-deco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-wrapper {
  display: flex;
  flex-direction: column-reverse;
  background: linear-gradient(90deg, #070739c9,#120088c9,#282D4Fc9);
}

.preference-points {
  padding-top: 49px;
  padding-bottom: 100px;
}

.preference-points-list {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.preference-points-img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
  height: 400px;
  display: none;
}

.preference-points-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 150px #c64756);
}

.preference-points-col {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 51px;
  animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.preference-points-item {
  padding: 15px;
  background-color: #46B5D135;
  border-radius: 12px;
  position: relative;
}

.preference-points-item img {
  margin-top: 5px;
  max-height: 130px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.preference-points-item p {
  font-size: 18px;
  color: #fff;
  margin: 0;
  text-align: center;
  margin-bottom: 70px;
}

.core-collection-bg {
  padding-top: 51px;
  padding-bottom: 51px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.core-collection-dec {
  position: absolute;
  bottom: 30px;
  right: -5%;
  height: 1000px;
  object-fit: contain;
  z-index: -1;
}

.core-collection-title, .preference-points-title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 49px;
}

.core-collection-title::after, .preference-points-title::after {
  content: "";
  width: 100%;
  height: 0px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 0 25px 25px color-mix(in srgb, #070739 40%,#0000 30%);
  position: absolute;
  bottom: -10px;
}

.core-collection-title h2, .preference-points-title h2 {
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.core-collection-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 29px;
  flex-wrap: wrap;
}

.core-collection-card {
  position: relative;
  width: 31%;
  padding: 14px;
  border-radius: 12px;
  background-color: #07073987;
}

.cc-card-fade  {
  border-radius: 12px;
  bottom: 0;
  box-shadow: 0 0 29px color-mix(in srgb,#282D4F 40%,#fff 1%);
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .2s linear;
  visibility: visible;
  will-change: opacity;
  z-index: 2;
}

.core-collection-card:hover .cc-card-fade {
  opacity: 1;
  visibility: visible;
}

.cc-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cc-card-imgcontent {
  position: relative;
  overflow: hidden;
}

.cc-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

.cc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.8s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.core-collection-card:hover .cc-card-img img {
  scale: 1.05;
}

.cc-card-players {
  opacity: 0;
  position: absolute;
  top: -30px;
  right: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 25px;
  background: linear-gradient(90deg, #070739,#120088,#282D4F);
  transition: all 1.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.cc-card-players svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.cc-card-players span {
  font-size: 18px;
  color: #fff;
}

.core-collection-card:hover .cc-card-players {
  top: 10px;
  opacity: 1;
}

.cc-card-title h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 25px;
}

.cc-card-title h3:hover  {
  color: #c64756;
}

.cc-card-txt {
  color: #fff;
  font-size: 14px;
}

.cc-card-btn {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.interactive-box-bg {
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #282D4F;
}

.interactive-box {
  border-radius: 12px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 49px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #12008833 0%, #07073966 100%);
}

.interactive-box-form {
  width: 60%;
}

.interactive-box-deco {
  width: 38%;
  position: relative;
  height: 400px;
  z-index: 0;
}

.int-box-deco-img {
  position: absolute;
  top: -80px;
  right: 0;
  z-index: -1;
}

.int-box-deco-img img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}


.int-box-deco-img img:hover {
  animation: entry-anim 3s linear infinite alternate-reverse;
}

.interactive-box-form {
  padding: 49px 29px 49px 51px;
  position: relative;
}

.interactive-box-form:before {
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 0 25px 25px color-mix(in srgb, #393E46 40%,#0000 30%);
  content: "";
  height: 70%;
  left: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0px;
}

.int-box-subtitle {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  margin-bottom: 25px;
}

.int-box-title, .gc-form-title {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  margin-bottom: 49px;
}

.input-field_item--component, .gc-form-input {
  color: #282D4F;
  width: 100%;
  background-color: #fff;
  border: none;
  outline: none;
  padding: 14px;
  margin-top: 14px;
  margin-bottom: 15px;
  font-weight: 800;
  transition: all 0.2s ease-in-out;
  border-left: 1px solid transparent;
}

.input-field_item--component:focus, .gc-form-input:focus {
  border-left: 0px solid #c64756;
}

.textarea-field_item--component {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  background-color: #fff;
  color: #282D4F;
  font-weight: 800;
  resize: none;
  max-height: 150px;
  margin-top: 14px;
  margin-bottom: 15px;
  border-left: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.textarea-field_item--component:focus {
  border-left: 0px solid #c64756;
}

.int-box-formbody label, .int-box-formbody label, .gc-form label {
  font-size: 14px;
  color: #fff;
}

.int-box-chekker, .gc-form-chekker {
  margin: 14px auto;
  text-align: center;
}

.int-box-chekker label, .gc-form-chekker label {
  font-size: 19px;
}
.gc-form-chekker label {
  padding: 0 14px;
}
.int-box-chekker label a:hover, .gc-form-chekker label a:hover {
  color: #c64756;
}

.int-box-btn, .gc-form-btn, .gc-form-chekker {
  display: flex;
  justify-content: center;
}

.welcome-cta-video {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 0;
}

.welcome-cta-video video {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.welcome-cta {
  margin-top: 51px;
  margin-bottom: 51px;
  padding: 49px 51px;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  gap: 29px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.5); color: #222;
}

.welcome-cta-title {
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  margin: 0;
}

.welcome-cta img {
  max-width: 30%;
  max-height: 150px;
  object-fit: contain;
}

.bg-wrapper {
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #282D4F;
  background-image: url(visualtreasure/back/opacity_bg-068dcd759d39cf.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gamesteps-n-faq {
  display: flex;
  flex-direction: column;
  gap: 49px;
  align-items: center;
  justify-content: center;
}

.first-gamesteps {
  width: 60%;
}

.info-insights {
  width: 38%;
}

.first-gamesteps-title {
  font-size: 23px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 29px;
  color: #fff;
}

.first-gamesteps-list {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.first-gamesteps-item {
  width: 95%;
  margin: auto;
  align-items: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
}

.first-gamesteps-item-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.first-gamesteps-content {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  padding: 29px;
  background-color: #c64756;
  width: 100%;
}

.first-gamestep-num {
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  background-color: #070739;
  text-align: center;
  color: #fbf8f8;
  border-radius: 100%;
  font-size: 25px;
  font-weight: 400;
}

.first-gamestep-txt {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  width: calc(100% - 70px);
}

.image-hover {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.first-gamesteps-item:hover .first-gamesteps-content {
  background-color: #000000c2;
}

.first-gamesteps-item:hover .image-hover,  .first-gamesteps-item:hover .first-gamesteps-content {
  visibility: visible;
  opacity: 0.9;
  z-index: 1;
  color: #fff;
}

.info-insights-title {
  font-size: 19px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 29px;
  color: #fff;
  text-align: center;
}

.info-insights-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ii-item {
  position: relative;
}

.ii-item input {
  display: none;
}

.ii-item label {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 100px 15px  29px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fefdf8;
  transition: 0.5s;
  background: #070739;
  margin-bottom: 25px;
}

.ii-item label::after {
  content: "	\01F816";
  font-size: 26px;
  position: absolute;
  right: 20px;
  transition: 0.2s;
  background-color: rgba(255,255,255,0.05);
  width: 45px;
  height: 45px;
  line-height: 46px;
  text-align: center;
}

.ii-item input[type=checkbox]:checked + label::after,
.ii-item input[type=radio]:checked + label::after {
  transform: rotate(90deg);
}

.ii-answear {
  overflow: hidden;
  transition: max-height 0.4s;
  max-height: 0;
  margin-top: -1px;
  font-size: 14px;
  line-height: 1.7;
  color: #fefdf8;
}

.ii-item input:checked ~ .ii-answear {
  max-height: 100vh;
}

.ii-answear p {
  margin: 0;
  padding: 14px 25px;
  background: linear-gradient(90deg, #070739c9,#120088c9,#282D4Fc9);
}

.final-stage-bg {
  padding-top:  51px;
  padding-bottom: 49px;
  background: linear-gradient(90deg, #070739c9,#120088c9,#282D4Fc9);
}

.final-stage {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.final-stage-bigger {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.fs-dev-list, .final-stage-col, .final-stage-nav {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.final-stage-col {
  width: 47%;
}

.fs-dev-item {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.fs-dev-item svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.fs-dev-item span {
  font-size: 18px;
  color: #fff;
}

.final-stage-link {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.final-stage-link:hover {
  color: #c64756;
}

.final-stage-discl {
  border: 3px solid;
  padding: 15px 29px;
  background-image: linear-gradient(180deg, #c6475673 0%,  #006F5F99 100%);
  color: white;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 25px #c6475633, 0 0 40px #070739bb;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 25px #c64756d0, 0 0 40px #070739bb;
  }
  50% {
      transform: scale(1.05);
      box-shadow: 0 0 29px rgba(255, 99, 71, 1)d0, 0 0 50px rgba(255, 215, 0, 1);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 25px #c64756d0, 0 0 40px #070739bb;
  }
}

.final-stage-logo {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.final-stage-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.final-stage-logo h3 {
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.final-stage-smaller {
  display: flex;
  flex-direction: row;
  gap: 29px;
  justify-content: space-between;
  align-items: center;
}

.fss-copytxt {
  font-size: 19px;
  color: #fff;
  margin: 0;
}

.fss-diskl-img {
  background-color: #ffffff82;
    border-radius: 50%;
    padding: 9px;
}

.fss-diskl-img img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.about-hub-bg {
  background-image: url(visualtreasure/back/bg-all-168dcd759d3940.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

.about-hub-overlay {
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #000000c2;
}

.about-hub {
  direction: ltr;
  display: flex;
  flex-direction: row-reverse;
  gap: 49px;
  align-items: center;
  justify-content: center;
}

.about-hub-content {
  width: 43%;
  padding: 29px 49px;
  border-radius: 12px;
  background: linear-gradient(90deg, #070739c9,#120088c9,#282D4Fc9);
}

.about-hub-title {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0;
  margin-bottom: 49px;
}

.about-hub-txt {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
}

.about-hub-deco {
  width: 55%;
  position: relative;
}

.ah-d-img:first-child {
  max-width: 50%;
  height: 500px;
  width: 100%;
  transform: rotate(-12deg);
  position: relative;
  z-index: 1;
  background: #c64756bb;
  padding: 14px;
  border-radius: 12px;
}

.ah-d-img {
  max-width: 40%;
  height: 350px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: #c64756bb;
  padding: 14px;
  border-radius: 12px;
}

.ah-d-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ah-d-txt {
  border-radius: 12px;
  padding: 15px 29px;
  background-color: #c64756;
  position: absolute;
  right: 0;
  top: 75%;
  z-index: 1;
}

.ah-d-txt span {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.catalogue-hub-bg {
  overflow: hidden;
  padding-top: 51px;
  padding-bottom: 51px;
  background-color: #282D4F;
}

.catalogue-hub-title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 49px;
}

.catalogue-hub-title h2 {
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.catalogue-hub-title::after {
  content: "";
  width: 100%;
  height: 0px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 0 25px 25px color-mix(in srgb, #070739 40%,#0000 30%);
  position: absolute;
  bottom: -10px;
}

.catalogue-hub-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.catalogue-hub-card {
  padding: 15px;
  border-radius: 12px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255,255,255,0.9); color: #222;
}

.catalogue-hub-card:nth-child(even) {
  animation: slide-in-left 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.catalogue-hub-card:nth-child(odd) {
  animation: slide-in-right 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.chc-dev {
  text-align: center;
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.chc-dev svg {
  width: 50px;
  height: 50px;
  fill: #c64756;
}

.chc-img {
  width: 25%;
  height: 200px;
}

.chc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.chc-content {
  width: 59%;
}

.chc-title-link:hover {
  color: #c64756;
}

.chc-title {
  font-size: 19px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 15px;
}

.chc-txt {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.chc-btn {
  display: flex;
  justify-content: center;
}

.game-details-bg {
  padding: 49px 0;
  background-color: #282D4F;
  background-image: url(visualtreasure/back/opacity_bg-068dcd759d39cf.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.game-details {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.game-details-infodesk, .game-details-playdesk {
  padding: 49px;
  border-radius: 12px;
  background: rgba(255,255,255,0.5); color: #222;
}

.game-details-playdesk {
  display: flex;
  flex-direction: column;
  gap: 29px;
  background: rgba(255,255,255,0.9); color: #222;
}

.game-details-title, .get-connected-title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 49px;
}

.game-details-title h2, .get-connected-title h2 {
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.game-details-title::after, .get-connected-title::after {
  content: "";
  width: 100%;
  height: 0px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 0 25px 25px color-mix(in srgb, #070739 40%,#0000 30%);
  position: absolute;
  bottom: -10px;
}

.game-details-img {
  width: 50%;
  float: left;
  margin: 15px;
  border-radius: 12px;
}

.game-details-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 45%;
  position: relative;
}

.game-details-stats:before {
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 0 25px 25px color-mix(in srgb, #070739 40%,#0000 30%);
  content: "";
  height: 110%;
  left: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0px;
}

.gd-stats-item {
  padding: 0 15px;
  display: flex;
  flex-direction: row-reverse;  
  gap: 14px;
  align-items: center;
}

.gd-stats-item svg {
  width: 25px;
  height: 25px;
  fill: #070739;
}

.gd-stats-item span {
  font-size: 18px;
}

.game-details-txt {
  font-size: 14px;
  line-height: 1.7;
}

.gd-playdesk-game {
  width: 100%;
}

.gd-playdesk-game h3 {
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 49px;
  text-align: center;
}

.gd-playdesk-game iframe {
  width: 100%;
  height: 100vh;
}

.gd-playdesk-top {
  width: 100%;
}

.gd-playdesk-top h4 {
  font-size: 19px;
  text-align: center;
  margin: 0;
  margin-bottom: 29px;
}

.gd-playdesk-top-item, .gd-playdesk-toplist {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.gd-playdesk-toplist {
  justify-content: space-around;
  flex-direction: row;
}
.top-item-person {
  position: relative;
}

.top-item-person-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:  #c6475633 -14px 14px;
}

.top-item-rait-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.gd-playdesk-top-item span {
  font-size: 18px;
}

.get-connected-page {
  padding: 51px 0;
  background: linear-gradient(90deg, #070739c9,#120088c9,#282D4Fc9);
}

.get-connected-form {
  width: 100%;
  margin: 23px;
  background-image: linear-gradient(180deg, #12008833 0%, #07073966 100%);
  padding: 23px;
  border-left: 0px solid #c64756;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.get-connected-flexcol {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.get-connected-data {
  width: 100%;
  display: flex;
  gap: 49px;
  align-items: center;
  flex-direction: row;
}

.get-connected-data-list {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 29px;
}

.gcd-item { 
  display: flex;
  flex-direction: row-reverse;
  gap:  8px; 
  background-image: linear-gradient(180deg, #12008833 0%, #07073966 100%);
  transition: all 0.5s ease-in-out;
  padding: 29px 15px;
}

.gcd-item:hover {
  background: #c64756;
}

.gcd-item-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #070739;
}

.gcd-item-pic svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
  fill: #070739;
}

.gcd-item-txt {
  width: calc(100% - 70px);
  color: #fff;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gcd-item-txt p, .gcd-item-txt a {
  margin: 0;
  word-break: break-word;
}

.gcd-item-txt a:hover {
  color: #006F5F;
}

.gcd-map {
  flex: 1;
}

.trust-policies-bg {
  word-break: break-all;
  padding-top: 51px;
  padding-bottom: 51px;
  color: #fff;
  background-color: #282D4F;
}
.structure-holder p {
  line-height: 1.5;
}

.trust-policies ul, .trust-policies ol{
  list-style: disc !important;
}

.structure-holder li {
  line-height: 1.5;
}
.trust-policies {
  padding-left: 25px;
  font-size: 14px;
}

.trust-policies h1 {
  font-size: 39px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 49px;
  text-align: center;
}
















.button-1 {
  min-width: 80px;
  font-size: 15px;
  padding: 14px;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid #c64756;
  background: linear-gradient(
    to right,
    rgba(243, 78, 22, 0.1) 1%,
    transparent 40%,
    transparent 60%,
    rgba(243, 78, 22, 0.1) 100%
  );
  color: #c64756;
  box-shadow:
    inset 0 0 14px rgba(243, 78, 22, 0.4),
    0 0 9px 3px rgba(243, 78, 22, 0.1);
}

.button-1:hover {
  color: #c64756;
  box-shadow:
    inset 0 0 14px rgba(243, 78, 22, 0.6),
    0 0 9px 3px rgba(243, 78, 22, 0.2);
}

.button-1:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(
    to right,
    transparent 1%,
    rgba(243, 78, 22, 0.1) 40%,
    rgba(243, 78, 22, 0.1) 60%,
    transparent 100%
  );
}

.button-1:hover:before {
  transform: translateX(15em);
}

.button-2 {
  min-width: 80px;
  position: relative;
  cursor: pointer;
  padding: 14px 15px;
  border: 0;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: radial-gradient(
    ellipse at bottom,
    rgba(71, 81, 92, 1) 0%,
    rgba(11, 21, 30, 1) 45%
  );
  color: rgb(255, 255, 255, 0.66);
  transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.button-2::before {
  content: "";
  width: 70%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 15%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.2;
  transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.button-2:hover {
  color: rgb(255, 255, 255, 1);
  transform: scale(1.1) translateY(-3px);
}

.button-2:hover::before {
  opacity: 1;
}

.button-3 {
  min-width: 80px;
  cursor: pointer;
  padding: 15px;
  border-radius: 14px;
  border-style: double;
  font-weight: 800;
  background-image: linear-gradient(
    rgb(54, 53, 53),
    rgb(0, 0, 0),
    rgb(54, 54, 54)
  );
  color: rgb(164, 164, 162);
  border-color: rgb(0, 0, 0);
  transition: 400ms;
}

.button-3:hover {
  transition: 400ms;
  border-style: double;
  border-color: rgb(208, 207, 207);
  color: rgb(219, 216, 216);
  font-size: 16px;
  text-shadow: 1px 14px 5px rgb(61, 61, 61);
}

.button-4 {
  min-width: 80px;
  border-radius: 7px;
  border: 1px solid transparent;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  color: #ede5ff;
  transition: 0.2s;
}

.button-4:hover {
  box-shadow: 0px 0px 15px -5px #976cff;
  border-color: #976cff;
  color: #f7f5ff;
  background-color: #2e2546;
}

.button-4:active {
  box-shadow: 0px 0px 15px -7px #976cff;
  border-color: #976cff;
  transform: scale(0.95);
}

.button-5 {
  min-width: 80px;
  background-color: #fff;
  font-family: inherit;
  display: inline-block;
  padding: 14px 15px;
  position: relative;
  overflow: hidden;
  border: 2px solid #c64756;
  transition: color .5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 4px;
  font-weight: 400;
  cursor: pointer;
  color: #c64756;
}

.button-5:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #c64756;
  height: 150px;
  width: 500px;
  border-radius: 50px;
  bottom: 100%;
  right: 100%;
  transition: .8s ease;
}

.button-5:hover {
  color: #fff;
}

.button-5:hover:before {
  bottom: -30px;
  left: -30px;
}

.button-5:active:before {
  background: #282D4F35;
  transition: background 2s;
}









@media (max-width: 1200px) {

  .structure-holder {
    max-width: 1140px;
  }

 


}

@media (max-width: 992px) {

  .structure-holder {
    max-width: 960px;
  }

  .eh-banner-deco {
    animation: paused;
  }

  .entry-header-navstring {
    flex-direction: column;
  }
  
  .core-collection-card {
    width: 48%;
  }

  .cc-card-wrapper {
    flex-direction: column !important;
  }

  .preference-points-img {
    width: 25%;
  }

  .preference-points-col {
    width: 45%;
  }

  .final-stage-bigger {
    flex-direction: column;
  }

  .fs-dev-list {
    display: none;
  }

  .final-stage-col, .final-stage-nav {
    width: 100%;
    align-items: center;
  }

  .final-stage-discl {
    width: 80%;
  }

  .gamesteps-n-faq {
    flex-direction: column !important;
  }

  .about-hub {
    flex-direction: column-reverse !important;
  }

  .about-hub-deco, .about-hub-content {
    width: 100%;
  }

  .game-details-img {
    width: 45%;
  }

  .game-details-playdesk {
    flex-direction: column !important;
  }
  
}

@media(max-width: 767px)  {

  .structure-holder {
    max-width: 720px;
  }

  .eh-banner-title h2 {
    font-size: 28px;
  }

  .core-collection-card {
    width: 100%;
  }

  .interactive-box {
    flex-direction: column;
  }

  .first-gamesteps-item {
    width: 100% !important;
  }

  .interactive-box-form, .interactive-box-deco {
    width: 100%;
  }
 
  .first-gamestep-txt {
    width: 100%;
  }

  .catalogue-hub-card {
    flex-direction: column !important;
  }

  .chc-dev, .chc-img, .chc-content {
    width: 100%;
  }

  .chc-dev {
    flex-direction: row;
  }

  .get-connected-form {
    margin: 0;
  }

  .get-connected-data {
    flex-direction: column !important;
  }

  .get-connected-data-list {
    flex-direction: column !important;
    justify-content: center;
  }

  .gcd-item {
    width: 100% !important;
  }
  
}

@media(max-width: 576px) {

 .structure-holder {
    max-width: 540px;
}

.eh-navstring {
  flex-wrap: wrap;
}

.eh-banner-title-wrapper {
  width: 100%;
}

.eh-banner-deco-col-wrapper {
  display: none;
}

.core-collection-title h2, .preference-points-title h2 {
  font-size: 22px;
}

.preference-points-list {
  flex-direction: column;
}

.preference-points-col {
  width: 100% !important;
  gap: 60px;
}

.preference-points-img {
  display: none !important;
}

.int-box-title, .gc-form-title {
  font-size: 22px;
}

.welcome-cta-title {
  font-size: 18px;
}

.interactive-box-form {
  padding: 29px;
}

.interactive-box-form::before {
  left: 10px;
}

.int-box-deco-img {
  top: 0;
}

.int-box-deco-img img {
  height: 250px;
}

.final-stage-link {
  text-align: center;
  font-size: 14px;
}

.final-stage-smaller {
  flex-direction: column;
}

.fss-copytxt {
  font-size: 16px;
  text-align: center;
}

.ah-d-img:first-child {
  width: 100%;
  height: 250px;
}

.ah-d-img {
  width: 75%;
  height: 200px;
}

.ah-d-txt span {
  font-size: 22px;
}

.about-hub-txt {
  font-size: 14px;
}

.game-details-img {
  float: none;
  width: 100%;
  margin: 25px 0;
}

.game-details-stats {
  width: 100%;
}

.gd-playdesk-toplist {
  flex-direction: column !important;
}

 

.gd-playdesk-top-item {
  width: 100% !important;
}

.eh-banner-title h2 {
  line-height: inherit;
}

}

