@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --body-color: #160E25;
  --header-padding-top:24px;
  --header-padding-horizontal: 117px;
  --global-lef-right-padding:24px;
  --card-deck-radius: 16px;
}
@media (min-width: 768px) {
  :root {
    --global-lef-right-padding:170px;
    --card-deck-radius: 25px;
  }
}

body {
  background-color: var(--body-color);
  padding: 0;
  margin: 0;
}

.breathing {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  color: #FDBE07; /* yellow or green */
  animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: var(--header-padding-top);
  transition: all 0.5s ease-in-out;
  background: linear-gradient(0deg, rgba(32, 19, 46, 0) 21.59%, #20132E 86.93%);
}
.site-header.sticky {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding-bottom: 16px;
}
.site-header .site-branding img {
  width: 150px;
  height: auto;
}
@media (min-width: 1024) {
  .site-header .site-branding img {
    width: 200px;
  }
}
.site-header .btn-signup {
  display: flex;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 21.5px;
  background: var(--color-button-main-screen-yellow, #FFD338);
}
@media (min-width: 768px) {
  .site-header .btn-signup {
    padding: 4px 24px;
  }
}
@media (min-width: 1024px) {
  .site-header .btn-signup {
    padding: 8px 28px;
    height: 45px;
  }
}
ul {
  list-style: none;
  padding: 0;
}

.banner {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
  margin-bottom: 20px;
  display: flex;
  aspect-ratio: 487/598;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .banner {
    aspect-ratio: 550/500;
  }
}
@media (min-width: 1024px) {
  .banner {
    aspect-ratio: 1920/1196;
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .banner {
    padding-bottom: 0;
    margin-bottom: 0px;
  }
}
.banner img {
  width: 100%;
  height: 530px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
@media (min-width: 1024px) {
  .banner img {
    height: auto;
  }
}
.banner .bg2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22, 14, 37, 0) 4.42%, #160E25 79%);
  display: none;
}
@media (min-width: 1024px) {
  .banner .bg2 {
    display: block;
  }
}
.banner .bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22, 14, 37, 0) 3.97%, #160E25 65%);
}
@media (min-width: 1024px) {
  .banner .bg1 {
    background: linear-gradient(270deg, rgba(22, 14, 37, 0) 55.03%, rgba(22, 14, 37, 0.88) 79.88%);
  }
}
.banner .wrapper {
  position: absolute;
  top: 10%;
  z-index: -1;
  height: 78%;
  width: auto;
}
.banner .wrapper video {
  height: 100%;
  width: auto;
  clip-path: inset(0px 3px 0px 0px); /* top, right, bottom, left */
}
@media (min-width: 1024px) {
  .banner .wrapper {
    right: 28%;
    top: auto;
    height: 87%;
    bottom: 0%;
  }
}
.banner picture {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.banner .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .banner .text {
    display: block;
    align-self: center;
  }
}
.banner .text h1 {
  order: 1;
}
.banner .text h2 {
  order: 2;
}
.banner .text h3 {
  order: 3;
}
.banner .text h4 {
  order: 5;
}
.banner .text .btn-signup {
  order: 4;
}
@media (min-width: 1024px) {
  .banner .text .btn-signup {
    order: unset;
  }
}
.banner .text h1, .banner .text h2, .banner .text h3, .banner .text h4 {
  color: #FFF;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  text-align: left;
  position: relative;
  margin: 0;
}
@media (min-width: 1024px) {
  .banner .text h1, .banner .text h2, .banner .text h3, .banner .text h4 {
    order: unset;
  }
}
.banner .text h1 {
  text-shadow: 0 4px 7.6px rgba(0, 0, 0, 0.25);
  font-size: 40px;
  line-height: 123%; /* 92.25px */
}
@media (min-width: 1024px) {
  .banner .text h1 {
    font-size: 75px;
  }
}
.banner .text h1 span {
  mix-blend-mode: soft-light;
}
@media (min-width: 1024px) {
  .banner .text h1 span {
    mix-blend-mode: overlay;
  }
}
.banner .text h2 {
  text-shadow: 0 4px 6.7px rgba(0, 0, 0, 0.25);
  font-size: 26px;
  line-height: 123%; /* 59.04px */
}
@media (min-width: 1024px) {
  .banner .text h2 {
    font-size: 48px;
  }
}
.banner .text h3 {
  color: #FFD338;
  text-shadow: 0 4px 9.6px rgba(0, 0, 0, 0.48);
  font-size: 16px;
}
@media (min-width: 1024px) {
  .banner .text h3 {
    font-size: 26px;
  }
}
.banner .text h4 {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  font-weight: 600;
  line-height: 123%; /* 24.6px */
}
@media (min-width: 1024px) {
  .banner .text h4 {
    font-size: 20px;
  }
}
.banner .text .btn-signup {
  position: relative;
  display: table;
  padding-top: 20px;
  padding-right: 40px;
  padding-bottom: 36px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 1024px) {
  .banner .text .btn-signup {
    margin-left: 0;
    margin-right: 0;
  }
}
.banner .text .btn-signup a {
  width: fit-content;
  position: relative;
  border-radius: 100px;
  background: linear-gradient(99deg, #FFE563 12.07%, #FFD60A 93.97%);
  box-shadow: 0 0 50px 0 #FFD70C;
  display: inline-flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #4A0791;
  text-align: center;
  font-family: Montserrat;
  font-size: 4vw;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .banner .text .btn-signup a {
    margin-top: 0;
    font-size: 24px;
    padding: 20px 30px;
  }
}
@media (min-width: 768px) {
  .banner .text .btn-signup a {
    width: auto;
  }
}
.banner .text .btn-signup .ball {
  position: absolute;
  width: 260px;
  height: auto;
  z-index: 2;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .promo.first {
    margin-top: -10%;
  }
}
.promo:not(.first) {
  margin-top: 100px;
}

.purple-box {
  border-radius: 25px;
  position: relative;
  border: 2px solid #BE03E3;
  background: linear-gradient(0deg, rgba(69, 35, 98, 0.92) 0%, rgba(69, 35, 98, 0.92) 100%), rgba(69, 35, 98, 0.38);
  box-shadow: 0 1px 30px 0 rgba(216, 1, 255, 0.48) inset, 0 0 66.1px 0 rgba(190, 3, 227, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-bottom: 20px;
}
@media (min-width: 1200px) {
  .purple-box {
    flex-direction: row;
    padding-bottom: 0;
    gap: 28px;
  }
}
.purple-box > span {
  mix-blend-mode: lighten;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 290px;
  height: 51px;
  padding: 15px 0 15px 66px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 0 23px 0 0;
  color: #FF9AEB;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 18px */
  background: linear-gradient(270deg, #9503CA 0%, #42225F 96.06%);
}
.purple-box > div {
  color: #FFF;
  font-family: Montserrat;
  font-style: normal;
  font-size: 16px;
  font-weight: 800;
  line-height: 120%;
}
.purple-box > div:first-of-type {
  order: 2;
}
@media (min-width: 1200px) {
  .purple-box > div:first-of-type {
    align-self: flex-end;
    position: relative;
    order: unset;
  }
}
.purple-box > div:nth-of-type(2) {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 15px;
  text-align: center;
  order: 1;
}
@media (min-width: 1200px) {
  .purple-box > div:nth-of-type(2) {
    padding-top: 15px;
    text-align: left;
    width: 70%;
    order: unset;
  }
}
.purple-box > div:nth-of-type(3) {
  order: 3;
}
@media (min-width: 1200px) {
  .purple-box > div:nth-of-type(3) {
    padding-top: 40px;
    padding-right: 33px;
    order: unset;
  }
}
@media (min-width: 1200px) {
  .purple-box > div {
    font-size: 36px;
  }
}
.purple-box > div small {
  font-size: 20px;
  font-weight: 600;
  display: block;
  padding-bottom: 15px;
}
@media (min-width: 1200px) {
  .purple-box > div small {
    padding-bottom: 0px;
    font-size: 24px;
  }
}
.purple-box > div .gold, .purple-box > div .fortune {
  font-size: 24px;
}
@media (min-width: 1200px) {
  .purple-box > div .gold, .purple-box > div .fortune {
    font-size: 36px;
  }
}
.purple-box > div .gold {
  color: #FFD338;
  display: block;
  padding-bottom: 15px;
}
@media (min-width: 1200px) {
  .purple-box > div .gold {
    padding-bottom: 0;
  }
}
.purple-box > div .fortune {
  color: #00FF37;
  display: block;
}
@media (min-width: 1200px) {
  .purple-box > div .fortune {
    display: inline-block;
  }
}
.purple-box > div .coins {
  width: 207px;
  height: auto;
}
@media (min-width: 1200px) {
  .purple-box > div .coins {
    width: 207px;
  }
}
.purple-box > div a {
  position: relative;
  border-radius: 100px;
  background: linear-gradient(99deg, #FFE563 12.07%, #FFD60A 93.97%);
  display: inline-flex;
  padding: 15px 90px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #4A0791;
  text-align: center;
  font-family: Montserrat;
  font-size: 4vw;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .purple-box > div a {
    margin-top: 0;
    font-size: 24px;
    padding: 20px 50px;
  }
}

.banner-sign-up-now {
  margin-top: 97px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.banner-sign-up-now:not(.bg) {
  max-width: none;
}
@media (min-width: 1024px) {
  .banner-sign-up-now:not(.bg) {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .banner-sign-up-now:not(.bg) {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .banner-sign-up-now:not(.bg) {
    max-width: 1140px;
  }
}
.banner-sign-up-now .container {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
@media (min-width: 1024px) {
  .banner-sign-up-now .container {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .banner-sign-up-now .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .banner-sign-up-now .container {
    max-width: 1140px;
  }
}
.banner-sign-up-now h2 {
  font-family: Montserrat;
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 40px #BE03E3;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 48px */
  text-align: center;
  padding-bottom: 42px;
}
.banner-sign-up-now h2 span {
  font-size: 20px;
  white-space: nowrap;
  line-height: 115%;
}
@media (min-width: 768px) {
  .banner-sign-up-now h2 {
    font-size: 36px;
    line-height: 100%; /* 48px */
  }
  .banner-sign-up-now h2 span {
    font-size: inherit;
    white-space: unset;
    line-height: inherit;
  }
}
.banner-sign-up-now img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1024px) {
  .banner-sign-up-now img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.banner-sign-up-now:not(.bg) img {
  height: 500px;
}
@media (min-width: 1024px) {
  .banner-sign-up-now:not(.bg) img {
    height: auto;
  }
}
.banner-sign-up-now.bg {
  background-image: url(https://fortunewins.com/offers/wp-content/uploads/2025/10/purple-wave.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 120px;
}
.banner-sign-up-now.bg h2 {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .banner-sign-up-now.bg {
    padding-bottom: 170px;
  }
}
.banner-sign-up-now a {
  position: relative;
  border-radius: 100px;
  background: linear-gradient(99deg, #FFE563 12.07%, #FFD60A 93.97%);
  box-shadow: 0 0 50px 0 #FFD70C;
  display: inline-flex;
  padding: 15px 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #4A0791;
  text-align: center;
  font-family: Montserrat;
  font-size: 4vw;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .banner-sign-up-now a {
    margin-top: 0;
    font-size: 24px;
    padding: 20px 50px;
  }
}

.why-fortune-coins {
  padding-top: 70px;
}
@media (min-width: 768px) {
  .why-fortune-coins {
    padding-top: 280px;
  }
}
@media (min-width: 1200px) {
  .why-fortune-coins {
    padding-top: 150px;
  }
}
.why-fortune-coins h2 {
  font-family: Montserrat;
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 40px #BE03E3;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 48px */
  text-align: center;
  padding-bottom: 42px;
}
.why-fortune-coins h2 span {
  font-size: 36px;
  white-space: nowrap;
  line-height: 115%;
}
@media (min-width: 768px) {
  .why-fortune-coins h2 {
    font-size: 48px;
    line-height: 100%; /* 48px */
  }
  .why-fortune-coins h2 span {
    font-size: inherit;
    white-space: unset;
    line-height: inherit;
  }
}
.why-fortune-coins ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 12px;
  padding-right: 12px;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .why-fortune-coins ul {
    gap: 20px;
    justify-content: center;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
  }
}
.why-fortune-coins ul li {
  border-radius: 10px;
  border: 2px solid #D801FF;
  background: rgba(216, 1, 255, 0.5);
  color: #FFF;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 10px;
  position: relative;
  flex: 1 auto;
  text-align: center;
}
.why-fortune-coins ul li:first-of-type {
  order: 1;
}
.why-fortune-coins ul li:nth-of-type(2) {
  order: 2;
}
.why-fortune-coins ul li:nth-of-type(3) {
  order: 4;
}
.why-fortune-coins ul li:nth-of-type(4) {
  order: 5;
}
.why-fortune-coins ul li:nth-of-type(5) {
  order: 7;
}
.why-fortune-coins ul li:nth-of-type(6) {
  order: 3;
}
.why-fortune-coins ul li:nth-of-type(7) {
  order: 6;
}
.why-fortune-coins ul li:nth-of-type(8) {
  order: 8;
}
.why-fortune-coins ul li:nth-of-type(9) {
  order: 9;
}
.why-fortune-coins ul li:nth-of-type(10) {
  order: 10;
}
@media (min-width: 768px) {
  .why-fortune-coins ul li {
    font-size: 20px;
    padding: 20px 25px;
    flex: none;
    order: unset !important;
  }
}
.why-fortune-coins ul li span {
  position: relative;
  z-index: 2;
}
.why-fortune-coins ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: #20132E;
  filter: blur(32.6500015259px);
  z-index: 1;
}
.why-fortune-coins .col-2 {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  gap: 0px;
  position: relative;
  flex-direction: column;
}
@media (min-width: 768px) {
  .why-fortune-coins .col-2 {
    flex-direction: row;
    gap: 80px;
  }
}
.why-fortune-coins .col-2 br {
  display: none;
}
@media (min-width: 768px) {
  .why-fortune-coins .col-2 br {
    display: block;
  }
}
.why-fortune-coins .col-2.reverse {
  flex-direction: column;
}
@media (min-width: 768px) {
  .why-fortune-coins .col-2.reverse {
    flex-direction: row-reverse;
  }
}
.why-fortune-coins .col-2 .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  z-index: -1;
}
.why-fortune-coins .col-2 > div:first-of-type {
  display: flex;
  justify-content: center;
  align-content: center;
}
.why-fortune-coins .col-2 > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .why-fortune-coins .col-2 > div:nth-of-type(2) {
    align-items: flex-start;
    text-align: left;
  }
}
.why-fortune-coins .col-2 > div:nth-of-type(2) > span {
  display: flex;
  flex-direction: column;
}
.why-fortune-coins .col-2 > div img {
  width: 90%;
  height: auto;
}
@media (min-width: 768px) {
  .why-fortune-coins .col-2 > div img {
    width: auto;
    height: 375px;
  }
}
.why-fortune-coins .col-2 > div h3 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 768px) {
  .why-fortune-coins .col-2 > div h3 {
    font-size: 36px;
  }
}
.why-fortune-coins .col-2 > div .btn {
  position: relative;
  border-radius: 100px;
  background: linear-gradient(99deg, #FFE563 12.07%, #FFD60A 93.97%);
  box-shadow: 0 0 50px 0 #FFD70C;
  display: inline-flex;
  padding: 3% 8%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #4A0791;
  text-align: center;
  font-family: Montserrat;
  font-size: 16.8px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .why-fortune-coins .col-2 > div .btn {
    margin-top: 0;
    font-size: 20px;
    padding: 20px 50px;
  }
}

.note {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 33.583px; /* 167.917% */
  text-align: center;
}
@media (min-width: 768px) {
  .note {
    font-size: 18px;
    text-align: right;
  }
}

.purple-box2 {
  border-radius: 25px;
  border: 1px solid rgba(216, 1, 255, 0.37);
  background: rgba(69, 35, 98, 0.38);
  display: flex;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 30px;
  justify-content: space-between;
  align-items: center;
  margin-top: 115px;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .purple-box2 {
    flex-direction: row;
    padding-left: 55px;
    padding-right: 55px;
    padding-bottom: 0;
  }
}
.purple-box2 > div {
  color: #FDFDFD;
  font-family: Montserrat;
  text-align: center;
}
@media (min-width: 1024px) {
  .purple-box2 > div {
    text-align: left;
  }
}
.purple-box2 > div h3 {
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .purple-box2 > div h3 {
    font-size: 24px;
    text-align: left;
  }
}
.purple-box2 > div h2 {
  text-align: center;
  color: #FFD338;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-transform: none;
}
@media (min-width: 1024px) {
  .purple-box2 > div h2 {
    font-size: 40px;
    text-align: left;
  }
}
.purple-box2 > div p {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding-bottom: 20px;
  padding-left: 8%;
  padding-right: 8%;
}
.purple-box2 > div p br {
  display: none;
}
@media (min-width: 1024px) {
  .purple-box2 > div p br {
    display: block;
  }
}
@media (min-width: 1024px) {
  .purple-box2 > div p {
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    text-align: left;
    padding-bottom: 50px;
  }
}
.purple-box2 > div a {
  position: relative;
  border-radius: 100px;
  background: linear-gradient(99deg, #FFE563 12.07%, #FFD60A 93.97%);
  box-shadow: 0 0 50px 0 #FFD70C;
  display: inline-flex;
  padding: 25px 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #4A0791;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .purple-box2 > div a {
    margin-top: 0;
    font-size: 20px;
    padding: 20px 50px;
  }
}
.purple-box2 > div img {
  width: 80%;
  height: auto;
  margin-top: -15%;
}
@media (min-width: 1024px) {
  .purple-box2 > div img {
    margin-top: -7%;
    margin-bottom: -7%;
    width: 515px;
  }
}

.download-area {
  padding-top: 50px;
  background-image: var(--bg-img);
  position: relative;
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 100px;
}
.download-area:after {
  background: red;
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 5;
}
.download-area ul {
  padding: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .download-area ul {
    flex-direction: row;
  }
}
.download-area ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.download-area ul li h3 {
  text-align: center;
  /* Desktop/Headline 2 */
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(99deg, #F99300 12.07%, #FFD60A 93.97%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.download-area ul li h4 {
  color: #FFF;
  text-align: center;
  width: 340px;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.download-area ul li img {
  height: auto;
}
.download-area ul li .app-store {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}
.download-area ul li .app-store img {
  width: auto;
  height: 40px;
}
.download-area ul li .trustpilot {
  padding-top: 22px;
  display: table;
  width: 260px;
}
@media (min-width: 768px) {
  .download-area ul li .trustpilot {
    width: 288px;
  }
}
.download-area ul li .fc-app {
  width: 319px;
}
@media (min-width: 768px) {
  .download-area ul li .fc-app {
    width: 100%;
  }
}
.download-area ul li .rating {
  background: linear-gradient(180deg, #FFD338 0%, #FFEEB4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 5px;
}
.download-area ul li .rating a {
  border-bottom: 1px solid #FFD338;
}

.faq {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.faq h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
  color: #FFD338;
}
.faq #faq-more {
  display: none;
  transition: all 1s ease-out;
  max-height: 0;
  overflow: hidden;
}
.faq #faq-more.expand {
  max-height: 0;
}
.faq #faq-arrow {
  display: none;
}
.faq .item {
  padding-top: 40px;
  border-bottom: 1px solid #9503CA;
}
.faq .item h3 {
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.pro-con .text {
  font-family: Montserrat;
  padding-bottom: 80px;
}
.pro-con .text:first-of-type {
  color: #FDFDFD;
}
.pro-con .text:first-of-type h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  padding-bottom: 20px;
}
.pro-con .text:first-of-type p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.pro-con .text:nth-of-type(2) {
  color: #FFF;
}
.pro-con .text:nth-of-type(2) h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}
.pro-con .text:nth-of-type(2) p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
}
.pro-con > ul {
  display: flex;
  flex-wrap: wrap;
  --columns: 1;
  --gap: 40px;
  gap: var(--gap);
  flex-direction: column;
}
@media (min-width: 1024px) {
  .pro-con > ul {
    flex-direction: row;
    --columns: 2;
  }
}
.pro-con > ul > li {
  border-radius: 25px;
  border: 2px solid #BE03E3;
  background: linear-gradient(0deg, rgba(82, 19, 105, 0) 19.97%, #521369 69.31%), linear-gradient(0deg, rgba(60, 30, 94, 0.5) 0%, rgba(60, 30, 94, 0.5) 100%), url(<path-to-image>) lightgray -17.839px 139.442px/223.256% 100% no-repeat;
  box-shadow: 0 0 66.1px 0 rgba(190, 3, 227, 0.3);
  color: #FFF;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 160% */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 47px;
  padding-right: 30px;
  padding-left: 25px;
}
@media (min-width: 1024px) {
  .pro-con > ul > li {
    padding-left: 24px;
    padding-left: 30px;
    padding-right: 78px;
    font-size: 17px;
    line-height: 30px; /* 141.176% */
  }
}
.pro-con > ul > li h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding-bottom: 24px;
}
.pro-con > ul > li.half {
  width: calc(100% / var(--columns) - var(--gap) + var(--gap) / var(--columns));
  background: linear-gradient(0deg, rgba(82, 19, 105, 0) 19.97%, #521369 69.31%), linear-gradient(0deg, rgba(60, 30, 94, 0.5) 0%, rgba(60, 30, 94, 0.5) 100%), var(--bg-desktop) lightgray -17.839px 139.442px/223.256% 100% no-repeat;
  box-shadow: 0 0 66.1px 0 rgba(190, 3, 227, 0.3);
}
.pro-con > ul > li.full {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%; /* 24px */
  gap: 20px;
  align-items: start;
  text-align: center;
  background: linear-gradient(0deg, rgba(82, 19, 105, 0) 9.42%, rgba(82, 19, 105, 0.95) 58.83%), linear-gradient(0deg, rgba(82, 19, 105, 0.78) 0%, rgba(82, 19, 105, 0.78) 100%), var(--bg-mobile) lightgray -520.166px 459.871px/339.327% 61.628% no-repeat;
  box-shadow: 0 0 66.1px 0 rgba(190, 3, 227, 0.3);
}
@media (min-width: 1024px) {
  .pro-con > ul > li.full {
    flex-direction: row;
    padding-left: 78px;
    padding-right: 0;
    text-align: left;
    font-size: 16px;
    gap: 30px;
    background: linear-gradient(270deg, rgba(82, 19, 105, 0) 27.97%, rgba(82, 19, 105, 0.95) 57.63%), linear-gradient(0deg, rgba(82, 19, 105, 0.78) 0%, rgba(82, 19, 105, 0.78) 100%), var(--bg-desktop) lightgray -144.187px -15.457px/128.553% 136.275% no-repeat;
    box-shadow: 0 0 66.1px 0 rgba(190, 3, 227, 0.3);
  }
}
.pro-con > ul > li.full h2 {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
}
@media (min-width: 1024px) {
  .pro-con > ul > li.full h2 {
    text-align: left;
    font-size: 40px;
  }
}
.pro-con > ul > li.full img {
  width: 90%;
  height: auto;
}
@media (min-width: 1024px) {
  .pro-con > ul > li.full img {
    width: auto;
    height: 100%;
  }
}
.pro-con > ul > li.full div:first-of-type {
  padding-top: 47px;
}
.pro-con > ul > li.full div:last-of-type {
  margin-top: -2%;
}
.pro-con > ul > li ul {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.pro-con > ul > li ul li {
  padding-top: 10px;
  padding-bottom: 10px;
  background-size: 50px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 54px;
}
.pro-con > ul > li .pros li {
  background-image: var(--bullet-img);
}
.pro-con > ul > li .cons li {
  background-image: var(--bullet-img);
}
.pro-con > ul > li img {
  width: 80%;
  height: auto;
}

.features {
  margin-top: 109px;
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
@media (min-width: 768px) {
  .features {
    font-size: 20px;
  }
}
.features h2 {
  text-overflow: ellipsis;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  text-align: left;
  padding-bottom: 24px;
  text-transform: none;
}
@media (min-width: 768px) {
  .features h2 {
    font-size: 40px;
  }
}
.features h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  padding-bottom: 24px;
}
.features p {
  margin-bottom: 24px;
}

.how-to-play {
  padding-top: 151px;
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  background-image: url(https://fortunewins.com/offers/wp-content/uploads/2025/10/purple-wave.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .how-to-play {
    font-size: 20px;
  }
}
.how-to-play h2 {
  font-family: Montserrat;
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 40px #BE03E3;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 48px */
  text-align: center;
  padding-bottom: 42px;
}
.how-to-play h2 span {
  font-size: 64px;
  white-space: nowrap;
  line-height: 115%;
}
@media (min-width: 768px) {
  .how-to-play h2 {
    font-size: 40px;
    line-height: 100%; /* 48px */
  }
  .how-to-play h2 span {
    font-size: inherit;
    white-space: unset;
    line-height: inherit;
  }
}
.how-to-play h2 span {
  display: block;
}
@media (min-width: 768px) {
  .how-to-play h2 span {
    display: inline;
  }
}
.how-to-play ul {
  display: flex;
  gap: 77px;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .how-to-play ul {
    flex-direction: row;
  }
}
.how-to-play ul li:nth-of-type(2) {
  flex: none;
}
.how-to-play ul li h3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .how-to-play ul li h3 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%; /* 24px */
  }
}
.how-to-play ul li p {
  padding-bottom: 24px;
}
.how-to-play ul li img {
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .how-to-play ul li img {
    width: 100%;
    height: auto;
  }
}

.play-plinko-now {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 100px;
}
.play-plinko-now h2 {
  font-family: Montserrat;
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 40px #BE03E3;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 48px */
  text-align: center;
  padding-bottom: 0;
}
.play-plinko-now h2 span {
  font-size: 24px;
  white-space: nowrap;
  line-height: 115%;
}
@media (min-width: 768px) {
  .play-plinko-now h2 {
    font-size: 24px;
    line-height: 100%; /* 48px */
  }
  .play-plinko-now h2 span {
    font-size: inherit;
    white-space: unset;
    line-height: inherit;
  }
}
.play-plinko-now p {
  max-width: 600px;
  overflow: hidden;
  color: #FFF;
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  margin-top: 32px;
  margin-bottom: 32px;
}
.play-plinko-now a {
  position: relative;
  border-radius: 100px;
  background: linear-gradient(99deg, #FFE563 12.07%, #FFD60A 93.97%);
  box-shadow: 0 0 50px 0 #FFD70C;
  display: inline-flex;
  padding: 15px 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #4A0791;
  text-align: center;
  font-family: Montserrat;
  font-size: 4vw;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .play-plinko-now a {
    margin-top: 0;
    font-size: 24px;
    padding: 20px 50px;
  }
}
@media (min-width: 1024px) {
  .play-plinko-now {
    padding-bottom: 150px;
  }
}/*# sourceMappingURL=plinko-page.css.map */