:root {
  --scale: 1;
  --value-title-margin-top: -10px;
  --value-bottom-margin-bottom: 40px;
  --value-logo-margin-top: 20px;
  --value-logo-height: 43px;
  --value-line1-margin-top: 30px;
  --value-line1-height: 17.5px;
  --value-line1-img-margin-left: 20px;
  --value-desc-margin-top: 60px;
  --value-desc-box-width: 330px;
  --value-desc-box-padding: 14px 10px;
  --value-desc-text-font-size: 18px;
  --value-buttons-margin-top: 20px;
  --value-button-width: 180px;
  --value-button-span-font-size: 18.314px;
  --value-button-span-bottom: 17px;
  --value-footer-min-height: 20px;
  --value-footer-padding: 20px 0;
  --value-footer-margin-bottom: 20px;
  --value-footer-logo-padding: 0 20px;
  --value-footer-bg-bottom: -20px;

  --title-margin-top: calc(var(--value-title-margin-top) * var(--scale));
  --logo-margin-top: calc(var(--value-logo-margin-top) * var(--scale));
  --logo-height: calc(var(--value-logo-height) * var(--scale));
  --line1-margin-top: calc(var(--value-line1-margin-top) * var(--scale));
  --line1-height: calc(var(--value-line1-height) * var(--scale));
  --line1-img-margin-left: calc(
    var(--value-line1-img-margin-left) * var(--scale)
  );
  --desc-margin-top: calc(var(--value-desc-margin-top) * var(--scale));
  --desc-box-width: calc(var(--value-desc-box-width) * var(--scale));
  --bottom-margin-bottom: calc(
    var(--value-bottom-margin-bottom) * var(--scale)
  );
  --desc-box-padding: calc(var(--value-desc-box-padding) * var(--scale));
  --desc-text-font-size: calc(var(--value-desc-text-font-size) * var(--scale));
  --buttons-margin-top: calc(var(--value-buttons-margin-top) * var(--scale));
  --button-span-font-size: calc(
    var(--value-button-span-font-size) * var(--scale)
  );
  --button-span-bottom: calc(var(--value-button-span-bottom) * var(--scale));
  --footer-min-height: calc(var(--value-footer-min-height) * var(--scale));
  --footer-padding: calc(var(--value-footer-padding) * var(--scale));
  --footer-margin-bottom: calc(
    var(--value-footer-margin-bottom) * var(--scale)
  );
  --footer-logo-padding: calc(var(--value-footer-logo-padding) * var(--scale));
  --footer-bg-bottom: calc(var(--value-footer-bg-bottom) * var(--scale));
}

#app-mobile {
  position: relative;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-image: none !important;
  background-color: #f3d104;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.m-bg {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.m-title {
  margin-top: var(--title-margin-top);
  width: 100%;
  height: auto;
  object-fit: contain;
}

.m-logo {
  margin-top: var(--logo-margin-top);
  height: var(--logo-height);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}

.m-line1 {
  margin-top: var(--line1-margin-top);
  height: var(--line1-height);
  width: 100%;

  img {
    margin-left: var(--line1-img-margin-left);
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}

.m-desc {
  margin-top: var(--desc-margin-top);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  .m-desc-box {
    display: flex;
    flex-direction: column;
    width: var(--desc-box-width);
    padding: var(--desc-box-padding);
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(29, 25, 1, 0.5);
    backdrop-filter: blur(2px);
  }

  .m-desc-text {
    color: #fff;
    text-align: center;
    text-shadow: 0px 2px 1.74px rgba(0, 0, 0, 0.62);
    font-family: "Open Sans";
    font-size: var(--desc-text-font-size);
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.36px;
  }
}

.m-buttons {
  margin-top: var(--buttons-margin-top);
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
}

.m-button {
  position: relative;

  img {
    width: var(--button-width);
    height: auto;
    object-fit: contain;
  }

  span {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: var(--button-span-bottom);
    color: #f1f1f1;
    text-align: center;
    text-shadow: 0px 2.289px 3.868px rgba(0, 0, 0, 0.45);
    font-family: "SB Aggro";
    font-size: var(--button-span-font-size);
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.366px;
  }
}

.m-footer {
  width: 100%;
  position: relative;
  min-height: var(--footer-min-height);
  padding: var(--footer-padding);
  margin-bottom: var(--footer-margin-bottom);

  .m-footer-logo {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: var(--footer-logo-padding);
    height: auto;
    object-fit: contain;
  }

  .m-footer-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: var(--footer-bg-bottom);
    left: 0;
    right: 0;
  }
}
