@import url('https://fonts.googleapis.com/css2?family=News+Cycle:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');

:root{
  --bc-1: #accfeb;
  --bc-2: #b8e2f2;
  --bc-3: #74c2e1;
  --bc-4: #4a91c7;
  --bc-5: #2b5e98;

  --cb-1: #0077be; 
  --cb-2: #00aaff; 
  --cb-3: #00ccff; 
  --cb-4: #005f6b; 
  --cb-5: #009688; 

  --bi-1: radial-gradient(circle, #b0e0e6 0%, #87ceeb 70%, #4682b4 100%);
  --bi-2: radial-gradient(circle, #c2efff 0%, #74c2e1 70%, #2b5e98 100%);
  --bi-3: radial-gradient(circle, #a2d5e4 0%, #5f9fd3 70%, #1f4d73 100%);
  --bi-4: radial-gradient(circle, #8fcfe3 0%, #3e87b3 70%, #1a4c6d 100%);
  --bi-5: radial-gradient(circle, #76bcd9 0%, #2d7aa6 70%, #113d59 100%);
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  direction: ltr;
  font-family: 'News Cycle', sans-serif !important;
  font-size: clamp(14px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 1.4;
}

.background-body{
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bc-2);
  background-image: var(--bi-2);
}

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

p, li{
  padding: 6px 0;
  line-height: 1.4;
}

li{
  margin: 0 6px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

.main-container{
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

.page-privacy__box{
  word-break: break-all;
  padding: 58px 0;
  overflow: hidden;
  width: 100%;
}

.politic-title{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(30px, 4vw, 50px);
}

.content-politics{
  opacity: 0.8;
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
  text-align: justify;
}

.page-privacy__box a{
  transition: 0.3s ease;
  color: #fff;
}

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

#bubbles-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0; 
}

.bubble {
  position: absolute;
  bottom: 0;
  width: 21px;
  height: 21px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  ); 
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5); 
  animation: rise 10s linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-30vh) scale(0.5);
    opacity: 0;
  }
}

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

.header-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-06908d45c54d78.jpg);
  background-attachment: fixed;
  background-position: center;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

.header{
  padding: 58px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-header{
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, .3));
  position: relative;
  cursor: pointer;
}

.logoImg{
  top: 50%;
  z-index: -1;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logoImg img{
  object-fit: contain;
  width: 116px;
  max-height: 116px;
}

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

.logoTitle h2{
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 50px);
  margin: 0;
}

.logo-header a:hover{
  opacity: 0.5;
}

.header h5{
  padding: 58px 0 27px;
  font-weight: normal;
  opacity: 0.8;
  width: 60%;
  font-size: clamp(22px, 4vw, 27px);
  color: #fff;
}

