@font-face {
  font-family: "Yekan";
  src: url("../font/IRANYekan_Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yekan";
  src: url("../font/IRANYekan_Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bgClr: #000e2b;
  --darkBlueClr: #001c5b;
  --darkBlueClr2: #002677;
  --whiteClrOp08: #ffffff3b;
  --clrE: #eee;
  --clrD: #ddd;
  --clrF: #fff;
  --greenLightClr: #8ece3c;
}
body,
html {
  background-color: var(--bgClr);
  max-width: 100vw;
  overflow-x: clip;
  direction: rtl;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}
.customContainer {
  width: 90%;
  margin: 0 auto;
  max-width: 1300px;
}
.flex {
  display: -webkit-flex;
  display: flex;
}
.grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}
.flexCenter {
  justify-content: center;
  align-items: center;
}
.flexCol {
  flex-direction: column;
}
.justifyBetween {
  justify-content: space-between;
}
.alignCenter {
  align-items: center;
}
.hideText {
  color: transparent;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 0em;
}
.rel {
  position: relative;
}
.faFont {
  font-family: "Yekan", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.customScrollBar::-webkit-scrollbar {
  width: 7px;
}
.customScrollBar::-webkit-scrollbar-track {
  background: var(--clrE);
}
.customScrollBar::-webkit-scrollbar-thumb {
  background: var(--clrD);
}
.customScrollBar::-webkit-scrollbar-thumb:hover {
  background: #999;
}
/* header */
header {
  width: 90%;
  margin: 20px auto 0;
  border-radius: 12px;
  border: 1px solid var(--darkBlueClr);
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: 35px 1fr 35px;
  height: 64px;
  align-items: center;
  padding: 10px;
}
.menuBtn {
  height: 35px;
  width: 35px;
  background-color: transparent;
  transition: background-color 0.3s;
  border-radius: 5px;
}
.menuBtn:hover {
  background-color: var(--whiteClrOp08);
}
.navCloser {
  position: fixed;
  left: 0;
  top: 0;
  height: 100dvh;
  width: 100%;
  background-color: var(--whiteClrOp08);
  z-index: 900;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.navCloser.activeNav {
  opacity: 1;
  pointer-events: unset;
}
.navigation {
  position: fixed;
  right: 0;
  top: 0;
  width: 80%;
  height: 100dvh;
  max-width: 320px;
  background-color: var(--bgClr);
  pointer-events: none;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0s 0.3s;
}
.navigation.activeNav {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.3s;
  pointer-events: unset;
  z-index: 901;
}
.navSubDiv {
  padding: 0 15px;
  height: 100dvh;
  overflow-y: auto;
  gap: 20px;
}
.navHeader {
  height: 50px;
  border-bottom: 1px solid var(--whiteClrOp08);
  margin-top: 10px;
  padding-bottom: 10px;
}
.navCloserBtn {
  height: 30px;
  width: 30px;
}
.navSubDiv .headerLogo {
  margin-right: 10px;
}
.navLinkList {
  gap: 15px;
  margin-bottom: 20px;
}
.navLinkItem {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: right;
  color: var(--clrF);
  width: fit-content;
}
.navSignList {
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 10px;
  margin: auto 0 15px;
}
.navSignList .navLinkItem {
  width: 100%;
  height: 35px;
  border-radius: 5px;
}
.signLink {
  background-color: var(--darkBlueClr2);
}
.headerLinkList {
  display: none;
}
@media screen and (min-width: 768px) {
  .navCloser,
  .navigation,
  .menuBtn {
    display: none;
  }
  header {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1300px;
    padding: 0 25px;
  }
  .headerLinkList {
    display: -webkit-flex;
    display: flex;
    gap: 10px;
  }
  .headerLinkItem {
    padding: 10px 5px;
    color: var(--clrF);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: right;
    transition: border 0.3s;
    border-bottom: 1px solid transparent;
  }
  .headerLinkItem.signLink {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 10px 15px;
  }
  .headerLinkItem:hover {
    border-bottom: 1px solid var(--whiteClrOp08);
  }
  .headerLinkItem.signLink:hover {
    border-radius: 8px;
    border: 1px solid var(--whiteClrOp08);
  }
}
/* introSection */
.introSection {
  margin-top: 40px;
  gap: 40px;
}
.introInfoDiv {
  align-items: center;
  gap: 35px;
}
.introTime {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: right;
  color: var(--greenLightClr);
  border: 1px solid #8fce3c5d;
  padding: 7px 15px;
  border-radius: 100px;
  background-color: #8fce3c2a;
}
.introTitle {
  flex-wrap: wrap;
  align-items: center;
}
.introText1,
.introText3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: var(--clrF);
  width: 100%;
}
.introText2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: var(--greenLightClr);
  width: 100%;
  margin-top: 10px;
}
.introBody {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--clrF);
}
.introGridLink {
  gap: 10px;
  width: 100%;
}
.introLinkGreen,
.introLinkBlack {
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: right;
  width: 100%;
}
.introLinkGreen {
  background-color: var(--greenLightClr);
  color: var(--bgClr);
}
.introLinkGreen::before,
.introLinkBlack::before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid var(--greenLightClr);
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 50%;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0;
}
.introLinkGreen:hover::before,
.introLinkBlack:hover::before {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  opacity: 0.7;
}
.introLinkBlack {
  border: 1px solid var(--greenLightClr);
  color: var(--greenLightClr);
}
.introImg {
  width: 90%;
  margin: 0 auto;
  max-width: 450px;
}
.star1,
.star2 {
  display: none;
}

