@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

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

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

button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.cyber-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 18px;
  padding-left: 18px;
}


.skyline-hub {
  background: #040303cc;
  color: #E07250;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px;
  border-bottom: 2px solid #E07250ec;
}

.skyline-logo, .fde-logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.skyline-logo-img, .fde-logo-img {
  width: 65px;
  height: 65px;
}

.skyline-logo-name, .fde-logo-name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.fde-logo-name {
  color: #fff;
}

.shn-list {
  display: flex;
  list-style: none;
  margin: 5px;
  gap: 24px;
  list-style: none;
}

.shn-link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.shn-link:hover {
  color: #E07250;
}

.intro-gate-section {
  position: relative;
  height: auto;
  width: 100%; 
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}

.ig-door-layer {
  position: absolute;
  width: 100%;
  height: 50%;
  background: #060606;
  z-index: 2;
  animation-iteration-count: infinite;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
}

.top-door {
  top: 0;
  animation-name: doorOpenCloseTop;
}

.top-door::before {
  content: "";
  background-image: url(cyberpunk-top.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 114%;
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: -7%;
  z-index: 10;
  transform: rotate(-180deg);
}

.bottom-door {
  bottom: 0;
  animation-name: doorOpenCloseBottom;
}

.bottom-door::before {
  content: "";
  background-image: url(cyberpunk-bottom.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 114%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: -7%;
  z-index: 10;
  transform: rotate(-180deg);
}

@keyframes doorOpenCloseTop {
  0%   { transform: translateY(0); }
  10%  { transform: translateY(-75%); }
  85%  { transform: translateY(-75%); }
  100% { transform: translateY(0); }
}

@keyframes doorOpenCloseBottom {
  0%   { transform: translateY(0); }
  10%  { transform: translateY(75%); }
  85%  { transform: translateY(75%); }
  100% { transform: translateY(0); }
}

.intro-gate-content, .fde-discl {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #060606ad;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
  margin-top: 252px;
  margin-bottom:  188px;
  padding: 27px 18px;
  border: 2px solid #E07250;
}

.intro-gate-content {
  flex-direction: column;
}

.fde-discl {
  margin: 0;
}

.flex-r-wrapper {
  display: flex;
  flex-direction: column;
}

.intro-gate-title {
  font-size: 27px;
  color: #E07250;
  text-shadow: 0 0 10px #E07250, 0 0 20px #040303ed;
}

.fde-discl-title {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 27px;
  color: #fff;
}

.fde-discl-txt {
  font-size: 13px;
  margin: 0;
  color: #fff;
}

.intro-gate-slogan {
  margin-top: 18px;
  font-size:  21px;
  color: #aaa;
}

.glitch {
  position: relative;
  color: #E79E4F;
  font-size: 100px;
  font-weight: 700;
  text-transform: inherit;
  letter-spacing: 3px;
  animation: glitch-anim 2s infinite linear;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  color: #040303;
  background: transparent;
  z-index: -1;
}

.glitch::before {
  animation: glitch-anim-before 2s infinite linear;
}

.glitch::after {
  animation: glitch-anim-after 2s infinite linear;
}

@keyframes glitch-anim {
  0% {
    transform: none;
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-2px, 2px);
  }
  80% {
    transform: translate(3px, -1px);
  }
  100% {
    transform: none;
  }
}

@keyframes glitch-anim-before {
  0% {
    clip-path: inset(0 0 90% 0);
    transform: translate(-3px, -3px);
  }
  50% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(3px, 3px);
  }
  100% {
    clip-path: inset(80% 0 0 0);
    transform: translate(-1px, 1px);
  }
}

@keyframes glitch-anim-after {
  0% {
    clip-path: inset(80% 0 0 0);
    transform: translate(3px, -1px);
  }
  50% {
    clip-path: inset(10% 0 70% 0);
    transform: translate(-3px, 1px);
  }
  100% {
    clip-path: inset(0 0 90% 0);
    transform: translate(1px, -3px);
  }
}

.dev-crew-section {
  direction: initial;
  width: 100%;
  overflow: hidden;
  background: #060606;
  border-top: 2px solid #E07250;
  padding: 36px 0;
  position: relative;
}

.dev-crew-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 15s linear infinite;
}

.dev-marquee-content {
  display: flex;
}

.dev-name {
  margin: 0 50px;
  font-size: 21px;
  font-weight: 700;
  color: #E07250;
  text-shadow: 0 0 3px #E07250;
  white-space: nowrap;
}

