@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;

}

a {
  color: #fff;
  text-decoration: none;
}

p {
  font-size: 20px;
  line-height: 24px;
}

ul {
  margin: 0;
}

.btn {
  padding: 16px 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
}

.btn-primary {
  --bs-btn-color: #000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #000;
  --bs-btn-active-border-color: #000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #fff;
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn:hover svg g path {
  stroke: #fff;
}

span.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

button.navbar-toggler {
  border-color: #fff;
  padding: 10px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  z-index: 1000;
}

#navbar.sticky {
  background: #000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.sticky {
  top: -1px;
  left: 0;
  width: 100%;
  position: sticky;
  border-radius: 0;
  z-index: 1030;
  background-color: #000 !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  border-color: transparent;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.header .navbar-nav {
  gap: 32px;
}

.header .navbar-nav li a {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  padding: 0;
}

.hero-section {
  background: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 130px;
}

.hero-section .hero-title {
  font-size: 64px;
  line-height: 70px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero-section .hero-description {
  font-size: 20px;
  margin-bottom: 60px;
}

.section-title-row {
  margin-bottom: 90px;
}

.features-box {
  position: relative;
  border-radius: 5px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.features-box:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(240deg, rgba(30, 30, 30, 1), rgba(255, 255, 255));
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

.features-box:after {
  background: #999999;
  background: radial-gradient(circle, rgba(153, 153, 153, 1) 0%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  opacity: 0.15;
}

.features-box .feature-details h4 {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
  line-height: 53px;
}

.features-box .feature-details p {
  font-size: 17px;
  margin-bottom: 0;
  line-height: 20px;
}

.why-choose {
  background: url(../images/why-choose-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
  padding-bottom: 180px;
  position: relative;
  background-color: #000;
}

.why-choose:after {
  content: '';
  background: #000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
  position: absolute;
  bottom: 0;
  height: 535px;
  width: 100%;
  z-index: 2;
}

.why-choose:before {
  content: '';
  position: absolute;
  background-image: url(../images/mockupwithperson.png);
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  bottom: 0;
  z-index: 1;
}


.icon {
  width: 60px;
  height: 60px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.why-choose-options {
  background: #999999;
  background: radial-gradient(circle, rgba(153, 153, 153, 0.15) 100%, rgba(255, 255, 255, 0.15) 100%);
  --tw-backdrop-blur: blur(65px);
  margin-bottom: 16px;
  padding: 30px 25px;
  border-radius: 10px;
  gap: 25px;
}


.play-steps {
  background: url(../images/steps-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 190px;
  padding-bottom: 100px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}

.steps:after {
  content: '';
  width: 2px;
  height: calc(100% - 40px);
  position: absolute;
  left: 30px;
  display: flex;
  background: #fff;
  z-index: -1;
  top: 0;
  bottom: 0;
  transform: translate(0, 20px);
}

.step h4 {
  margin: 0;
  font-size: 32px;
  line-height: 38px;
}

.steps-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 95px;
}


.details h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.details p {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.section-title-row h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 48px;
}

.why-choose-options {
  position: relative;
}

.why-choose-options:after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(240deg, rgba(30, 30, 30, 1), rgba(255, 255, 255));
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  z-index: 2;
  border-radius: 10px;
}

.why-choose-options:before {
  background: #999999;
  background: radial-gradient(circle, rgba(153, 153, 153, 1) 0%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  opacity: 0.15;
  border-radius: 10px;
}

.play-steps {
  position: relative;
}

.play-steps:after {
  content: '';
  background: #000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
  position: absolute;
  bottom: 0;
  height: 260px;
  width: 100%;
  z-index: 2;
}

.play-steps:before {
  content: '';
  background: #000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 0%);
  position: absolute;
  top: 0;
  height: 260px;
  width: 100%;
  z-index: 2;
}

.faqs-section {
  background: url(../images/faq-bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 130px;
  padding-bottom: 290px;
}

.download-section {
  background: url(../images/download-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 190px;
}

.accordion-item {
  position: relative;
}

.accordion-item:after {
  background: #999999;
  background: radial-gradient(circle, rgba(153, 153, 153, 1) 0%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  opacity: 0.15;
}

.accordion-item:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(240deg, rgba(30, 30, 30, 1), rgba(255, 255, 255));
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

.accordion-item {
  border: none;
  background: transparent;
}

.accordion .accordion-item {
  margin-bottom: 26px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  z-index: 9;
  justify-content: space-between;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: #ffff;
}

.accordion-button::after {
  display: none;
}

.accordion-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  padding: 5px 24px 24px;
}

.download-section .download-title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 12px;
}

.download-section .download-details {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.apk-download-btn {
  margin-top: 60px;
}


/* Footer css start  */


.footer {
  background: #000;
}

.footer-logo {
  padding-bottom: 12px;
}

.footer .company-info {
  margin-bottom: 30px;
}

.footer .social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .widget-box ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer .widget-box ul li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  display: block;
}

.footer .widget-box ul li {
  list-style: none;
}

.footer .widget-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .company-info p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer .media-body h4 {
  font-size: 27px;
  font-weight: 700;
  margin: 0;
}

.footer .media-body p {
  font-size: 19px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 0;
}

.footer .top {
  border: 1px solid;
  border-image: linear-gradient(90deg, rgba(48, 48, 48, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
  border-image-slice: 1;
  margin: 0;
}

.footer .bottom {
  border: 1px solid;
  border-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(48, 48, 48, 1) 100%);
  border-image-slice: 1;
  margin: 0;
}

.footer .disclamer-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}




/* inner page css  */

.inner-hero-section {
  background: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 260px;
  padding-bottom: 200px;
}

.page-title {
  font-size: 64px;
  font-weight: 700;
}

.about-us-section {
  background: #000;
  padding-bottom: 155px;
}




/* how to play css  */

.step-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.light-bg {
  background-color: #ffffff;
  color: black;
}

.step-image img {
  max-width: 220px;
}




.nav-tabs {
  gap: 20px;
  border: none;
  justify-content: center;
}

.nav-tabs .nav-link {
  border: 1px dashed #fff;
  padding: 20px !important;
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-radius: 20px;
  font-size: 24px;
  height: 160px;
  width: 160px;
  align-items: center;
  color: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: transparent;
  color: #fff;
  font-weight: 700;
}

.steps-outer {
  padding-top: 30px;
}

.step-container:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(240deg, rgba(30, 30, 30, 1), rgba(255, 255, 255));
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

.step-image {
  padding: 48px;
  background: #282828;
}

.step-text {
  padding: 48px;
  max-width: 60%;
}

.step-detials h5 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.step-detials p {
  margin-bottom: 0px;
}

.step-number {
  font-size: 112px;
  font-weight: 600;
  line-height: 1;
}

.steps-outer .step-container:hover {
  background: #fff;
  color: #000;
}

.steps-outer .step-container:hover .step-image {
  background: #fff;
}

.winning-sec {
  background: #000;
}

.winning-inner {
  position: relative;
  border-radius: 8px;
  padding-left: 70px;
  padding-right: 70px;
}

.winning-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(240deg, rgba(30, 30, 30, 1), rgba(255, 255, 255));
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

.winning-inner:after {
  background: #999999;
  background: radial-gradient(circle, rgba(153, 153, 153, 1) 0%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  opacity: 0.15;
}

.winning-detials h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

.winner-playe-img {
  margin-top: -100px;
}




.faqs-page {
  background: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.points-section {
  background: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.points-section .table {
  margin-bottom: 0;
}

.points-section .table>:not(caption)>*>* {
  background: transparent;
  color: #fff;
  padding: 20px;
  border: none;
}

.points-section .table>thead {
  background: rgba(0, 0, 0, 0.5);
}

.points-section .table>tbody tr {
  border-bottom: 1px solid;
}

.points-section .table>tbody tr:last-child {
  border-bottom: 0;
}

.points-section .accordion-item:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(60deg, rgba(30, 30, 30, 1), rgba(255, 255, 255));
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

.poitns-inner {
  padding-top: 30px;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .hero-section .hero-title {
    font-size: 54px;
    line-height: 60px;
    margin-bottom: 15px;
  }

  .hero-section .hero-description {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  p {
    font-size: 16px;
    line-height: 22px;
  }

  .btn {
    padding: 15px 20px;
    font-size: 18px;
  }

  .btn svg {
    height: 18px;
  }

  .hero-section .hero-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .hero-section .hero-description {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .why-choose {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .why-choose::before,
  .why-choose::after {
    display: none;
  }

  .section-title-row {
    margin-bottom: 40px;
  }

  .section-title-row p {
    margin-bottom: 0;
    font-size: 16px;
  }

  .play-steps {
    padding-top: 50px;
    padding-bottom: 50px;
  }



  .steps-title {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .steps {
    gap: 70px;
    margin-bottom: 50px;
  }

  .step h4 {
    font-size: 28px;
    line-height: 32px;
  }

  .faqs-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .accordion-button {
    font-size: 22px;
  }

  .accordion-body {
    font-size: 16px;
  }

  .download-section {
    padding-top: 50px;
  }

  .download-section .download-title {
    font-size: 35px;
    line-height: 1.2;
  }

  .download-section .download-details {
    font-size: 26px;
    line-height: 1;
  }

  .apk-download-btn {
    margin-top: 20px;
  }

  .apk-download-btn a svg {
    width: 100%;
  }

  .footer .company-info p {
    font-size: 16px;
  }

  .footer .widget-title {
    font-size: 25px;
  }

  .footer .widget-box ul li a {
    font-size: 18px;
  }

  .footer .widget-box ul {
    gap: 5px;
  }

  .footer .media-body p {
    font-size: 16px;
  }

  .footer .media-body h4 {
    font-size: 24px;
  }

  .footer .disclamer-text p {
    font-size: 14px;
  }




  .inner-hero-section {
    padding-top: 120px;
    padding-bottom: 100px;
  }


  .nav-tabs {
    flex-wrap: nowrap;
    align-items: start;
    justify-content: space-around;
    overflow-y: scroll;
    gap: 15px;
  }

  .nav-tabs .nav-link {
    height: 150px;
    width: 150px;
    padding: 10px !important;
    font-size: 18px;
  }

  .nav-tabs .nav-link .img-fluid {
    width: 100px;
  }

  .step-container {
    flex-direction: column;
  }

  .step-text {
    padding: 30px;
    max-width: 100%;
    flex-direction: column;
    gap: 10px !important;
    width: 100%;
  }

  .step-image {
    padding: 20px;
    width: 100%;
    text-align: center;
  }

  .step-number {
    font-size: 61px;
  }

  .step-detials h5 {
    margin-bottom: 10px;
  }

  .about-us-section {
    padding-bottom: 60px;
  }

  .winning-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .winning-detials {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .winning-detials h2 {
    font-size: 34px;
    line-height: 45px;
  }

  .faqs-page {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-title {
    font-size: 44px;
    line-height: 1.2;
  }

  .points-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #navbar .navbar-collapse {
    padding: 30px;
    align-items: center;
    text-align: center;
    background: #000;
    margin-top: 10px;
  }

  .header .navbar-nav {
    gap: 15px;
  }


}

@media (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-section .hero-title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .hero-section .hero-description {
    font-size: 16px;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }

  .btn {
    padding: 10px;
    font-size: 18px;
  }

  .btn svg {
    width: 18px;
    height: 18px;
  }

  .features-box .feature-details h4 {
    font-size: 28px;
    line-height: 34px;
  }

  .features-icon svg {
    width: 45px;
  }

  .features-box .feature-details p {
    font-size: 16px;
  }

  .section-title-row h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .why-choose {
    background: #000;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .why-choose:before,
  .why-choose:after {
    display: none;
  }

  .why-choose-options {
    padding: 15px;
  }

  .section-title-row {
    margin-bottom: 30px;
  }


  .steps-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .play-steps {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .step h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .steps {
    margin-bottom: 40px;
  }

  .faqs-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .download-section {
    padding-top: 50px;
  }

  .download-section .download-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .download-section .download-details {
    font-size: 16px;
    line-height: 22px;
  }

  .apk-download-btn {
    margin-top: 30px;
    margin-bottom: 50px;
  }


  .inner-hero-section {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .page-title {
    font-size: 44px;
    line-height: 1.2;
  }






  .nav-tabs {
    flex-wrap: nowrap;
    align-items: start;
    justify-content: space-around;
    overflow-y: scroll;
    gap: 15px;
  }

  .nav-tabs .nav-link {
    height: 100px;
    width: 100px;
    padding: 10px !important;
    font-size: 16px;
  }

  .nav-tabs .nav-link .img-fluid {
    width: 60px;
  }

  .step-container {
    flex-direction: column;
  }

  .step-text {
    padding: 30px;
    max-width: 100%;
    flex-direction: column;
    gap: 10px !important;
  }

  .step-image {
    padding: 20px;
    width: 100%;
    text-align: center;
  }

  .step-number {
    font-size: 61px;
  }

  .step-detials h5 {
    margin-bottom: 10px;
  }

  .about-us-section {
    padding-bottom: 60px;
  }

  .winning-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .winning-detials {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .winning-detials h2 {
    font-size: 54px;
    line-height: 61px;
  }


  .points-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }



  #navbar .navbar-collapse {
    padding: 30px;
    align-items: center;
    text-align: center;
    background: #000;
    margin-top: 10px;
  }

  .header .navbar-nav {
    gap: 15px;
  }

}