@keyframes blink {
  from {
    opacity: 1;
  }
  from {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .introSection {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
  }
  .introImg {
    height: 90%;
    width: auto;
    transform: translateX(-50px);
    max-width: unset;
  }
  .introInfoDiv {
    align-items: flex-start;
    gap: 20px;
  }
  .introTitle {
    gap: 0 10px;
  }
  .introText1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 72px;
    text-align: right;
  }
  .introText3 {
    width: fit-content;
    font-size: 30px;
    font-weight: 700;
    line-height: 72px;
    text-align: right;
    margin-top: -20px;
  }
  .introText2 {
    width: fit-content;
    font-size: 30px;
    font-weight: 700;
    line-height: 72px;
    text-align: right;
    margin-top: -20px;
  }
  .introBody {
    font-size: 15px;
    font-weight: 300;
    line-height: 32px;
    text-align: right;
  }
  .introGridLink {
    grid-template-columns: auto auto;
    margin-top: 10px;
    gap: 10px;
    justify-content: flex-start;
  }
  .introLinkGreen,
  .introLinkBlack {
    font-size: 12px;
    font-weight: 600;
    line-height: 21px;
    width: fit-content;
    padding: 0 25px;
  }
  .introTime {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: right;
  }
  .star1 {
    right: -3%;
    top: -40px;
    position: absolute;
    pointer-events: none;
    display: block;
    height: 18px;
    width: 18px;
    animation: blink 2s 0.2s linear infinite alternate-reverse;
  }
  .star2 {
    position: absolute;
    display: block;
    right: 20%;
    bottom: -90px;
    z-index: 80;
    animation: blink 1.5s 1s linear infinite alternate-reverse;
    transform: rotate(-25deg);
  }
}
@media screen and (min-width: 968px) {
  .introSection {
    margin-top: 70px;
  }
  .introInfoDiv {
    max-width: 90%;
  }
  .introText3,
  .introText2,
  .introText1 {
    font-size: 36px;
  }
  .introBody {
    font-size: 18px;
  }
  .introLinkGreen,
  .introLinkBlack {
    font-size: 14px;
  }
  .introTime {
    font-size: 14px;
  }
  .introImg {
    margin-right: auto;
    transform: translateX(-40px);
    height: auto;
    width: 520px;
  }
  .star1 {
    right: -4%;
    top: -40px;
    height: 26px;
    width: 26px;
  }
}
/* middleSection */
.middleSection {
  margin-top: 60px;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--greenLightClr);
  background-color: var(--darkBlueClr);
  gap: 40px;
}
.middleText {
  flex-wrap: wrap;
}
.middleText1,
.middleText2,
.middleText3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: var(--greenLightClr);
  width: 100%;
}
.middleText2,
.middleText3 {
  color: var(--clrF);
  margin-top: -8px;
}
.middleImg {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
.middleCoinImg {
  position: absolute;
  left: 50%;
  transform: translate(100%, -40%);
  width: 20%;
}
@media screen and (min-width: 768px) {
  .middleSection {
    grid-template-columns: 1fr 1.1fr;
    margin-top: 170px;
    padding: 40px 60px;
    align-items: center;
  }
  .middleSectionImgDiv {
    margin-right: auto;
  }
  .middleImg {
    width: fit-content;
    height: 100%;
    max-width: unset;
  }
  .middleCoinImg {
    width: 85px;
    height: 85px;
    right: 0;
    top: 0;
    left: unset;
    transform: translateX(20%);
  }
  .middleText1,
  .middleText2,
  .middleText3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 72px;
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .middleImg {
    width: fit-content;
    height: 260px;
    max-width: unset;
  }
  .middleCoinImg {
    width: 85px;
    height: 85px;
    right: 0;
    top: 0;
    left: unset;
    transform: translateX(60%);
  }
}
/* stepSection */
.stepSection {
  margin-top: 40px;
  padding: 0 10px;
  gap: 20px;
}
.stepSvg {
  height: 80px;
  width: 80px;
}
.stepTitle,
.stepText {
  font-size: 22px;
  font-weight: 600;
  line-height: 48px;
  text-align: right;
  color: var(--greenLightClr);
}
.stepText {
  color: var(--clrF);
  margin-top: -10px;
}
.stepBody {
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  text-align: justify;
  color: var(--clrF);
  margin-top: 10px;
}
.star3 {
  display: none;
}
@media screen and (min-width: 768px) {
  .stepSection {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 120px;
  }
  .star3 {
    display: block;
    position: absolute;
    left: -10px;
    top: 0;
    animation: blink 1s 1s linear infinite alternate-reverse;
    transform: rotate(-30deg);
    height: 25px;
    width: 25px;
  }
}
@media screen and (min-width: 968px) {
  .stepSection {
    grid-template-columns: 1fr 1fr;
    gap: 15%;
  }
  .stepTitle,
  .stepText {
    font-size: 24px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 10px;
  }
  .stepText {
    margin-top: 5px;
  }
  .stepBody {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    margin-top: 15px;
  }
  .stepIcon {
    width: 112px;
    height: 112px;
  }
}
/* tournamentBannerSection */
.tournamentBannerSection {
  margin-top: 40px;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--greenLightClr);
  background-color: var(--darkBlueClr);
  gap: 40px;
}
.tournamentBannerText {
  flex-wrap: wrap;
}
.tournamentBannerText1,
.tournamentBannerText2,
.tournamentBannerText3 {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: var(--clrF);
}
.tournamentBannerText3 {
  color: var(--greenLightClr);
}
.tournamentLink {
  margin-top: 20px;
  background-color: var(--greenLightClr);
  color: var(--bgClr);
  height: 48px;
  border-radius: 8px;
}
.tournamentImg {
  width: 75%;
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .tournamentBannerSection {
    grid-template-columns: 60% auto;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    margin-top: 80px;
  }
  .tournamentImg {
    height: 231px;
    width: 277px;
    max-width: unset;
    margin: 0 auto 0 40px;
  }
  .tournamentBannerText {
    gap: 0 6px;
  }
  .tournamentBannerText1,
  .tournamentBannerText2 {
    width: fit-content;
    font-size: 27px;
    font-weight: 500;
    line-height: 52px;
    text-align: right;
  }
  .tournamentBannerText3 {
    font-size: 27px;
    font-weight: 500;
    line-height: 52px;
    text-align: right;
    margin-top: -10px;
  }
  .tournamentLink {
    width: fit-content;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: right;
    position: relative;
  }
  .tournamentLink::before {
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid var(--greenLightClr);
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: 50%;
    border-radius: 12px;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0;
  }
  .tournamentLink:hover::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    opacity: 0.7;
  }
}
@media screen and (min-width: 968px) {
  .tournamentBannerSection {
    padding: 30px 50px;
  }
  .tournamentBannerText1,
  .tournamentBannerText2,
  .tournamentBannerText3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 72px;
  }
  .tournamentImg {
    height: 260px;
    width: auto;
  }
}
/* footer */
.footerContainer {
  margin: 90px auto;
  gap: 10px;
  padding: 0 40px;
}
.footerLinkDiv {
  gap: 20px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
.footerLinkText {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--clrF);
}
.socialLinks {
  margin-top: 10px;
  gap: 5px;
}
.socialLinkItem {
  background-color: transparent;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  transition: background-color 0.3s;
}
.socialLinkItem:hover {
  background-color: var(--whiteClrOp08);
}
.copyRightText {
  width: 90%;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--clrF);
  margin: 0 auto;
  margin-top: 10px;
}
.copyRightText a {
  color: var(--greenLightClr);
}
.pgImg3 {
  display: none;
}
.pgImg1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: auto;
}
.pgImg2 {
  position: absolute;
  right: 0;
  height: auto;
  width: 50px;
  top: 35%;
}
.star4 {
  display: none;
}
@media screen and (min-width: 450px) {
  .pgImg1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: auto;
  }
  .pgImg2 {
    position: absolute;
    right: 0;
    height: auto;
    width: 75px;
    top: 35%;
  }
}
@media screen and (min-width: 768px) {
  .socialLinkItem {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  .copyRightText {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
  }
  .pgImg1,
  .pgImg2 {
    display: none;
  }
  .pgImg3 {
    display: block;
    position: absolute;
    left: -5%;
    bottom: -90px;
    height: auto;
    width: 30%;
    max-width: 250px;
  }
  .footerContainer {
    position: relative;
  }
  .star4 {
    position: absolute;
    display: block;
    height: 33px;
    width: 33px;
    right: 15%;
    top: 40%;
    animation: blink 2s linear infinite alternate-reverse;
  }
  .footerLinkText {
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
  }
  .footerLinkText:hover {
    border-bottom: 1px solid var(--clrF);
  }
}
@media screen and (min-width: 968px) {
  .pgImg3 {
    width: 300px;
    max-width: unset;
  }
}
