*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page {
  min-height: 100dvh;
  background: url("./assets/bg.png") no-repeat center/ contain #000000;
  color: #ffffff;
  font-family: Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.21px;
  font-weight: 400;

  padding: 32px 10px 32px 10px;
}

.main {
  max-width: 389px;
  width: 100%;
  margin: 0 auto;

  background-color: #000000a1;
  padding: 24px 14px 14px 14px;
  border-radius: 24px;
  box-shadow: inset 0px 0px 0px 1px #000000;

  position: relative;
}

.logo {
  display: none;
  visibility: hidden;
}

.logo__text {
  font-family: Rubik, sans-serif;
  font-style: italic;
  font-size: 13px;
  font-weight: bold;
  line-height: 2;
  -webkit-text-stroke: 0.2px #000000;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.message {
  max-width: 148px;
  padding: 8px;

  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(
        to bottom,
        #fcf6d1 0%,
        #bd9457 10%,
        #e3ca89 25%,
        #fee8c8 70%,
        #4d3a1a 85%,
        #fcf0d1
      )
      border-box;

  font-family: "Roboto Condensed", sans-serif;
}

.message__title {
  color: #ffffff;
}
.message__title_top {
  font-size: 8px;
  line-height: 10px;
}
.message__title_bot {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  margin-top: 4px;
}

.facts {
  margin-top: 4px;
  font-weight: 500;
}

.fact {
  font-size: 8px;
  line-height: 1.5;
}

.golden {
  color: #d9a94a;
}

.gradient {
  background: linear-gradient(90deg, #dd9843, #c665ac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sign {
  position: relative;
  margin-top: 8px;
}

.sign::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  border-top: 1px solid #d9a94a;
}
.sign__title {
  font-size: 8px;
  line-height: 10px;
  font-weight: 500;
}
.sign__text {
  font-size: 6px;
  line-height: 10px;
}

.tg-promo {
  text-align: center;
}

.tg-promo__title {
  font-size: 24px;
  font-weight: 800;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 32px;
}
.tg-promo__text {
  line-height: 1.5;
  font-size: 10px;
}

.schedule {
  margin-top: 16px;
}

.schedule__title {
  font-size: 10px;
  font-weight: 700;
  text-align: center;

  margin-bottom: 5px;
}

.matches {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.link__image {
  max-height: 125px;
  border-radius: 10px;
  transition: all 0.2s linear;
}

.link:hover .link__image {
  border-radius: 15px;
  box-shadow: 0px 0px 25px 5px #d9a94a;
}

.advantages {
  margin-top: 8px;
  margin-bottom: 20px;
}

.advantages__title {
  font-size: 10px;
  font-weight: 700;
  line-height: 2;
  text-align: center;

  margin-bottom: 4px;
}

.page__decor {
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: -1;
  transform: translateX(70%);

  width: 190px;
  height: 382px;
}

@media (max-width: 500px) {
  .main {
    background-color: transparent;
    box-shadow: none;
  }

  .page {
    padding: 135px 10px 0px 10px;
    background: url("./assets/bg-mobi.png") no-repeat center -50px / contain
      #000000;
  }

  .logo {
    display: block;
    visibility: visible;
    position: absolute;
    top: 0;
    transform: translateY(-200%);
    right: 0;
  }

  .page__decor {
    width: 83px;
    height: 167px;
    right: unset;
    left: 0;
    bottom: -78px;
    transform: rotate(-15deg) translateX(20px);
  }

  .link {
    max-width: 70%;
    width: 100%;

    margin: 0 0 0 auto;
  }
}

@media (max-width: 365px) {
  .tg-promo {
    margin-left: auto;
  }
}
