@import url('https://fonts.googleapis.com/css2?family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #020c15;
  direction: ltr;
  font-family: 'Radio Canada Big', sans-serif !important;
  font-size: clamp(14px, 4vw, 18px);
  margin: 0;
  padding: 0px;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
p{
  padding: 0;
  margin: 0;
}

p, li{
  padding: 5px 0;
  line-height: 1.3;
}

li{
  margin: 0 8px;


}

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

img{
  display: block;
  max-width: 100%;
  max-height: 100%;
}

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

.container-box{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media screen and (min-width: 480px) {
  .container-box{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .container-box{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container-box{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .container-box{
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px){
  .container-box{
    max-width: 1170px;
    }
}

@media (min-width: 1400px){
  .container-box{
    max-width: 1274px;
  }
}

.header-content-lay{
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.header-content-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-06979d66f03470.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
  z-index: -1;
}

.header-lay{
  padding: 20px 0;
}

.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.logo{
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 25px;
}

.logoImg img{
  width: 40px;
}

.logo a{
  color: #fff; 
  display: flex; 
  align-items: center; 
  gap: 20px;
  transition: color 0.3s ease;
}

.logoTitle h2{
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.topmenu li {
  padding: 0;
  position: relative;
}

.submenu-link {
  color: #fff; 
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 10px; 
  transition: 0.3s ease;
}

.submenu-link:hover {
  color: #fff;
  opacity: 0.5;
}

.submenu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.3s ease 0s forwards;
  transition: all 0.3s ease;
}

@keyframes slideIn {
  0% {
    margin-top: 28px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.submenu li{
  padding: 0;
  border-bottom: 4px solid rgb(245, 244, 255);
}

.submenu a {
  font-size: clamp(14px, 4vw, 16px);
  color: #180707;
  padding: 10px;
  display: block;
  transition: 0.3s ease;
}

.submenu a:hover {
  margin-left: 8px;
}

.topmenu li:hover .submenu {
  display: block;
}

.fixed-header {
  background-color: #180707;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: top 0.3s ease;
}

.header-content{
  min-height: 100vh;
  display: flex;
  flex-direction:  row-reverse;
  align-items: center;
  gap: 78px;
  justify-content: space-between;
  padding: 78px 0;
}

.header-content-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
  flex: 1;
}

.header-content-text h2{
  text-transform: uppercase;
  color: #eeeeee;
  font-size: clamp(20px, 4vw, 43px);
}

.header-content-text p{
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-size: clamp(16px, 4vw, 18px);
}

.link-button{
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  font-size: 18px;
  color: #eeeeee;
  border: 2px solid #eeeeee;
  border-radius: 30px;
  background-color: transparent;
  font-weight: 400;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.link-button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #eeeeeeb3;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.link-button:hover::before {
  scale: 3;
}

.link-button:hover {
  color: #180707;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
}

.link-button:active {
  scale: 1;
}

.header-content-img{
  flex: 1;
}

.header-content-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

.scroll-to-top svg{
  transition: 0.3s ease;
  width: 40px;
  height: 40px;
  fill: #fff;
}

.scroll-to-top svg:hover {
  fill: #eeeeee;
}

.about-us-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.about-us-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-16979d66f034a4.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.3);
  z-index: -1;
}

.about-us{
  display: flex;
  flex-direction:row-reverse;
  align-items: center;
  gap: 78px;
  justify-content: space-between;
  padding: 78px 0;
}

.about-us-img{
  flex: 1;
}

.about-us-img img{
  max-height: 100vh;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-us-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
  flex: 1;
}

.about-us-text h2{
  text-transform: uppercase;
  color: #eeeeee;
  font-size: clamp(20px, 4vw, 43px);
}

.about-us-box{
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-size: clamp(16px, 4vw, 18px);
}

.stats-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.stats-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-26979d66f034d4.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: brightness(0.5);
  z-index: -1;
}

.stats{
  padding: 104px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 78px;
}

.stats-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stats-card h1{
  text-transform: uppercase;
  color: #eeeeee;
  font-size: clamp(20px, 4vw, 43px);
}

.stats-card h5{
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.game-catalog{
  padding: 78px 0;
}

.game-catalog-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 78px;
}

.game-catalog-title h2{
  color: #eeeeee;
  font-size: clamp(20px, 4vw, 43px);
  text-transform: uppercase;
}

.game-catalog-title p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.game-catalog-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
}

.game-catalog-card {
  position: relative;
  overflow: hidden;
}

.catalog-card-img img {
  width: 100%;
  height: 277px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.catalog-card-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  justify-content: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

.catalog-card-description a h5{
  transition: 0.3s ease;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(18px, 4vw, 20px);
}

.catalog-card-description a h5:hover{
  color: #eeeeee;
}

.game-catalog-card:hover .catalog-card-description {
  opacity: 1;
}

.game-catalog-card:hover .catalog-card-img img {
  transform: scale(1.1); 
}

.button-catalog{
  cursor: pointer;
  position: relative;
  padding: 10px 25px;
  font-size: clamp(16px, 4vw, 18px);  
  color: #eeeeee;
  border: 2px solid #eeeeee;
  border-radius: 30px;
  background-color: transparent;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button-catalog::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #eeeeeeb3;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.button-catalog:hover::before {
  scale: 3;
}

.button-catalog:hover {
  color: #180707;
  scale: 1.1;
  box-shadow: 0 0px 19px rgba(193, 163, 98,0.4);
}

.button-catalog:active {
  scale: 1;
}

.background-wrapper{
  height:40vh;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.background-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-36979d66f03502.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.step-game{
  display: flex;
  flex-direction:row-reverse;
  align-items: center;
  gap: 78px;
  justify-content: space-between;
  padding: 78px 0;
}

.step-game-box{
  flex: 1;
}

.step-game-box h2{
  margin-bottom: 39px;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(20px, 4vw, 28px);
}

.step-game-block{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.step-game-card{
  border: 2px solid #eeeeee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.step-game-card svg{
  width: 39px;
  height: 39px;
  fill: #eeeeee;
}

.step-game-card h5{
  color: #fff;
  font-size: clamp(14px, 4vw, 16px);
}

.step-game-img{
  flex: 1;
}

.step-game-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comments-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.comments-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-46979d66f03530.jpg);
  background-position: center;
  filter: brightness(0.3);
  background-size: cover;
  z-index: -1;
}

.comments{
  padding: 78px 0;
}

.comments h2{
  margin-bottom: 39px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(20px, 4vw, 43px);
  color: #eeeeee;
}

.comments-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.comments-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comments-card {
  background-color: #0C1924;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 1s;
}

.comments-card-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 20px;
}

.comments-card-text svg{
  width: 78px;
  height: 78px;
  fill: #eeeeee;
}

.comments-card-text p {
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
  margin: 0;
}

.comments-card-text h5 {
  font-size: clamp(18px, 4vw, 20px);
  color: #fff;
  opacity: 0.8;
  margin: 0;
}

.comments-card.active {
  opacity: 1;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
}

.dots {
  text-align: center;
  margin-top: 19px;
}

.dot {
  border: 2px solid transparent;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 5px;
  background-color: #eeeeee; 
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.dot.active {
  border: 2px solid #eeeeee;
  background-color: #0C1924; 
}

.video-block{
  padding: 78px 0;
}

.video-block h2{
  margin-bottom: 39px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(20px, 4vw, 43px);
  color: #eeeeee;
}

.video-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 78px 0;
}

.form-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-56979d66f0355e.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.osn-form {
  background-color: #0C1924;
  margin: 0 auto;
  padding: 39px;
  width: 60%;
  display: flex;
  flex-direction: column;
}

.title-container{
  margin-bottom: 39px;
}

.title-container h2{
  text-align: center;
  font-size: clamp(20px, 4vw, 30px);
  color: #eeeeee;
}

.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-container label{
  color: #fff;
}

.input-container .input-formcontainer__group, .input-container .textarea-formcontainer__group, .form button {
  outline: none;
  margin: 8px 0;
}

.input-container .input-formcontainer__group {
  transition: 0.3s ease;
  color: #fff;
  background-color: transparent;
  padding: 18px;
  border: 2px solid transparent;
  border-bottom: 2px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-formcontainer__group {
  transition: 0.3s ease;
  color: #fff;
  background-color: transparent;  
  padding: 18px;
  border: 2px solid transparent;
  border-bottom: 2px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 39px;
  max-height: 150px;
}

.input-container .input-formcontainer__group:focus, .input-container .textarea-formcontainer__group:focus, .input-container .input-formcontainer__group:hover, .input-container .textarea-formcontainer__group:hover{
  border: 2px solid #eeeeee;
}

.input-container .input-formcontainer__group::placeholder, .input-container .textarea-formcontainer__group::placeholder{
  color: #fff;
}

.check{
  transition: 0.3s ease;
  color: #fff;
}

.check:hover{
  opacity: 0.5;
  color: #fff;
}

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 16px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.submit-form{
  margin: 0 auto;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.4s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.4s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
  -o-transition: all 0.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
  transition: all 0.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.2s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.2s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.2s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.footer-lay{
  background-color: #0C1924;
}

.footer{
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.disclaimers{
  gap: 25px;
  background-color: darkred;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
}

.disclaimers h2{
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 20px);
  color: #fff;
}

.disclaimers p{
  padding: 0;
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
  opacity: 0.8;
}

.privacy ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
}

.privacy ul li a {
  font-size: clamp(16px, 4vw, 18px);
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.privacy ul li a:hover{
  color: #fff;
  opacity: 0.5;
}

.footer-bottom-lay{
  background-color: #020c15;
}

.footer-bottom{
  flex-wrap: wrap;
  padding:  20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.footer-bottom img{
  max-width: 52px;
}

.playing-block{
  padding: 39px 0;
  width: 100%;
  height: 100vh;
}

.playing-block iframe{
  border: none;
  width: 100%;
  height: 100%;
}

.page-privacy-lay{
  position: relative;
  word-break: break-all;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 78px 0;
}

.page-privacy-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-66979d66f0358b.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.page-privacy{
  color: #fff;
  overflow: hidden;
  text-align: justify;
  width: 100%;
}

.title-politics{
  margin-bottom: 25px;
  font-size: clamp(20px, 4vw, 28px);
}

.page-privacy a{
  color: #fff;
}

.page-privacy a:hover{
  color: #fff;
  opacity: 0.5;
}

.art-cont-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap:19px ;
}

.art-cont-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/bg/bg-all-76979d66f035b8.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.art-cont {
  padding: 78px 0;
}

.art-cont-title {
  margin-bottom: 39px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(20px, 4vw, 28px);
  color: #eeeeee;
}

.art-block {
  overflow: hidden;
  position: relative;
}

.art-block-images {
  float: left;
  width: 40%;
  margin: 39px;
  margin-top: 0;
  margin-left: 0;
}

.art-block-content {
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.art-block-content ul {
  list-style: inside;
}

.contacts-block{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 39px;
  padding: 104px 0;
}

.kontact-form{
  flex: 2;
  height: 100%;
  background-color: #131222;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kontact-form-title{
  margin-bottom: 25px;
}

.kontact-form-title h2{
  font-size: clamp(20px, 4vw, 30px);
  color: #eeeeee;
}

.input-kontact-form .inputs-kontact, .input-kontact-form .textarea-kontact{
  outline: none;
  margin: 8px 0;
}

.input-position{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.input-kontact-form .inputs-kontact {
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: #171627;
  padding: 18px;
  border: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: #171627;  
  padding: 18px;
  border: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 39px;
  max-height: 150px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: #ffffffb3;
}

.kontact-form button{
  margin: 0 auto;
}

.contacts{
  flex: 1;
}

.contacts-box{
  background-color: #131222;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-card{
  background-color: #171627;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.contacts-card svg{
  width: 25px;
  height: 25px;
  fill: #eeeeee;
}

.contacts-card a h5{
  word-break: break-all;
  transition: 0.3s ease;
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
}

.contacts-card a h5:hover{
  opacity: 0.5;
}

.contacts-card h5{
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
}

.menu-toggle {
  cursor: pointer;
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: all 0.5s;
}

.menu-toggle span:nth-of-type(2) {
  top: calc(50% - 7px);
}

.menu-toggle span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.menu-toggle.active span:nth-of-type(1) {
  display: none;
}

.menu-toggle.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}

.menu-toggle.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}

.nav-panel {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #171627;
  transform: translateY(-110%);
  transition: transform 0.5s; 
}

.nav-panel.active {
  transform: translateY(0);
}

.nav-panel nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.nav-panel ul {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.nav-panel li {
  list-style-type: none;
}

.nav-link {
  text-align: center;
  font-size: clamp(16px, 4vw, 20px);
  color: #fff;
}

.nav-link:hover {
  opacity: 0.5;
}


@media (max-width: 991px) {
  .header-nav{
    display: none;
  }

  .menu-toggle{
    display: block;
  }

  .header-content-img{
    display: none;
  }

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

  .stats{
    grid-template-columns: repeat(3, 1fr);
  }

  .game-catalog-box{
    grid-template-columns: repeat(3, 1fr);
  }

  .step-game{
    flex-direction: column-reverse;
  }

  .comments-card{
    width: 100%;
  }

  .osn-form{
    width: 100%;
  }

  .privacy ul{
    justify-content: center;
  }

  .stats-lay::before{
    background-attachment: unset;
  }

  .form-lay::before{
    background-attachment: unset;
  }

  .page-privacy-lay::before{
    background-attachment: unset;
  }

  .art-cont-lay::before{
    background-attachment: unset;
  }

  .contacts-block{
    flex-direction: column-reverse;
  }
}


@media (max-width: 767px) {
 .stats{
    grid-template-columns: repeat(1, 1fr);
  }

  .game-catalog-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .step-game-block{
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-bottom{
    text-align: center;
    flex-direction: column;
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }

  .art-block-images{
    width: 100%;
    margin: 0 0 39px 0;
  }

  .playing-block{
    height: 100vh;
  }

  .catalog-card-description{
    opacity: 1;
  }
}

@media (max-width: 576px){
  .osn-form{
    padding: 20px;
  }
}



.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;
    }
  }
}
