body,
h1,
h2,
p {
  margin: 0;
  padding: 0;
  color: #fff;
  /* font-family: 'day-one', sans-serif !important; */
}

h1,
h2,
h3 {
  font-family: "day-one";
}
p,
button {
  font-family: "chakra-petch";
}
@font-face {
  font-family: "day-one";
  src: url("../fonts/Days_One/DaysOne-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "chakra-petch";
  src: url("../fonts/Chakra_Petch/ChakraPetch-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1385px;
  margin: 0 auto;
}
/* background */
.footer,
section.why-choose,
.premium {
  background: #0b0e13;
}
/* ---------- */

/* header start */
.header-inner {
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.header-left {
    width: 50%;
}
.header-right {
    width: 50%;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
section.header {
    background: #000000e8;
    box-shadow: 0px 4px 4px 0px #FFBF000D;
    padding: 11px 0px;
    position: sticky;
    z-index: 1000;
    top: 0;
}
.login-btn {
    padding: 12px 55px;
    gap: 10px;
    border-radius: 25px;
    border: 2px solid #FFBF00;
    background: linear-gradient(270deg, #ffbf0000 0%, #ffbf0000 100%);
    color: #fff;
    font-family: 'chakra-petch';
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    transition: background 2s ease-in-out;
    text-decoration: none;
}

.signup-btn {
 padding: 12px 55px;
    gap: 10px;
    border-radius: 25px;
    background: linear-gradient(270deg, #FFBF00 0%, #FFBF00 100%);
    color: #000;
    font-family: 'chakra-petch';
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    transition: background 2s ease-in-out;
    text-decoration: none;
}
.signup-btn:hover {
    background: linear-gradient(270deg, #FFBF00 0%, #DF4E2C 100%);
        transition: all 1s ease-in-out;
}
.login-btn:hover {
     background: linear-gradient(270deg, #FFBF00 0%, #DF4E2C 100%);
        transition: all 1s ease-in-out;
         /* background-color: #FFBF00; */
}


/* header end */

/* hero start */
.hero-left {
    width: 45%;
    z-index: 1;
    margin: 80px 0;
}
.hero-right {
    width: 50%;
}
.hero-right video {
    transform: scale(1.15);
    width: 100%;
}
section.hero {
    background: #000509;
}

.signup-box {
    background: #151C1D;
    padding: 40px;
    border-radius: 20px;

    color: #fff;
    float: right;
    max-width: 560px;
}

.signup-box h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 10px;
}

.signup-box .sub-text {
    font-size: 30px;
    margin-bottom: 30px;
    
}

.signup-form label {
    display: block;
    margin: 15px 0 10px;
    font-size: 15px;
    opacity: 0.85;
    font-family: 'chakra-petch';
}

.signup-form input,#verifyOtpForm input {
    width: -webkit-fill-available;
    padding: 15px 30px;
    background: #01060C;
    border: 1px solid #FFFFFF3D;
    border-radius: 35px;
    color: #fff;
    font-size: 15px;
}
.register-now, .otp-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    background-color: #FFBF00;
    color: #000;
    font-family: 'chakra-petch';
    border-radius: 35px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 30px;
    transition: 0.3s;
}
.register-now:hover, .otp-btn:hover {
       background: linear-gradient(270deg, #FFBF00 0%, #DF4E2C 100%);
        transition: all 1s ease-in-out;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}
/* hero end */
/* premium */
.premium-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.premium-inner {
  padding: 70px 20px;
}
.premium-left-right {
  display: flex;
  background: #030c11;
  border: 1px solid #404040;
  border-radius: 40px;
  align-items: center;
}
.premium-right h2 {
  font-family: "day-one";
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
  padding-bottom: 12px;
}
.premium-right p {
  font-family: "chakra-petch";
  font-weight: 400;
  font-size: 20px;
}
.premium-right {
    margin: 0 0 0 -80px;
    width: 50%;
}
.premium-left {
    line-height: 0;
    width: 50%;
}
/* how-work start */
section.how-work {
  background-image: url("../imgs/how-work-bg-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.how-work-inner {
  padding: 60px 20px;
  display: flex;
  gap: 70px;
  align-items: center;
}
.how-work-left {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.how-work-right {
  width: 60%;
}
.how-work-card {
  background: #1a1c21;
  border: 1px solid #404040;
  padding: 20px 20px;
  border-radius: 20px;
  width: 100%;
  transition: transform 0.3s ease;
  display: flex;
  gap: 20px;
}
.how-work-card-contaxt h2 {
  font-family: "day-one";
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
}
h2.how-work-main-heading {
  font-family: "day-one";
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
}
p.how-work-main-sub-heading {
  font-family: "chakra-petch";
  font-weight: 400;
  font-size: 20px;
}
.how-work-card-contaxt p {
  font-family: "chakra-petch";
  font-weight: 400;
  font-size: 16px;
}
.how-work-icon-mian {
  padding: 10px 12px;
  width: 26px;
}
.how-work-right img {
    width: 100%;
}
.how-work-outer-right-img img {
  position: absolute;
  top: 0;
  right: 140px;
}
/* how-work end */

/* why-choose start */
.why-choose-outer {
  position: relative;
}
.why-choose-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.why-choose-inner {
  padding: 70px 20px 90px;
}
.why-choose-top {
  text-align: center;
  padding-bottom: 25px;
}
h2.why-choose-heading {
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
  padding-bottom: 10px;
}
p.why-choose-sub-heading {
  font-size: 20px;
  font-weight: 400;
}
.why-choose-down {
    display: flex;
    gap: 40px;
    z-index: 1;
    position: relative;
}
.why-choose-card {
  background: #1a1c21;
  border: 1px solid #404040;
  padding: 30px 40px;
  border-radius: 20px;
  width: 100%;
  transition: transform 0.3s ease;
}
.grident-card:hover {
  background: linear-gradient(270deg, #ffbf00 0%, #df4e2c 100%);
  border: 1px solid #fff;
}
.icon {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: max-content;
  height: 50px;
  border-radius: 50px;
  background: #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
img.card-icon-mian {
  padding: 10px 12px;
  width: 26px;
}

.why-choose-down h2 {
  font-family: "day-one";
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-choose-down p {
  font-weight: 400;
  font-size: 16px;
}
.outer-left-img img {
  position: absolute;
  max-width: 200px;
  top: -70px;
}
.outer-right-img img {
  position: absolute;
  max-width: 200px;
  top: 80px;
  right: 0;
}

/* why-choose end  */

/* play-now start*/
section.play-now {
  background-image: url("../imgs/play-now.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.play-now-inner {
  padding: 40px 0;
  text-align: center;
}
h2.play-now-heading {
  margin: 0;
  padding: 0 0 10px;
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
}
.white-btn {
  background: #fff;
  outline: none;
  border: 2px solid #fff;
  padding: 15px 80px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 20px;
  transition: transform 0.3s ease, border 0.3s ease;
}
.white-btn:hover {
  background: linear-gradient(270deg, #ffbf00 0%, #df4e2c 100%);
}

/* play-now end */

/* footer-section start */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
h2.footer-img-heading {
  padding: 0 0 10px;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
}
/* footer-section end */





@media (max-width:1025px) {

  .signup-box h2 {
    font-size: 40px;
}
.hero-left {
    margin: 40px 0;
}

.premium-inner {
    padding: 70px 3vw;
}
.premium-right {
    margin: 0 0 0 0px;
    width: 50%;
}
.premium-right h2 {
    font-size: 35px;
}
.premium-right p {
    font-size: 18px;
}
/* ------------------------ */

.how-work-inner {
    padding: 60px 3vw;
        gap: 40px;
}

.how-work-right {
    width: 50%;
    text-align: end;
}
.how-work-left {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
h2.how-work-main-heading {
    font-size: 35px;
}
.how-work-card-contaxt h2 {
    font-size: 18px;
}
p.how-work-main-sub-heading {
    font-size: 18px;
}
.how-work-card {
    padding: 10px 10px;
    gap: 20px;
}
.how-work-outer-right-img img {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 100%;
    max-width: 100px;
}


/* --------------------- */

.why-choose-down {
    gap: 15px;
}
.why-choose-inner {
    padding: 70px 3vw 90px;
}
.why-choose-down {
    position: relative;
    z-index: 1;
}
h2.why-choose-heading {
    font-size: 35px;
}
p.why-choose-sub-heading {
    font-size: 18px;;
}
.why-choose-down br {
  display: none;
}
.why-choose-down h2 {
    font-size: 18px;
}

/* --------------- */
h2.play-now-heading {
    margin: 0;
    padding: 0 0 10px;
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
}


}

@media (max-width:810px) {
.hero-inner {
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
}
.hero-left {
    width: 100%;
    z-index: 1;
    margin: 50px 0;
}
.hero-right {
    width: 100%;
}
.hero-right video {
    transform: none;
}
.signup-box {
    float: none;
    max-width: 560px;
    margin: 0 auto;
}


.premium-left img {
    width: 100%;
    border-radius: 40px;
    height: 250px;
}
.premium-right h2 {
    font-size: 25px;
}
.premium-right p {
    font-size: 16px;
}
.premium-right br{
    display: none;
}
.how-work-right {
    width: 50%;
    text-align: end;
    display: flex;
}

/* ------------------------- */

.how-work-inner {
    padding: 60px 3vw;
    gap: 25px;
    align-items: center;
}
.how-work-right img {
    width: 100%;
    max-width: max-content;
    height: auto;
}
h2.how-work-main-heading {
    font-size: 25px;
}
.how-work-icon-mian {
    padding: 10px 12px;
    width: 20px;
}
.icon {
    max-width: 40px;
    height: 40px;
}h2.why-choose-heading {
    font-size: 25px;
}
h2.footer-img-heading {
    font-size: 18px;
}
}



@media (max-width:767px) {

  .header-inner {
    padding: 0px 20px;
}
.signup-box h2 {
    font-size: 36px;
}

a.signup-btn {
    padding: 12px 36px !important;
    font-size: 16px;
}
a.login-btn {
    padding: 12px 36px !important;
    font-size: 16px;
}
.header-left {
    width: 25% !important;
    margin-left: 10px;
}
.header-right {
    width: 75% !important;
    display: flex;
    gap: 10px;
}

/* ------------ */

.premium-inner {
    padding: 30px 3vw;
}
.premium-right h2 {
    font-size: 15px;
}
.premium-right p {
    font-size: 12px;
}
.premium-left-right {
    border-radius: 15px;
}
.premium-left img {
    height: auto;
}
.premium-left {
    line-height: 0;
    width: 46%;
    overflow: hidden;
}
.premium-right {
    margin: 0 0 0 0;
    width: 54%;
}
.premium-left img {
    height: auto;
    transform: scale(1.1);
}
/* ------------ */

.how-work-inner {
    padding: 20px 3vw;
    gap: 25px;
    display: grid;
}
.how-work-left {
    width: 100%;
}
.how-work-right {
    width: 100%;
}
.how-work-right img {
    width: 100%;
    height: auto;
}
.how-work-outer-right-img img {
    display: none;
}
/* -------------- */
.icon {
    max-width: 50px;
    height: 50px;
}
/* --------------------- */

.how-work-card {
    padding: 15px 20px;
    gap: 20px;
}

.why-choose-card {
    padding: 30px 20px;
}
.why-choose-down {
    position: relative;
    z-index: 1;
    display: grid;
}
.why-choose-down {
    display: grid;
}
.outer-left-img img, .outer-right-img img{
    display: none;
}
.why-choose-card {
    width: auto;
}
.why-choose-inner {
    padding: 10px 3vw 25px;
}
h2.play-now-heading {
    font-size: 25px;
}
.white-btn {
    padding: 12px 36px;
    font-size: 18px;
}
h2.footer-img-heading {
    font-size: 16px;
}
.signup-box {
    padding: 20px;
}
.signup-box .sub-text {
    font-size: 24px;
}
.signup-box h2 {
    font-size: 34px;
}
a.login-btn, a.signup-btn, .white-btn {
    padding: 12px 30px !important;
}

.hero-left {
    margin: 0px;
}


}

.otp-modal-content {
    opacity: 1;
    background: #2E2E2E;
    border-radius: 12px;
}

#otpModal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.6); */
  background: rgb(255 255 255 / 16%);
  font-family: 'chakra-petch';
  justify-content: center;
  align-items: center;
}

#otpModal h2{
  font-family: 'chakra-petch';
}

.otp-modal-content {
  background: #6F7276;
  width: 90%;
  max-width: 400px;
  margin: 15% auto;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  position: relative;
}

.otp-modal-content h2 {
  margin-bottom: 15px;
}

.otp-modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
}

.verify-btn {
  width: 100%;
  padding: 10px;
  background: #FFBF00;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.resend-wrapper {
  margin-top: 10px;
}

.resend-wrapper a {
  color: #fff;
  text-decoration: underline;
}

.otp-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 22px;
  cursor: pointer;
}

.btn.otp-btn {

    border-radius: 35px;

    text-transform: uppercase;

    width: 150px;

    margin: 20px auto;

    font-family: 'chakra-petch';

    font-weight: 600;

    border: 2px outset #000;

}

@media (max-width: 480px) {

  .otp-modal-content {

    padding: 18px;

  }



  .otp-modal-content h2 {

    font-size: 18px;

  }

  #otpModal{

    place-content: center;

  }

}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}