@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}

:root {
  --color-aqua: #73d5ff;
  --color-lightblue: #149fdb;
  --color-link: #c9dae2;
  --color-acsent-text: #f9c001;
}

body {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(
      108% 75% at 52% 100%,
      #394a75,
      rgba(0, 0, 0, 0.2) 100%
    ),
    rgba(19, 19, 19, 1);
}

::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #008cff;
  border-radius: 0.3125rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #3894fd;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

select,
::picker(select) {
  appearance: base-select;
}

select:open::picker-icon {
  rotate: 180deg;
}

select::picker-icon {
  color: #ffffff;
  transition: 0.4s rotate;
}

option {
  display: flex;
  justify-content: flex-start;
  gap: 20px;

  border: 2px solid #ddd;
  background: #eee;
  border-radius: 20px;
  padding: 10px;
  transition: 0.4s;
}

option:nth-of-type(odd) {
  background: #ffffff81;
}

option:hover,
option:focus {
  background: rgba(70, 70, 70, 0.397);
}

option:first-of-type {
  border-radius: 8px 8px 0 0;
}

option:last-of-type {
  border-radius: 0 0 8px 8px;
}

option:not(option:last-of-type) {
  border-bottom: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main__page {
  background: url(../img/background.png) no-repeat 0px 0px;
  background-size: cover;
  height: 120vh;
  width: 100%;
}
.main {
  height: 839px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.container {
  max-width: 1025px;
  padding: 48px 30px;
  width: 100%;
}

.header__inline {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

.header__navigation {
  display: flex;
  align-items: center;
}

.header__list {
  display: flex;
  gap: 32px;
}

.header__list-icon img {
  width: 24px;
}

.header__list-text {
  color: var(--color-link);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.header__list-text:hover {
  opacity: 0.8;
}

.header__contacts {
  display: flex;
  align-items: center;
}

.header__list_contacts {
  display: flex;
  gap: 20px;
}

.header-burger {
  display: none;
  z-index: 100;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1b1d22da;
  display: flex;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.dialog-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 10px;
  margin-top: 130px;
  text-align: center;
}

.navigation {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.dialog-content .navigation ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  width: 100%;
  gap: 20px;
}

.dialog-content .navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  width: 100%;
  height: 66px;
  background-color: rgb(169, 169, 169, 0.26);
}

.dialog-content .navigation span {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.main svg {
  z-index: 1;
}

.main_img {
  position: relative;
  top: -120px;
  z-index: 2;
}

.img2 {
  display: none;
}

.main-container {
  position: relative;
  display: flex;
  gap: 32px;
  flex-direction: column;
  align-items: start;
  max-width: 1274px;
  bottom: 590px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 3;
}

.main-container h2 {
  color: white;
  font-size: 64px;
  font-weight: 900;
}

.main-container p {
  color: white;
  font-size: 32px;
  font-weight: 600;
}

.main-container__download {
  position: relative;
  display: flex;
  gap: 32px;
  flex-direction: column;
  align-items: start;
  max-width: 1274px;
  bottom: 590px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 3;
}

.main-container__download h2 {
  color: white;
  font-size: 64px;
  font-weight: 900;
}

.main-container__download p {
  color: white;
  font-size: 32px;
  font-weight: 600;
}

.main-container__donate {
  position: relative;
  display: flex;
  gap: 32px;
  flex-direction: column;
  align-items: start;
  max-width: 1274px;
  bottom: 590px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 3;
}

.main-container__donate h2 {
  color: white;
  font-size: 64px;
  font-weight: 900;
}

.main-container__donate p {
  color: white;
  font-size: 32px;
  font-weight: 600;
}

.start_play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 345px;
  height: 96px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px rgb(255, 169, 1);
  background: linear-gradient(
    131.51deg,
    rgb(255, 138, 0) 0%,
    rgb(255, 214, 0) 112.021%
  );
}

.start_play span {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 600;
}

.promo_video {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 217px;
  height: 64px;
  border-radius: 10px;
  background: rgba(29, 31, 38, 0.7);
}

.promo_video span {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.online {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 281px;
  height: 70px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 600;
  border-radius: 139px;
  box-shadow: 0px 0px 50px 0px rgb(54, 153, 255);
  background: linear-gradient(
    131.51deg,
    rgb(55, 111, 255) 0%,
    rgb(50, 206, 255) 112.176%
  );
}

.online span {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 800;
}

.online2 {
  display: none;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 281px;
  height: 70px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 600;
  border-radius: 139px;
  box-shadow: 0px 0px 50px 0px rgb(54, 153, 255);
  background: linear-gradient(
    131.51deg,
    rgb(55, 111, 255) 0%,
    rgb(50, 206, 255) 112.176%
  );
}

.online2 span {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 800;
}

.footer {
  margin-top: 12px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1014px;
  margin: 40px auto;
}

.footer-nav__list {
  display: flex;
  gap: 32px;
}

.footer a {
  color: var(--color-link);
  font-size: 12px;
  font-weight: 500;
}

.div_play {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 32px;
}

.howtoplay__main {
  display: none;
  padding: 0 30px;
  flex-direction: column;
  gap: 36px;
}

.howtoplay__main__download {
  padding: 0 10px;
  flex-direction: column;
  gap: 36px;
}

.donate-main {
  display: none;
}

.howtoplay__text {
  text-align: start;
}

.howtoplay__text__download {
  text-align: start;
}

.howtoplay__text h2 {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 700;
}

.howtoplay__text__download p {
  color: var(--color-link);
  font-size: 20px;
  font-weight: 400;
}

.howtoplay__text__download h2 {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 700;
}

.howtoplay__text p {
  color: var(--color-link);
  font-size: 20px;
  font-weight: 400;
}

.playmarket__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 364px;
  height: 66px;
  border-radius: 10px;

  background: linear-gradient(
    131.51deg,
    var(--color-lightblue) 0%,
    var(--color-aqua) 112.482%
  );
}

.playmarket__button span {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
}

.playmarket__button__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 364px;
  height: 66px;
  border-radius: 10px;

  background: linear-gradient(
    131.51deg,
    var(--color-lightblue) 0%,
    var(--color-aqua) 112.482%
  );
}

.playmarket__button__download span {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
}

.apk_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 364px;
  margin-top: 32px;
  width: 100%;
  padding: 24px 32px 24px 32px;
  height: 66px;
  border-radius: 10px;
  background: rgba(169, 169, 169, 0.26);
}

.apk_button span {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
}

.apk_button__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 364px;
  margin-top: 32px;
  width: 100%;
  padding: 24px 32px 24px 32px;
  height: 66px;
  border-radius: 10px;
  background: rgba(169, 169, 169, 0.26);
}

