:root {
  --graddient-1: #770038;
  --graddient-2: #007730;
}
:root {
  --bg-angle: 0deg;
}
@property --bg-angle {
  inherits: false;
  initial-value: 0deg;
  syntax: "<angle>";
}

body {
  background-color: #000000 !important;
}
header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.5s;
}
header nav a {
  transition: 0.3s;
}
header nav a:hover {
  color: var(--graddient-1) !important;
}
.bright-gradient {
  background: linear-gradient(to right bottom, var(--graddient-1) 0%, var(--graddient-2) 50%, var(--graddient-1) 100%);
}
.text-pink {
  color: var(--graddient-1);
}
.gradient-btn {
  position: relative;
  background: linear-gradient(to right bottom, var(--graddient-1) 0%, var(--graddient-2) 50%, var(--graddient-1) 100%);
  color: #fff !important;
  -webkit-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  -moz-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  z-index: 1;
  transition: 0.5s !important;
}
.login {
  background: #000 !important;
  border: 2px solid var(--graddient-1);
}
.login:hover {
  border-color: var(--graddient-2);
}
.gradient-btn:hover {
  box-shadow:
    0 0 8px var(--graddient-2),
    0 0 15px var(--graddient-2),
    0 0 25px var(--graddient-2),
    0 0 35px var(--graddient-1),
    0 0 50px var(--graddient-1);
  outline-offset: 5px;
}
.gradient-btn:before {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(to right bottom, var(--graddient-2) 0%, var(--graddient-1) 50%, var(--graddient-2) 100%);
	border-radius: 5px;
	transition: all 0.6s ease;
  z-index: -1;
}
.gradient-btn:hover:before {
	height: 100%;
}
.burger-icon {
  display: none;
}
.banner-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url(../images/hero_desktop.webp) no-repeat center / cover;
  z-index: 3;
}
.banner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.banner-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, var(--graddient-1), var(--graddient-2), var(--graddient-1), var(--graddient-2));
  background-size: 400% 400%;
  animation: gradient-animation 2s infinite alternate;
  z-index: 2;
  opacity: 0.4;
}
@keyframes gradient-animation {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.banner-hero h1, #two h2, .about-main h3, .reviews h1, .disclaimer-section h2, .responsible h2, #contact h2, .text-shadow {
  text-shadow: 0 0 4px var(--graddient-1),
                   0 0 8px var(--graddient-1),
                   0 0 12px var(--graddient-1),
                   0 0 16px var(--graddient-1);
}
.game-border-animated {
  border: 8px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(
      to bottom,
      #000000,
      #000000
    )
    padding-box,
    conic-gradient(
      from var(--bg-angle),
      var(--graddient-1),
      var(--graddient-2) 30%,
      var(--graddient-2) 40%, 
      var(--graddient-2) 50%,
      var(--graddient-1)
    )
    border-box;
  animation: spin 2s infinite linear;
}
@keyframes spin {
  to {
    --bg-angle: 360deg;
  }
}
.footer-border {
  height: 3px;
  background: linear-gradient(to right, var(--graddient-2) 0%, var(--graddient-1) 50%, var(--graddient-2) 100%);
}
footer h5 {
  background-image: linear-gradient(to right bottom, var(--graddient-1) 0%, var(--graddient-2) 50%, var(--graddient-1) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.image-shadow {
  box-shadow:
    0 0 8px var(--graddient-2),
    0 0 15px var(--graddient-2),
    0 0 25px var(--graddient-2),
    0 0 35px var(--graddient-1),
    0 0 50px var(--graddient-1);
}

.reviews span {
  background-color: var(--graddient-1);
}
.disclaimer-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.disclaimer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.disclaimer-box {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    )
    padding-box,
    conic-gradient(
      from var(--bg-angle),
      var(--graddient-1),
      var(--graddient-2) 30%,
      var(--graddient-2) 40%, 
      var(--graddient-2) 50%,
      var(--graddient-1)
    )
    border-box;
}
.help-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 10px 0;
}
.help-box img {
  width: 150px;
}
.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.responsible ul {
  list-style-type: disc;
  padding-left: 20px;
}
.responsible a {
  color: var(--graddient-1);
  transition: 0.3s;
}
.responsible a:hover {
  color: #ffffff;
}
.disclaimer-section {
  position: relative;
  background: url(../images/111.png) no-repeat center / cover;
  z-index: 1;
  padding: 70px 0;
  margin-top: 50px;
}
.disclaimer-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.disclaimer-section h2 {
  transform: scale(1);
  animation: text-scale 1s alternate infinite;
}
.banner-hero a {
  transform: scale(1);
  animation: text-scale 1s alternate infinite;
}