.header-nav {
  direction: initial;
  position: fixed;
  z-index: 3;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nav-card a {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  text-decoration: none;
  position: relative;
}

.nav-circle {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-text {
  line-height: 2;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  border-radius: 15px;
  background-color: #f5f5f5;
  padding: 1px 12px;
  color: var(--cb-2);
  font-size: clamp(12px, 4vw, 14px);
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.nav-card a:hover .nav-circle {
  transform: scale(1.3);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.nav-card a:hover .nav-text {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  opacity: 1;
  transform: translateX(0);
}

.about-us{
  display: flex;
  justify-content: space-between;
  gap: 58px;
  flex-direction: row;
  padding: 58px 0;
}

.about-us__box{
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 30px;
}

.about-us__box::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 355px;
  background-repeat: no-repeat;
  background-image: url(imagevault/other/seaweed-06908d45c55000.png);
  background-size: contain;
  background-position: right;
  z-index: -1;
}

.about-us__box h2{
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

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

.about-us__img{
  flex: 1;
}

.about-us__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit{
  display: flex;
  flex-direction: column;
  gap: 58px;
  padding: 58px 0;
}

.benefit h2{
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.benefit-box{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card{
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  ); 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.benefit-card img{
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.benefit-card p{
  padding: 0;
  font-size: clamp(14px, 4vw, 16px);
  color: #040807;
  opacity: 0.8;
}

.video-back{
  margin: 58px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.video-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-16908d45c54da4.jpg);
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

.video-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
  padding: 116px 0;
}

.video-box h2{
  text-align: center;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.video-play-btn {
  transition: 1s ease;
  cursor: pointer;
}

.video-play-btn svg {
  animation: zoomEffect 3s ease-in-out infinite;
  transition: 1s ease;
  width: 58px;
  height: 58px;
  fill: #fff;
}

.video-play-btn:hover svg{
  opacity: 0.5;
}

@keyframes zoomEffect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.video-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  overflow: auto;
}

.video-overlay video {
  border-radius: 15px;
  width: 80%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay-close-btn {
  transition: 0.3s ease;
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  cursor: pointer;
}

.overlay-close-btn svg {
  transition: 0.3s ease;
  width: 30px;
  height: 30px;
  fill: #fff;
}

.overlay-close-btn:hover svg{
  opacity: 0.5;
}

.catalog-game{
  display: flex;
  flex-direction: column;
  gap: 58px;
  padding: 58px 0;
}

.catalog-game h2{
  text-align: center;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.catalog-game__box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.catalog-game__card{
  overflow: hidden;
  display: flex;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  ); 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  border-radius: 15px;
  flex-direction: row;
}

.catalog-card__img{
  flex: 1.5;
}

.catalog-card__img img{
  width: 100%;
  height: 100%;
  max-height: 287px;
  object-fit: cover;
}

.catalog-card__content{
  flex: 2;
  display: flex;
  justify-content: center;
  padding: 30px;
  align-items: start;
  gap: 21px;
  flex-direction: column-reverse;
}

.catalog-card__content h5{
  font-weight: normal;
  opacity: 0.8;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.catalog-rating{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.catalog-rating svg{
  width: 15px;
  height: 15px;
  fill: gold;
}

.catalog-title{
  font-weight: bold;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
  transition: 0.3s ease;
}

.catalog-title:hover{
  opacity: 0.5;
}

.menu-game{
  display: none;
  flex-direction: column;
  gap: 58px;
  padding: 58px 0;
}

.menu-game h2{
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.manu-game__box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-game__card{
  height: 355px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.game-card__img{
  width: 100%;
  height: 100%;
  position: relative;
}

.game-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card__content{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: end;
  gap: 15px;
  padding: 30px;
  background: linear-gradient(359deg, #040807, transparent);
}

.game-title{
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  font-size: clamp(18px, 1vw, 22px);
  transition: 0.3s ease;
}

.game-title:hover{
  opacity: 0.5;
}

.accordion {
  position: relative;
  justify-content: space-between;
  padding: 58px 0;
  display: flex;
  flex-direction: row;
  gap: 58px;
}

.accordion::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 355px;
  background-repeat: no-repeat;
  background-image: url(imagevault/other/corals-06908d45c54f94.png);
  background-size: contain;
  background-position: right;
  z-index: -1;
}

.accordion h2 {
  flex: 1;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.accordion-container {
  flex: 3;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.accordion-item h5 {
  background-color: #fff;
  padding: 21px;
  border-radius: 21px;
  margin: 0;
  cursor: pointer;
  font-size: clamp(18px, 4vw, 22px);
  display: flex;
  align-items: center;
  gap: 21px;
  justify-content: space-between;
  color: #040807;
  transition: color 0.3s ease;
}

.icon-toggle {
  width: 30px;
  height: 30px;
}

.accordion-item.open h5 {
  background-color: var(--cb-2);
  color: #fff;
}

.accordion-item.open .icon-toggle {
  fill: #fff;
}

.accordion-content {
  padding: 0 21px;
  margin-top: 15px;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.reviews-section {
  margin: 58px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-26908d45c54dcd.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  filter: brightness(0.4);
  z-index: -1;
}

.reviews {
  direction: initial;
  padding: 58px 0;
}

.reviews-box {
  direction: initial;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  ); 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  border-radius: 15px;
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.reviews-item {
  padding: 58px;
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.reviews-item h5 {
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.reviews-item span svg {
  width: 58px;
  height: 58px;
  fill: #fff;
}

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

.form-container-back{
  position: relative;
  padding: 58px 0;
}

.form-container-back::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 355px;
  background-repeat: no-repeat;
  background-image: url(imagevault/other/submarine-06908d45c55112.svg);
  background-size: contain;
  background-position: right;
  z-index: -1;
}

.form-container{
  margin: 0 auto;
  width: 70%;
  padding: 30px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  ); 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-container h2{
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
  text-align: center;
}

.block-form {
  position: relative;
  display: flex;
  flex-direction: column;
}

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

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

.input-container .input-btn--container--item, .input-container .textarea-btn--container--item {
  outline: none;
  margin: 6px 0;
}

.input-container .input-btn--container--item {
  border-radius: 60px;
  transition: 0.3s ease;
  border: none;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  color: #040807;
  background-color: #fff;
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
}

.input-container .textarea-btn--container--item {
  border-radius: 60px;
  transition: 0.3s ease;
  border: none;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  color: #040807;
  background-color: #fff;
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 33px;
  max-height: 111px;
}

.input-container .input-btn--container--item::placeholder, .input-container .textarea-btn--container--item::placeholder{
  color: #040807b3;
}

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

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

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

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

.block-form button{
  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.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s 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.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.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.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

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

.block-play-back{
  margin: 58px 0;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.block-play-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-36908d45c54df4.jpg);
  background-attachment: fixed;
  background-position: center;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

.block-play{
  padding: 58px 0;
  display: flex;
  justify-content: space-between;
  gap: 58px;
  flex-direction: row;
}

.block-play-content{
  flex: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 30px;
}

.block-play-content h2{
  text-transform: uppercase;
  font-weight: bold;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

.block-play-img{
  flex: 1;
}

.block-play-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.footer-top{
  border-bottom: 1px dotted #fff;
  border-top: 1px dotted #fff;
  align-items: center;
  justify-content: center;
  padding: 58px 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.disclaimer{
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  ); 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  border-radius: 15px;
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.disclaimer h2{
  text-transform: uppercase;
  font-size: clamp(22px, 4vw, 30px);
  color: #fff;
}

.disclaimer 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: center;
  flex-direction: row;
  gap: 15px;
}

.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{
  justify-content: center;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

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

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

.flex-column{
  display: flex;
  gap: 58px;
  flex-direction: column-reverse;
}

.playing-block{
  width: 100%;
  height: 100vh;
}

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

.art-cont-title {
  margin: 58px 0;
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

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

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

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

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

.contacts-page{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 58px;
  padding: 58px 0;
}

.kontact-form{
  flex: 1;
  padding: 30px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%
  ); 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.kontact-form h2{
  margin-bottom: 33px;
  text-align: center;
  color: #fff;  
  font-size: clamp(22px, 4vw, 30px);
}

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  border-radius: 60px;
  transition: 0.3s ease;
  border: none;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  color: #040807;
  background-color: #fff;
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border-radius: 60px;
  transition: 0.3s ease;
  border: none;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  color: #040807;
  background-color: #fff;
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 33px;
  max-height: 111px;
}

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

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

.contacts-box{
  flex: 1;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 30px;
}

.contacts-card{
  margin: 6px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.contacts-card svg{
  fill: #fff;
  width: 30px;
  height: 30px;
}

.contacts-card a h5{
  font-weight: normal;
  flex: 1;
  transition: 0.3s ease;
  font-size: clamp(16px, 4vw, 21px);
  color: #fff;
}

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

.contacts-card h5{
  font-weight: normal;
  flex: 1;
  font-size: clamp(16px, 4vw, 21px);
  color: #fff;
}

.menu-mobile{
  direction: initial;
  display: none;
  position: fixed;
  z-index: 5;
  top: 30px;
  right: 30px;
}

.burger-toggle {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
}

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

.burger-line:nth-of-type(2) {
  top: calc(50% - 7px);
}

.burger-line:nth-of-type(3) {
  top: calc(50% + 7px);
}

.burger-toggle.open .burger-line:nth-of-type(1) {
  display: none;
}

.burger-toggle.open .burger-line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.burger-toggle.open .burger-line:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.menu-wrapper {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--cb-2);
  transform: translateY(-110%);
  transition: transform 0.5s;
}

.menu-wrapper.open {
  transform: translateY(0);
}

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

.menu-wrapper ul {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.menu-wrapper li {
  list-style-type: none;
}

.menu-link {
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(16px, 4vw, 22px);
  color: #fff;
}

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

.my-button-1 {
  background-color: #fff;
  padding: 6px 30px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--cb-2);
  transition: all 1s;
  font-size: clamp(16px, 4vw, 18px);
  position: relative;
  overflow: hidden;
  outline: 1px solid var(--cb-2);
}

.my-button-1:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 1px solid var(--cb-2);
  box-shadow: 4px 5px 17px -4px var(--cb-2);
}

.my-button-1::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--cb-2);
  transform: skewX(44deg);
  z-index: -1;
  transition: width 1s;
}

.my-button-1:hover::before {
  width: 250%;
}

.my-button-2 {
  background-color: #fff;
  padding: 6px 30px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--cb-2);
  transition: all 1s;
  font-size: clamp(16px, 4vw, 18px);
  position: relative;
  overflow: hidden;
}

.my-button-2:hover {
  border-color: var(--cb-2);
  box-shadow: inset 0 0 0 2px var(--cb-2);
  color: var(--cb-2);
}

.my-button-3 {
  background-color: var(--cb-2);
  padding: 6px 30px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  transition: all 0.5s;
  font-size: clamp(16px, 4vw, 18px);
  position: relative;
}

.my-button-3:hover {
  border-radius: 50px;
  background-color: var(--cb-{rand_number_6});
  transform: scale(1.1);
}

.my-button-4 {
  background-color: #fff;
  padding: 6px 30px;
  border: 2px solid var(--cb-2);
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--cb-2);
  transition: all 0.5s;
  font-size: clamp(16px, 4vw, 18px);
  position: relative;
  overflow: hidden;
}

.my-button-4:hover {
  border: 2px solid transparent;
  box-shadow: 0 0 10px var(--cb-2);
}

.my-button-5 {
  background-color: #fff;
  padding: 6px 30px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--cb-2);
  transition: all 1s;
  font-size: clamp(16px, 4vw, 18px);
  position: relative;
  overflow: hidden;
  outline: 1px solid var(--cb-2);
}

.my-button-5:hover {
  transform: scale(1.1);
  outline: 1px solid var(--cb-2);
  box-shadow: 4px 5px 17px -4px var(--cb-2);
}
.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;
}


@media (max-width: 1199px){
  .catalog-card__content{
    flex: 1;
  }

  .catalog-card__img{
    flex: 1;
  }
}

@media (max-width: 991px) {
  .menu-mobile{
    display: block;
  }

  .header-nav{
    display: none;
  }

  .header h5{
    width: 100%;
  }

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

  .about-us__img img{
    max-height: 50vh;
  }

  .catalog-game__card{
    flex-direction: column;
  }

  .catalog-card__content{
    justify-content: start;
  }

  .accordion{
    flex-direction: column;
  }

  .reviews-box{
    width: 100%;
  }

  .form-container{
    width: 100%;
  }

  .footer-top{
    flex-direction: column-reverse;
  }

  .manu-game__box{
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contacts-page{
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .header-back::before{
    background-attachment: unset;
  }

  .video-back::before{
    background-attachment: unset;
  }

  .reviews-section::before{
    background-attachment: unset;
  }

  .block-play-back::before{
    background-attachment: unset;
  }

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

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

  .manu-game__box{
    grid-template-columns: repeat(1, 1fr);
  }

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

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

  .catalog-game__card{
    flex-direction: row;
  }

  .catalog-card__content{
    flex: 2;
  }

  .catalog-card__img{
    flex: 1.5;
  }
}

@media (max-width: 576px){
  .catalog-game__card{
    flex-direction: column;
  }

  .catalog-card__content{
    flex: 1;
  }

  .catalog-card__img{
    flex: 1;
  }

  .reviews-item{
    padding: 21px;
  }

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

  .block-play{
    align-items: center;
    flex-direction: column-reverse;
  }
}