.apk_button__download span {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
}

.video__tutorial {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 12px;
  gap: 12px;
}

.video__tutorial__download {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 12px;
  gap: 12px;
}

.main-text__donate {
  margin-top: 80px;
  filter: brightness(2);
}

.video__tutorial a {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
}

.video__tutorial__download a {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
}

.donate__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.donate__list select {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 364px;
  width: 100%;
  height: 64px;
  outline: none;
  padding-left: 72px;
  padding-right: 20px;
  border: 1px solid rgb(57, 74, 117);
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 44px;
  backdrop-filter: blur(15px);
}

select {
  color: rgb(201, 208, 226);
  background: rgba(46, 52, 66, 0.8) url(../img/strelka.svg) no-repeat 19px 19px;
  font-size: 14px;
  font-weight: 600;
}

.input__name {
  color: rgb(201, 208, 226);
  background: rgba(46, 52, 66, 0.8) url(../img/nickname.svg) no-repeat 19px 19px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 364px;
  width: 100%;
  height: 64px;
  outline: none;
  padding-left: 72px;
  padding-right: 20px;
  border: 1px solid rgb(57, 74, 117);
  border-radius: 10px;
  margin: 0 auto;
  backdrop-filter: blur(15px);
}

.input__summ {
  color: rgb(201, 208, 226);
  background: rgba(46, 52, 66, 0.8) url(../img/cash.svg) no-repeat 19px 19px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 364px;
  width: 100%;
  height: 64px;
  outline: none;
  padding-left: 72px;
  padding-right: 20px;
  border: 1px solid rgb(57, 74, 117);
  border-radius: 10px;
  margin: 0 auto;
  backdrop-filter: blur(15px);
}

.input__summ:hover + .bonuses {
  display: flex;
}

.input__email {
  color: rgb(201, 208, 226);
  background: rgba(46, 52, 66, 0.8) url(../img/email.svg) no-repeat 19px 19px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 364px;
  width: 100%;
  height: 64px;
  outline: none;
  padding-left: 72px;
  padding-right: 20px;
  border: 1px solid rgb(57, 74, 117);
  border-radius: 10px;
  margin: 0 auto;
  backdrop-filter: blur(15px);
}

.summ__main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 25px;
}

.summ__main p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
}

.summ__main span {
  color: var(--color-acsent-text);
  font-size: 14px;
  font-weight: 600;
}

.donate__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 364px;
  height: 81px;
  border-radius: 10px;

  /* button gradient */
  background: linear-gradient(
    131.51deg,
    var(--color-lightblue) 0%,
    var(--color-aqua) 112.306%
  );
  margin: 0 auto;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
}

.main__page_donate {
  background: url(../img/donatemain.png) no-repeat 85% 60%;
  height: 120vh;
  width: 100%;
}

.main__page-download {
  background: url(../img/downloadmain.png) no-repeat 80% 30%;
  background-size: 700px;
  height: 120vh;
  width: 100%;
}

.bonuses {
  display: none;
  align-items: center;
  position: absolute;
  width: 248px;
  height: 188px;
  top: 0px;
  left: 431px;
  top: 335px;
  border-radius: 10px;
  backdrop-filter: blur(16px);
  background: rgba(0, 140, 255, 0.5) url(../img/Union.svg) no-repeat 0px 0px;
  transition: 0.3s all ease-out;
}

.bonuses ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}

.bonuses p {
  color: rgb(201, 208, 226);
  font-size: 10px;
  font-weight: 400;
}

.bonuses span {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 700;
}

.polygon {
  position: absolute;
  top: 74px;
  left: -10px;
}