.responsible .game-border-animated {
  transform: translateY(0);
  animation: box-transform 1s alternate infinite;
}

@keyframes text-scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes box-transform {
  to {
    transform: translateY(-10px);
  }
}
  
#contact input {
  color: #fff;
  -webkit-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  -moz-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
}
#contact .checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-left: 0;
}
#contact .checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 50%;
  border: 1px solid var(--graddient-1);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  background: var(--graddient-1);
}
#contact .checkbox input::after {
  content: "";
  height: 20px;
  width: 20px;
}
#contact .checkbox input:checked::after { 
  content: "";
  background: url(../images/check.svg) no-repeat center ;
  background-size: 10px auto;
}
#contact .checkbox label {
  padding: 0;
}
#contact .checkbox label, #contact .checkbox input {
  cursor: pointer;
}
#contact .checkbox a {
  color: var(--graddient-1);
  margin: 0 auto;
  transition: 0.3s;
}
#contact .checkbox a:hover {
  color: #ffffff;
}


@media screen and (max-width:991.98px) {
  .burger-icon {
    display: block;
  }
  .menu-box {
    position: absolute;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    top: 20px;
    left: 0;
    background-color: #000000;
    z-index: 98;
    width: 100%;
    height: calc(100vh - 20px);
    padding: 60px 0 20px;
    transition: all 0.3s ease;
    transform: translateX(-120%);
  }
  .menu-box.open {
    visibility: visible;
    transform: translateX(0%);
  }
  .menu-box nav {
    position: relative;
    transform: translate(0);
    --tw-translate-y: 0;
    --tw-translate-x: 0;
    top: 0;
    left: 0;
  }
  .menu-box nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    margin-bottom: 20px;
  }
  .banner-hero {
    padding-top: 40px;
  }
  .about-main {
    padding-top: 80px;
  }
  .about {
    padding-top: 100px;
  }
  .about-main .items-center, .about .items-center {
    gap: 50px;
  }
}
@media screen and (max-width: 575.98px) {
  .banner-hero h1 {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .banner-hero p {
    margin-bottom: 20px;
    padding-right: 0;
    font-size: 16px;
  }
  .reviews .left {
    margin-right: 0;
  }
  .reviews .left p {
    margin-bottom: 20px;
  }
  .disclaimer-wrapper p {
    font-size: 16px;
  }
  .disclaimer-box {
    padding: 30px 10px;
  }
  .responsible {
    word-break: break-word;
  }
  #contact {
    margin-top: 100px;
  }
  #contact img {
    display: none;
  }
}
@media screen and (max-width: 359.98px) {
  .banner-hero h1 {
    font-size: 28px;
  }
}

.thanks {
  min-height: 50vh;
  padding: 170px 0;
}
.thanks img {
  display: block;
  margin: 0 auto;
  width: 150px;
}
.docs * {
  color: white;
}
.docs {
  padding-top: 20px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs ul {
  list-style-type: disc;
  padding-left: 20px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--graddient-1);
  transition: 0.3s;
}
.docs a:hover {
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .docs h1 {
    font-size: 32px;
  }
}

.popup {
  background-color: #000;
  position: fixed;
  left: 40px;
  bottom: 40px;
  padding: 10px 30px 30px;
  z-index: 1000;
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  -moz-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  transition: 0.5s;
  transform: translateX(-150%);
  visibility: hidden;
}
.popup.open {
  transform: translateX(0);
  visibility: visible;
}
.popup img {
  width: 150px;
  height: auto;
}
.close-icon {
  position: absolute;
  right: -20px;
  cursor: pointer;
}
/*registration*/
.registration {
  display: none;
}
.registration--open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  top: 0px;
  right: 0;;
  background-color: #0000009f;
  overflow: hidden;
  position: fixed;
  z-index: 1001;
}
.registration__area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 802px;
  padding: 62px 78px 80px;
  background-color: #000;
  border: 2px solid var(--second-color);
  border-radius: 20px;
    -webkit-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  -moz-box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
  box-shadow: 10px 10px 58px 16px rgba(119, 0, 56, 0.51);
}
.close-login {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.registration img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 991.98px) {
  .registration__area {
    width: 600px;
    padding: 60px 32px 48px;
    background-size: contain;
  }
}
@media screen and (max-width: 767.98px) {
  .registration__area {
    width: 400px;
    padding: 60px 32px 32px;
    background-position: center center;
  }
}
@media screen and (max-width: 575.98px) {
  .registration__area {
    width: 280px;
    padding: 60px 16px 16px;
  }
}
.registration #contact {
margin-top: 0 !important;}