.dev-name-pic {
  fill: #E07250;
  width: 32px;
  height: 32px;
 }

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-protocol-section {
  padding-top: 50px;
  padding-bottom: 74px;
  background-color: #060606;
}

.about-protocol {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.about-protocol-imgbox, .about-protocol-content {
  width: 48%;
}

.about-protocol-imgbox {
  direction: ltr;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(content/bg/bg-all-069d8d4c525b70.jpg);
  display: flex;
  flex-direction: column;
}

.about-protocol-img {
  position: relative;
  width: 50%;
  padding: 10px;
  padding-top: 0;
  background-color: #060606;
  border-radius: 0 0 0 70px;
  margin: 0 0 150px auto;
}

.ap-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 20px 70px;
}

.about-protocol-img:nth-child(2) .ap-img {
  border-radius: 20px 70px 20px 20px;
}

.about-protocol-img::before {
  content: '';
  position: absolute;
  left: auto;
  right: -1px;
  top: auto;
  bottom: -79px;
  height: 80px;
  width: 80px;
  background: #060606;
  clip-path: path("M0 0H79.9695V76.3123C80.0103 77.5714 80.0101 78.8022 79.9695 80V76.3123C79.0054 46.5602 55.1443 0.959397 0 0Z");
}

.about-protocol-img::after {
  content: '';
  position: absolute;
  left: -79px;
  top: 0;
  right: auto;
  left: -79px;
  top: -1px;
  transform: none;
  height: 80px;
  width: 80px;
  background: #060606;
  clip-path: path("M0 0H79.9695V76.3123C80.0103 77.5714 80.0101 78.8022 79.9695 80V76.3123C79.0054 46.5602 55.1443 0.959397 0 0Z");
}

.about-protocol-img:nth-child(2) {
  padding-bottom: 0;
  padding-top: 20px;
  margin: 0 auto 0 0;
  border-radius: 0 70px 0px 0;
}

.about-protocol-img:nth-child(2)::before {
  transform: rotate(-90deg);
  left: 0;
}

.about-protocol-img:nth-child(2)::after {
  transform: rotate(180deg);
  left: 0;
  top: -80px;
}

.about-protocol-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.apt-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.apt-txt {
  font-size: 27px;
  font-weight: 700;
  color: #E07250;
  text-shadow: 0 0 3px #E07250;
}

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

