@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Archangelsk";
  src: url("./public/Archangelsk.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero {
  font-family: Archangelsk;
  position: relative;
  height: 100vh;
  padding: 20px 0 0 0;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

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

.header_right {
  display: flex;
  gap: 40px;
}

.hero_content {
  position: absolute;
  bottom: 0;
  right: 320px;
  width: 625px;
  padding: 70px;
  background-color: #f8f200;
  clip-path: polygon(
    45px 0,
    100% 0,
    100% calc(100% - 45px),
    calc(100% - 45px) 100%,
    0 100%,
    0 45px
  );
}
.hero_content_title {
  font-weight: 400;
  font-size: 62px;
  line-height: 100%;
  color: black;
  margin-bottom: 50px;
}
.hero_content_link {
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  padding: 20px 50px;
  color: #f8f200;
  background: #000;
}
.hero_content_link:hover {
  color: #000;
  background-color: #d0cc0ade;
}

.content_first {
  font-family: Archangelsk;
  background-color: #ffffff;
  padding: 70px 0;
}
.content_first-top--title {
  font-weight: 400;
  font-size: 62px;
  line-height: 100%;
  color: #000;
}
.content_first-top--subtitle {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: #000000;
  opacity: 70%;

  margin-top: 25px;
}
.content_first-top--subtitle span {
  font-weight: 400;
  color: #52bedc;
}
.content_first-bottom {
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.content_first-bottom--left img:last-child {
  margin-top: 32px;
}
.content_first-bottom--right {
  margin-left: 32px;
}

.content_second {
  position: relative;
  background-color: #000;
  padding: 80px 0 70px 0;
}
.content_second-transition {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.content_second-top--title {
  display: flex;
  align-items: center;
}
.content_second-top--title h2 {
  font-family: Archangelsk;
  font-weight: 400;
  font-size: 62px;
  line-height: 100%;
  color: #ffffff;

  margin-left: 32px;
}
.content_second-top--subtitle {
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: #ffffff;
  margin-top: 25px;
}
.content_second-top--subtitle span {
  font-weight: 700;
  color: #52bedc;
}
.content_second-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.content_second-bottom--left {
  width: 50%;
}
.content_second-bottom--left---input {
  width: 100%;
  font-family: Roboto;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;

  background: transparent;
  outline: none;
  padding-bottom: 15px;
  border-bottom: 1px solid #777777;
}
.content_second-bottom--left input:last-child {
  margin-top: 35px;
}
.upload-area {
  position: relative;
  margin-top: 35px;
}
.upload-area label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 0;
  border: 1px dashed #777777;
  cursor: pointer;
  color: #ffffff;
}
.upload-area label:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.file_input-title {
  font-family: Roboto;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  text-decoration: underline;
}
.file_input-subtitle {
  font-family: Roboto;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  margin-top: 7px;
}
input[type="file"] {
  display: none;
}
.content_second-bottom--left button {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #000;

  background-color: #f8f200;
  padding: 20px 50px;
  margin-top: 35px;
  cursor: pointer;

  &:hover {
    opacity: 70%;
  }
  &.disabled {
    pointer-events: none;
    opacity: 0.5;
  }
}
.content_second-bottom--chekbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
  gap: 10px;
  margin-top: 15px;
}
.content_second-bottom--chekbox p {
  font-family: Roboto;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  color: #ffffff;

  margin-left: 10px;
}
input[type="checkbox"] {
  display: none;
}
.checkmark {
  width: 14px;
  height: 14px;
  border: 1px solid #777777;
}
.checkmark::after {
  content: "✔";
  font-size: 14px;
  color: #f8f200;
  opacity: 0;
  transition: opacity 0.5s;
}
.content_second-bottom--chekbox
  input[type="checkbox"]:checked
  + .checkmark::after {
  opacity: 1;
}
.content_second-bottom--right {
  width: 50%;
  display: flex;
  align-items: center;
}
.play_and_win {
  width: 50%;

  img {
    width: 100%;
  }
}

.content_third {
    position: relative;
    background-color: #F8F200;
    padding: 80px 0 80px 0;
}
.content_third-transition {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.content_third-left {
    text-align: center;
}
.content_third-left img:last-child {
    margin-top: 26px;
}
.content_third .content_container {
    display: flex;
    align-items: center;
    gap: 32px;
}
.content_third-title {
    font-family: Archangelsk;
    font-weight: 400;
    font-size: 62px;
    line-height: 100%;
    color: #000000;
}
.content_third-subtitle {
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #000;

    margin: 25px 0;
}
.content_third-right div {
    display: flex;
    align-items: center;

    span {
        font-family: Roboto;
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        color: #000;
    
        margin-left: 10px;
    }
    span:nth-child(2) {
        margin: 15px 0 15px 10px;
    }
}
.content_third-right a {
    font-family: Roboto;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #F8F200;

    display: inline-block;
    padding: 20px 50px;
    margin: 40px 0 0 0;
    background-color: #000000;
}

.content_fourth {
    position: relative;
    background-color: #000;
    padding: 70px 0;
}
.content_fourth .content_container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.content_fourth-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.content_fourth-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content_fourth-right {
    width: 45%;
    z-index: 2;
}
.content_fourth-title {
    font-family: Archangelsk;
    font-weight: 400;
    font-size: 62px;
    line-height: 100%;
    color: #ffffff;
}
.content_fourth-complect {
    margin: 25px 0 70px 0;

    div {
        display: flex;
        align-items: center;
    }
    div:nth-child(2) {
        margin-top: 15px;
    }
    div:nth-child(3) {
        margin: 15px 0;
    }

    span {
        font-family: Roboto;
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        color: #ffffff;

        margin-left: 10px;
    }
}
.content_fourth-complect--platform {
    font-family: Roboto;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #52BEDC;
}
.content_fourth-platform {
    div {
        display: flex;
        gap: 80px;
    }
    div:nth-child(2) {
        margin-top: 25px;
    }
    div:nth-child(3) {
        margin-top: 50px;
    }
}

.footer {
    background-color: #FFFFFF;
    padding: 15px 0;

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
.footer_left {
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer_right {
    display: flex;
    gap: 30px;
    
    a {
        font-family: Roboto;
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        color: #000000;
    }
}

.directed_by {
    background-color: #000000;
    text-align: center;
    padding: 15px 0;

    span {
        font-family: Roboto;
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        color: #FFFFFF;
    }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 35px;
  }

  .hero_content {
    right: 36px;
  }

  .content_first-bottom {
    display: block;
  }
  .content_first-bottom--left {
    display: flex;
  }
  .content_first-bottom--left img:last-child {
    margin: 0 0 0 32px;
  }
  .content_first-bottom--right {
    margin: 32px 0 0 0;
  }
  .content_first-bottom--right img {
    width: 100%;
  }

  .content_second-bottom {
    display: grid;
  }
  .content_second-bottom--left {
    width: 100%;
    order: 2;
  }
  .content_second-bottom--right {
    width: 100%;
    margin-top: 70px;
    order: 1;
  }

  .content_third-left {
    width: 50%;
  }
  .content_third-left img {
    width: 100%;
  }
  .content_third-right {
    width: 50%;
  }

  .content_fourth-left {
    width: 30%;
  }
  .content_fourth-right {
    width: 67%;
  }
}

@media (max-width: 480px) {
  .container {
    margin: 0 auto;
    padding: 0 10px;
  }

  .header {
    display: block;
    text-align: center;
  }

  .header_right {
    display: flex;
    gap: 0;
    justify-content: space-between;
    margin: 10px 0 0 0;
  }

  .hero_content {
    width: 260px;
    right: 0;
    bottom: -50px;
    padding: 30px 40px;
    text-align: center;
  }
  .hero_content_title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .hero_content_link {
    font-size: 20px;
    padding: 10px 20px;
  }

  .content_first-top--title {
    font-size: 30px;
  }
  .content_first-top--subtitle {
    font-size: 16px;
  }
  .content_first-bottom--left {
    display: block;
  }
  .content_first-bottom--left img {
    width: 100%;
  }
  .content_first-bottom--left img:last-child {
    margin: 32px 0;
  }
  .content_first-bottom--right {
    margin: 0;
  }

  .content_second-top--title h2 {
    font-size: 30px;
    margin: 0;
  }
  .content_second-top--subtitle {
    font-size: 16px;
  }
  .content_second-top--title img {
    display: none;
  }

  .content_third-title {
    font-size: 30px;
  }
  .content_third-subtitle {
    font-size: 16px;
  }
  .content_third-right div span {
    font-size: 16px;
  }
  .content_third-right a {
    font-size: 16px;
  }
  .content_third .content_container {
    display: block;
    align-items: center;
  }
  .content_third-left {
    width: 100%;
  }
  .content_third-right {
    width: 100%;
    margin-top: 40px;
  }

  .content_fourth {
    padding-top: 12px;
  }
  .content_fourth .content_container {
    display: block;
  }
  .content_fourth-left {
    width: 100%;
    position: relative;
  }
  .content_fourth-right {
    width: 100%;
    margin-top: 40px;
  }
  .content_fourth-title {
    font-size: 30px;
  }
  .content_fourth-complect--platform {
    font-size: 20px;
  }
  .content_fourth-complect {
    margin-bottom: 40px;

    span {
        font-size: 16px;
        margin-left: 18px;
    }
  }
  .content_fourth-platform {
    div {
        gap: 50px;
    }
  }

  .footer {
    .container {
        display: block;
    }

    .footer_left {
        display: block;
        text-align: center;
        padding: 40px 0 25px 0;
    }

    .footer_right {
        display: block;
        text-align: center;
        padding: 25px 0;
        background-color: #E6E6E6;

        p:last-child {
            margin-top: 15px;
        }
    }
  }
}
