@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #26262E;
  flex-wrap: wrap;
  height: 100px;
  width: 100%;
}
@media (max-width: 740px) {
  .header {
    margin-bottom: 40px;
  }
}
.header__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
  font-size: 16px;
  font-family: "Albert Sans";
  color: #fff;
}
@media (max-width: 514px) {
  .header__nav {
    gap: 10px;
    width: 100%;
    justify-content: space-around;
  }
}
.header__nav__link {
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}
.header__nav__link:hover {
  border-bottom: 1px solid #42AE56;
}
.header-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.header-logo__text {
  font-family: "Albert Sans";
  color: #fff;
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: bold;
}
.header-logo__img {
  width: 35px;
  height: 56px;
}

.hero {
  display: flex;
  height: 525px;
  width: 100%;
  align-items: center;
  background-image: url("../img/banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 100px;
  padding-left: 200px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 1040px) {
  .hero {
    padding-left: 0;
    align-items: center;
    justify-content: center;
  }
}
.hero__line {
  width: 120px;
  height: 6px;
  background: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
}
@media (max-width: 1440px) {
  .hero {
    background-repeat: no-repeat;
  }
}
.hero-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Albert Sans";
  color: #fff;
  width: 550px;
}
.hero-container__block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hero-container__title {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 740px) {
  .hero-container__title {
    font-size: 40px;
  }
}
.hero-container__text {
  font-size: 20px;
  font-weight: 500;
  color: #B6B6B6;
}
@media (max-width: 740px) {
  .hero-container__text {
    width: 90%;
  }
}

.hero-button {
  width: 228px;
}

.first-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.first-section__block {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
}
@media (max-width: 1300px) {
  .first-section__block {
    gap: 30px;
  }
}
.first-section__block__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  background-color: rgb(21, 21, 27);
  font-family: "Albert Sans";
  width: 378px;
  height: 200px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.second-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  height: max-content;
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 64px;
}
.second-container__title {
  font-family: "Albert Sans";
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.second-container__games {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 55px;
  padding-left: 150px;
  padding-right: 150px;
}
@media (max-width: 740px) {
  .second-container__games {
    padding: 0px;
  }
}
.second-container__games__card__name {
  font-family: "Albert Sans";
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1040px) {
  .second-container__games__card__name {
    text-align: center;
  }
}
.second-container__title-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.second-container__title-block__line {
  height: 3px;
  width: 35%;
  background: linear-gradient(to right, #2132A8, #F82582);
}

.train {
  background-image: url("../img/train.jfif.html");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dog {
  background-image: url("../img/dog.jfif.html");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.buffalo {
  background-image: url("../img/buffalo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.wolf {
  background-image: url("../img/wolf.jfif.html");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.olympus {
  background-image: url("../img/olympus.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.chili {
  background-image: url("../img/chili.jfif.html");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bass {
  background-image: url("../img/bass.jfif.html");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.west {
  background-image: url("../img/west.jfif.html");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.second-container__games__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 282px;
  height: 250px;
  background-color: rgb(21, 21, 27);
  position: relative;
  gap: 20px;
  padding-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 4px solid transparent; /* Толщина рамки */
  border-image: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  border-image-slice: 1;
}
.second-container__games__card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-image: inherit;
  border-image-slice: inherit;
}
.second-container__games__card__link {
  width: 100%;
  border-radius: 16px;
  height: 75%;
  position: relative;
  transition: background-color 0.3s ease;
}
.second-container__games__card__link:hover {
  background-color: black;
}
.second-container__games__card__link:hover .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* 0.5 означает 50% затемнения */
}
.second-container__games__card__link:hover .play-button {
  display: flex;
}
.second-container__games__card .play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #42AE56;
  font-size: 18px;
  color: #fff;
  width: 167px;
  height: 61px;
  font-family: "Albert Sans";
  transition: border-radius 0.3s ease;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  cursor: pointer;
  color: white; /* Цвет текста кнопки */
  z-index: 10;
}
.second-container__games__card .play-button:hover {
  border-radius: 20px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 80%;
  font-family: "Albert Sans";
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid transparent; /* Толщина рамки */
  border-image: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  border-image-slice: 1;
}
.card-link::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-image: inherit;
  border-image-slice: inherit;
}

#slots-button {
  width: 234px;
}

.second-container__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  gap: 10px;
  font-family: "Albert Sans";
  font-size: 16px;
  font-weight: 400;
  color: #B6B6B6;
}

.third-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 90px;
  flex-wrap: wrap;
}
.third-container__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  width: 262px;
  height: 178px;
}
.third-container__card__text {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 20px;
}
.third-container__line {
  width: 2px;
  height: 178px;
  background: linear-gradient(to bottom, #2132A8, #F82582);
}
@media (max-width: 1300px) {
  .third-container__line {
    display: none;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: space-around;
  background-color: rgb(21, 21, 27);
  width: 100%;
  height: max-content;
  font-family: "Albert Sans";
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 40px;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  color: #B6B6B6;
}
.footer-container__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
}
.footer-container__text {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.footer-container__line {
  height: 1px;
  background: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  width: 80%;
}
.footer__disclaimer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #B6B6B6;
  padding-left: 15px;
  padding-right: 15px;
  gap: 10px;
}
.footer__disclaimer__img {
  width: 100px;
  height: auto;
}

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

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-image: url("../img/hero-pages.png");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Albert Sans";
  color: #fff;
  margin-bottom: 48px;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 100px;
}
.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 80%;
}
@media (max-width: 1439px) {
  .about-container {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.about-container__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  width: 1000px;
  font-weight: 400;
  color: #B6B6B6;
  font-family: "Albert Sans";
}
@media (max-width: 1040px) {
  .about-container__block {
    width: 90%;
  }
}
@media (max-width: 740px) {
  .about-container__img {
    width: 90%;
  }
}

.privacy__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: "Albert Sans";
  margin-top: 32px;
  margin-bottom: 80px;
}
.privacy__container__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
}
.privacy__container__text {
  color: #B6B6B6;
  font-size: 16px;
  width: 80%;
}
.privacy__container__title {
  color: #fff;
  width: 80%;
  font-size: 24px;
}

.contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
  width: 100%;
  gap: 48px;
}
@media (max-width: 1040px) {
  .contact {
    align-items: center;
  }
}
.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 740px) {
  .contact-container {
    align-items: center;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.contact-container__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media (max-width: 740px) {
  .contact-container__block {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.contact-container__input {
  color: #fff;
  font-family: "Albert Sans";
  padding-left: 20px;
  width: 570px;
  height: 54px;
  background-color: rgb(21, 21, 27);
  border-radius: 5px;
  border: 2px solid transparent; /* Толщина рамки */
  border-image: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  border-image-slice: 1;
}
.contact-container__input::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-image: inherit;
  border-image-slice: inherit;
}
@media (max-width: 740px) {
  .contact-container__input {
    width: 90%;
  }
}
.contact-container__textarea {
  color: #fff;
  font-family: "Albert Sans";
  padding-left: 20px;
  padding-top: 10px;
  width: 570px;
  height: 160px;
  background-color: rgb(21, 21, 27);
  border-radius: 5px;
  border: 2px solid transparent; /* Толщина рамки */
  border-image: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  border-image-slice: 1;
}
.contact-container__textarea::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-image: inherit;
  border-image-slice: inherit;
}
@media (max-width: 740px) {
  .contact-container__textarea {
    width: 90%;
  }
}
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 450px) {
  .contact-section {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.contact-section__card {
  font-family: "Albert Sans";
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-left: 15px;
  gap: 24px;
  border: 1px solid #DDDCE0;
  height: 83px;
  width: 280px;
}
@media (max-width: 450px) {
  .contact-section__card {
    width: 90%;
  }
}
.contact-section__card--img {
  width: 34px;
  height: 33px;
}
.message {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 51px;
  padding: 57px 32px;
  font-family: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  color: #fff;
  background-color: black;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-family: "Albert Sans";
  width: 420px;
  height: 440px;
}
.message__title {
  text-align: center;
  font-size: 28px;
  color: #fff;
}
.message__text {
  text-align: center;
  font-size: 16px;
  color: #BEBEBE;
}

.main-button[disabled],
.main-button.disabled {
  background-color: #ccc; /* Gray background color when disabled */
  pointer-events: none; /* Disable hover and click events */
  background: none;
  color: #fff;
  border: 2px solid transparent; /* Толщина рамки */
  border-image: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  border-image-slice: 1;
}
.main-button[disabled]::before,
.main-button.disabled::before {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-image: inherit;
  border-image-slice: inherit;
}

.main-button.disabled:hover {
  background-color: #ccc; /* Maintain gray background on hover */
}

#submitButton {
  font-family: "Albert Sans";
}

.label {
  font-family: "Albert Sans";
  color: #fff;
  font-size: 16px;
}

.fourth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Albert Sans";
  gap: 78px;
}
@media (max-width: 740px) {
  .fourth-container__img {
    width: 50%;
    height: max-content;
  }
}
.fourth-container__section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 55px;
  flex-wrap: wrap;
}
@media (max-width: 740px) {
  .fourth-container__section {
    gap: 20px;
  }
}
.fourth-container__title {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.fourth-container__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 157px;
}
.fourth-container__block__card {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  padding: 25px;
  width: 640px;
  height: 150px;
  border: 2px solid transparent; /* Толщина рамки */
  border-image: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  border-image-slice: 1;
}
@media (max-width: 740px) {
  .fourth-container__block__card {
    width: 90%;
    height: max-content;
  }
}
.fourth-container__block__card::before {
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-image: inherit;
  border-image-slice: inherit;
}
.fourth-container__block__card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.fourth-container__block__card__text {
  font-size: 16px;
  font-weight: 400;
  color: #B6B6B6;
}

body {
  box-sizing: border-box;
  background-color: #040404;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main-button {
  font-family: "Albert Sans";
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #C86CFE 0%, #707BFE 50%, #56DF9E 100%);
  font-size: 18px;
  color: #fff;
  width: 167px;
  height: 61px;
  border-radius: 8px;
  transition: border-radius 0.3s ease;
}
.main-button:hover {
  border-radius: 20px;
}

.games-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100vh;
}

.games__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 70px;
}
.games__container__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  flex-direction: row;
}
.games__container__block__text {
  font-family: "Albert Sans";
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  width: 800px;
}

/*# sourceMappingURL=main.css.map */