.game-repository-section {
  background-image: url(content/bg/bg-light-069d8d4c525ae8.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.game-repository-overlay {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #060606c6;
}

.game-repository-title {
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  margin-bottom: 50px;
  color: #E07250;
  text-shadow: 0 0 3px #E07250;
}

.game-repository-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.grc-btn {
  margin: auto;
}

.game-repository-card {
  width: 31%;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 2px solid #E07250;
}

.grc-imgblock {
  position: relative;
}

.grc-imglink .grc-img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  border-radius: 10px;
}

.grc-dec {
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
  height: 65;
  width: 65;
  line-height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #040807ad;
  transform: translate(0, -32px);
  margin: auto;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.game-repository-card:hover .grc-dec {
  animation: blink-1 0.6s both;}

  @keyframes blink-1 {
    0%,
    50%,
    100% {
      opacity: 1;
    }
    25%,
    75% {
      opacity: 0;
    }
  }

  .grc-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.grc-dec svg {
 width: 50px;
 height: 50px;
 fill: #fff;
}

.grc-title {
 font-size: 18px;
 font-weight: 700;
 margin: 0;
 margin-bottom: 18px;
 color: #fff;
}

.grc-txt {
  display: none;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
}

.order-console-sect {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #040303;
}

.order-console {
  display: flex;
  flex-direction: row;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.order-console-img {
  width: 50%;
  overflow: hidden;
}

.order-console-imgbg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
  max-height: 540px;
}

.order-console:hover .order-console-imgbg {
  transform: scale(1.5);
}

.order-console-form {
  width: 50%;
  background-image: url(content/bg/opacity_bg-069d8d4c525bc2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding:  24px 36px;
}


.ocf-title {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 27px;
  color: #fff;
  text-align: center;
}

.ocf-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}

.input-fieldwrappergroup, .textarea-fieldwrappergroup {
  padding: 0.875rem;
  font-size: 18px;
  border: 1.5px solid #000;
  border-radius: 10px;
  box-shadow: 2.5px 3px 0 #000;
  outline: none;
  transition: ease 0.25s;
}

.input-fieldwrappergroup:focus, .textarea-fieldwrappergroup:focus {
  box-shadow: 5.5px 7px 0 #E07250c6;
}

.ocf-chekker-input {
  width: 20px;
  height: 20px;
}

.ocf-checklink:hover {
 text-decoration: underline;
}

.start-protocol-sect {
  background: #040303;
  background-image: url(content/bg/opacity_bg-169d8d4c525bdf.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.start-protocol-gradient {
  padding-top: 74px;
  padding-bottom: 74px;
  background: linear-gradient(90deg,rgba(34, 193, 195, 0) 0%, #040303 75%);
}

.start-protocol-title {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 36px;
}

.spt-title {
  width: 70%;
}

.spt-title-txt {
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  margin-bottom: 48px;
  color: #E07250;
  text-shadow: 0 0 3px #E07250;
}

.spt-dec {
  width: 40%;
  position: relative;
  height: 136px;
}

.spt-dec-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 252px;
  width: auto;
  display: flex;
  margin: auto;
}

.start-protocol-list {
  display: flex;
  flex-direction:  row-reverse;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.start-protocol-item {
  width: 48%;
  padding: 10px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-direction:  row-reverse;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: #E0725035 10px 10px;
}

.start-protocol-list > :nth-child(1) {
  width: 45%;
  margin-right: 15%;
}

.start-protocol-list > :nth-child(2) {
  width: 60%;
}

.start-protocol-list p {
  font-size: 18px;
  font-weight:  700;
  text-align: center;
  margin: 0;
}

.start-protocol-list img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cyber-faq-sect {
  background: #040303;
  padding-top: 50px;
  padding-bottom: 50px;
}

.cyber-faq {
  width: 100%;
  padding: 27px  36px;
  background: rgba(0,0,0,0.5); color: #fff;
  border-radius: 5px;
  border: 2px solid #E07250;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.cyber-faq-title {
  font-size: 33px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 48px;
}

.cyber-faq-list {
  display: flex;
  flex-direction: row;
  gap:   10px;
}

.cyber-faq-col {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap:  10px;
}

.cfaqc-insight {
  cursor: pointer;
  position: relative;
  padding: 0 0 27px 0;
  margin: 0 0 27px 0;
  border-bottom: 1px solid #E07250;
}

.cfaqc-insight input {
  cursor: pointer;
  display: none;
}

.cfaqc-insight label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  text-align: left;
  font-weight: 700;
  padding: 0 0 3px 75px;
  font-size: 18px;
  line-height: 32px;
  position: relative;
}

.cfaqc-insight label::before {
  content: "\002B";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D9D9D9;
  color: #fff;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  font-size: 33px;
  border-radius: 50%;
  font-weight: 700;
  transition: all ease 0.4s;
}

.cfaqc-insight label:hover::before {
  background-color:#E07250;
}

.cfaqc-insight input[type=checkbox]:checked + label::before,
.cfaqc-insight input[type=radio]:checked + label::before {
  content: "\2212";
  color: #fff;
  background-color:#E07250;
  border-color: transparent;
}

.cfaqc-answear {
  overflow: hidden;
  transition: max-height 0.4s; 
  max-height: 0;
  margin-top:-1px;
  font-size: 13px;
  line-height: 1.7;
}

.cfaqc-answear p {
  padding: 3px 0 0 75px;
  margin: 0;
}

.cfaqc-insight input:checked ~ .cfaqc-answear {
  max-height: 100vh;
}

.footer-dark-endzone {
  background-color: #060606;
}

.fde-nav-bg {
  padding: 18px;
  background-color:  #f7f3e9a8;
}

.fde-nav {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

.fde-link {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin: 0;
  display: block;
  padding: 6px;
}

.fde-link:hover {
  color: #E07250;
}

.fd-endzone {
  padding-top: 46px;
  padding-bottom: 46px;
  display: flex;
  flex-direction: row;
  gap: 27px;
  justify-content: center;
  align-items: center;
}

.fd-ed-col-big, .fd-ed-col-small {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fd-ed-col-big {
  width: 68%;
}

.fd-ed-col-small {
  width: 30%;
}

.fd-ed-pic {
  display: flex;
  margin: auto;
  width: 65px;
  height: auto;
  object-fit: contain;
}

.fd-ed-txt {
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.neon-dossier-bg {
  background: rgba(0,0,0,0.9); color: #fff;
}

.neon-dossier {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.neon-dossier-content, .neon-dossier-dec-list {
  width: 48%;
}

.neon-dossier-dec-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;  
}

.neon-dossier-dec-item {
  width: 100%;
  padding: 24px;
  border-radius: 7px;
  box-shadow: 0 0 10px 3px #E07250;
  background: rgba(0,0,0,0.5);
}

.ndd-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 7px;
}

.neon-dossier-title {
  font-size:  33px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 48px;
}

.neon-dossier-txt {
  font-weight: 18px;
  line-height: 1.5;
}

.game-depot-sect {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(content/bg/bg-dark-069d8d4c525b1e.jpg);
}

.game-depot-overlay {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #E79E4Fa6;
}

.game-depot-title {
  font-size: 33px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 48px;
  text-align: center;
  color: #fff;
}

.game-depot-list {
  display: flex;
  flex-direction: row;
  gap: 27px;
  justify-content: center;
  flex-wrap: wrap;
}

.game-depot-card {
  width: 31%;
  background:#ffffff99;
  padding:  18px;
  border-radius:  5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  position:relative;
  margin: 18px auto;
}

.gdc-img-block{
  position:absolute;
  top:5px;
  left:50%;
  transform:translate(-50%);
  width: 100%;
  padding: 10px;
  transition: all 0.2s ease-in-out;
}

.gdc-img{
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
}

.game-depot-card:hover .gdc-img-block{
  top:-18px;
}

.game-depot-card:hover .gdc-img{
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.gdc-cotnent {
  padding-top:100%;
}

.gdc-cotnent .gdc-btn{
  text-align:center;
  font-size:  14px;
  font-weight:700;
  padding: 6px;
  margin-bottom: 35px;
  position:relative;
  transition: all 0.2s ease-in-out;
}

.gdc-cotnent .gdc-btn > *{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);    
}

.gdc-cotnent .gdc-btn > a {
  transition: all 0.05s ease-in-out;
}

.gdc-cotnent .gdc-title {
  text-align:center;
}

.gdc-cotnent .gdc-title {
  font-size:  21px;
  font-weight: 700;
  margin: 10px auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}

.gdc-cotnent .gdc-txt{
  text-align: justify;
  margin:0;
  overflow: hidden;
      text-overflow: ellipsis;
      display: -moz-box;
      -moz-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-clamp: 3;
      box-orient: vertical;
}

.signal-hub-title-bg {
  background-color: #E07250;
  padding: 32px 0;
}

.sh-title-txt {
  font-size: 33px;
  font-weight: 700;
  margin: 0 auto;
  color: #fff;
}

.signal-hub-opimg {
  background-image: url(content/bg/opacity_bg-069d8d4c525bc2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.signal-hub {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  direction: ltr !important;
  padding-top: 35px;
  padding-bottom: 35px;
}

.signal-hub-contacts {
  width: 38%;
}

.shc-bg {
  overflow: hidden;
  position: absolute;
  width: 45%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.shc-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shc-bg-color  {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #060606ba;
}

.shc-contact-list {
  padding: 24px 45px 27px 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shc-contact-item {
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #5d5d5d;
  padding: 0 0 6px;
  justify-content: space-between;
}

.shc-contact-item svg {
  width: 50px;
  height: 50px;
  fill: #fff;
}

.shc-contact-item-content {
  width: calc(100% - 50px);
}

.shc-contact-title {
  margin: 0;
  margin-bottom: 10px;
}

.signal-hub-form {
  padding: 35px 74px 74px 95px;
  width: 60%;
}

.shf-body {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.shf-input-wrapper {
  position: relative;
}

.shf-input {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 700;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background-color: transparent;
}

.shf-input-hi {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #E79E4F;
  transition: all 0.3s ease;
}

.shf-input:focus + .shf-input-hi {
  width: 100%;
}

.cyber-game-core-bg {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  background-color: #060606;
}

.cyber-game-info,
  .cyber-game-core {
    width: 100%;
  padding:  24px;
  box-shadow: 10px 10px 15px #E07250;
  gap: 21px;
  border-radius: 0px;
  background: rgba(0,0,0,0.9); color: #fff;
}

.cgc-title, .cgi-title  {
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  margin-bottom: 48px;
}

.cgi-img {
  width: 40%;
  height: 354px;
  object-fit: contain;
  float: left;
  margin:  24px;
}

.cgi-txt {
  font-size: 13px;
  line-height: 1.5;
}

.cgc-game {
  width: 100%;
  height: 100vh;
  min-height: 350px;
}

.shadow-links-page {
  padding-top: 74px;
  padding-bottom: 74px;
}





.button-1 {
  align-items: center;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 40px;
  padding: 13px 48px 15px;
  position: relative;
  text-decoration: none;
  background-color: #02282C;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  background-color: #FFFFFF;
  border: solid 5px #FFFFFF;
  border-radius: 4px;
  color: #02282C;
  padding: 10px 43px 8px 43px;
  padding-left: 22px;
  padding-right: 22px;
}

.button-1:not(:disabled):hover {
  background-color: transparent;
  color: #FFFFFF;
}

.button-2 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: flex;
  align-items: center;
  border: none;
  text-align: center;
  background-color: #E07250;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px;
  border-radius: 0px;
  justify-content: center;
  clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
  transition: 0.2s;
}

.button-2:after {
  right: 5px;
  left: auto;
  transform: rotate(180deg);
}

.button-2:hover, .button-2.active {
  background: #fff;
  clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
  color: #000;
}

.button-3 {
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  background-color: #E07250;
  transition: all 0.3s;
}

.button-3:hover {
  letter-spacing: 1px;
}

.button-4 {
  padding: 13px 33px;
  font-weight: 500;
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: capitalize;
  font-size: 16px;
  border-radius: 28px;
  background-image: linear-gradient(90deg, #00ff87 0%, #5fefff 100%);
  color: #001b17;
}

.button-4:hover {
  background-image: linear-gradient(90deg, #5fefff 0%, #00ff87 100%);
}

.button-5 {
  margin: 5px;
  padding: 20px;
  background: #333;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  border: solid #E79E4F 1px;
  font-size: 16px;
  color: rgb(161, 161, 161);
  transition: 500ms;
  border-radius: 5px;
  background: linear-gradient(145deg, #2e2d2d, #212121);
  inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
  box-shadow: -1px -5px 15px #E79E4Fc6, 5px 5px 15px #E79E4Fc6,
  inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
}

.button-5:hover {
  box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #E07250;
  color: #d6d6d6;
  transition: 500ms;
}

.button-5:active {
  box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #E07250;
  color: #d6d6d6;
  transition: 100ms;
}







@media (max-width: 1200px) {

  .cyber-container {
    max-width: 1140px;
  }

  .intro-gate-content {
    margin-top: 170px;
    margin-bottom: 170px;
  }
}

@media (max-width: 992px) {

  .cyber-container {
    max-width: 960px;
  }

  .skyline-hub {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .grc-content {
    justify-content: flex-start !important;
  }

  .input-fieldwrappergroup, .textarea-fieldwrappergroup {
    font-size: 14px;
  }

  .spt-dec-img {
    transform: translate(0);
    left: 0;
  }

  .sh-title-txt {
    text-align: center;
  }
}

@media(max-width: 767px)  {

  .cyber-container {
    max-width: 720px;
  }

  .intro-gate-content {
    margin-top: 130px;
    margin-bottom: 130px;
}

.intro-gate-title {
  font-size: 25px;
}

.about-protocol {
  flex-direction: column-reverse;
}

.about-protocol-imgbox, .about-protocol-content {
  width: 100%;
}

.game-repository-card {
  width: 100% !important;
}

.order-console-img {
  width: 30%;
}

.order-console-form {
  width: 70%;
}

.cyber-faq-list {
  flex-direction: column;
}

.start-protocol-title {
  flex-direction: row-reverse !important;
}

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

.game-depot-card {
  width: 46%;
}

.signal-hub-form, .shc-contact-list {
  padding: 20px;
}
 
.shc-contact-item {
  flex-direction: column;
}

.shc-contact-item-content {
  width: 100%;
}

.signal-hub {
  flex-direction: column;
}
  
.signal-hub-contacts, .signal-hub-form {
  width: 100%;
} 

.shc-bg {
  display: none;
}

.shc-contact-title, .shc-contact-adress, .shc-contact-item-content {
  color: #000;
}

.shc-contact-item svg {
  fill: #000;
}

.neon-dossier {
  flex-direction: column;
}

.neon-dossier-content, .neon-dossier-dec-list {
  width: 100%;
  flex-wrap: wrap;
}
}

@media(max-width: 576px) {

 .cyber-container {
    max-width: 540px;
}

.fd-endzone {
  flex-direction: column;
}

.fd-ed-col-big, .fd-ed-col-small {
  width: 100%;
}

.shn-list {
  flex-wrap: wrap;
  padding: 0;
  font-size: 14px;
  justify-content: center;
}

.order-console {
  flex-direction: column;
}

.order-console-img, .order-console-form {
  width: 100%;
}

.game-depot-card {
  width: 100%;
}

.cgi-img {
  height: auto;
  width: 100%;
  margin: 0 0 20px 0;
}

button {
  font-size: 14px;
}
}


.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
