@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none !important;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #575700;
  --secondary-color: #FAFAF0;
  --font-family: "Poppins", sans-serif;
}

body,
html {
  scroll-behavior: smooth;
  background-color: #000 !important;
  -webkit-font-smoothing: antialiased !important;
  overflow-x: hidden;
}

h4{
color: black;
font-weight: 400;
font-size: 18px;
}

.auth-label {
    font-size: 12px;
    color: black;
    text-align: left;
    line-height: 1.1em;
}

a{
font-family: Prompt,sans-serif;
color: #fff;
margin: 0;
}    
.success{color:#0efc99}.pending{color:#b64e00}.failed{color:#ff1b1b}

.logo {
    /* margin-top: 10px; */
    /*color: white; */
    /* margin-bottom: 5px; */
    margin-left: 20px;
}
::-webkit-scrollbar {
  background: rgb(255, 255, 255);
  width: 7px;
}
::-webkit-scrollbar-track {
  display: none;
  max-height: 500px;
  background: #575700;
  border-radius: 50px;
}
::-webkit-scrollbar-thumb {
  background: #575700;
  border-radius: 10px;
}
p {
  font-size: 18px;
}

ul {
  list-style: none;
}
a {
  text-decoration: none !important;
}

nav {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #FAFAF0;
  transition: 0.5s ease;
}

#navbar {
  display: flex;
  justify-content: space-between;
  padding: 0;
  height: 80px;
}

.logo img{
  width: 150px;
  /* width: 120px; */
  padding-top: 20px;
  cursor: pointer;
  opacity: 1;
  transition: 0.5s;
  margin-left: 5px;
}

label .logo:hover {
  opacity: 0.5;
}

nav ul p {
  display: none;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 10px;
  z-index: 1001;
}

nav ul li a {
  z-index: 1001;
  color: #000;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 3px;
  position: relative;
}

nav ul li a:before {
  z-index: -1;
  position: absolute;
  width: 0;
  height: 2px;
  left: 0px;
  bottom: 0px;
  content: "";
  background: #575700;
  transition: all 0.3s;
}

nav ul li a:hover:before {
  width: 100%;
}

nav a:hover {
  color: #575700;
}

.notif_indicator {
  position: relative;
}

.notif_indicator span {
  position: absolute;
  background: red;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  font-weight: bold;
  border: 1px solid #FAFAF0;
}

.center-text{
    text-align: center;
}

nav .nav_login_btns {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav_login_btn {
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 10px;
  border: none;
  outline: none;
  width: 150px;
  border-radius: 5px;
  transition: 0.3s;
  text-align: center;
 
}

.nav_login_btn:hover {
  background: #575700;
}

.nav_signup_btn {
  background: transparent;
  color: #000;
  text-transform: uppercase;
  font-weight: 800;
  padding: 10px 10px;
  border: 2px solid #000;
  width: 120px;
  border-radius: 5px;
  transition: 0.3s;
  text-align: center;
  letter-spacing: .04em; 
}

 .nav_signup_btn:hover {
  background: #575700;
  border: 2px solid #fff;
  color: #FFF;
}

nav ul li ion-icon {
  display: none;
}

nav ion-icon {
  font-size: 28px;
  color: #fff;
}

.mobile_nav_signup {
  display: none;
}

.navbar_mobile {
  display: none;
}

@media (max-width: 530px) {
  .nav_login_btn {
    font-weight: 800;
    padding: 7px 10px;
    width: 120px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 15px;
  }

  .nav_signup_btn {
    display: block;
    font-weight: 800;
    padding: 7px 10px;
    border: 2px solid #000;
    width: 100px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 15px;
    margin-right: 5px;
  }

  nav .nav_login_btns {
    gap: 10px;
  }

  .logo img {
    width: 120px; /* Standard size for mobile */
    height: auto; /* Maintain aspect ratio */
  }
}

@media (max-width: 445px) {
  nav{
    justify-content: space-around;
  }
  .nav_login_btn {
    font-weight: 600;
    padding: 7px 10px;
    width: 105px;
    font-size: 14px;
  }

  .nav_signup_btn {
    display: block;
    display: none;
    font-weight: 600;
    padding: 7px 10px;
    border: 1px solid #000;
    width: 105px;
    font-size: 14px;
  }

  nav {
    padding: 0 20px;
  }

  .logo img {
    width: 120px; /* Standard size for mobile */
    height: auto; /* Maintain aspect ratio */
  }
}

/* Footer */

.footer_mobile {
  position: relative;
  background: #669933;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
  gap: 0;
}

.footer_mobile_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px;
  gap: 50px;
}

.footer_mobile_top a {
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.footer_mobile_btm {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer_mobile_btm p {
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.footer_mobile_btm a {
  color: #fff;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 20px;
}

@media (max-width: 1130px) {
  nav ul li {
    margin: 0 5px;
  }
}

@media (max-width: 1005px) {
  #navbar ul {
    display: none;
  }

  .navbar_mobile_container {
    width: 100%;
    background-color: #fff;
    margin-top: -30px;
    /* margin-bottom: 30px; */
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 2;
  }

  .navbar_mobile {
    width: 100%;
    background: #ffcc00;
    margin-top: -30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: fixed;
    bottom: 0;
  }

  .navbar_mobile div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 20px;
  }

  /* .navbar_mobile img {
    width: 25px;
  } */

  .logo img {
    width: 120px; /* Standard size for mobile */
    height: auto; /* Maintain aspect ratio */
  }

  .navbar_mobile a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .footer_mobile {
    position: relative;
    /* bottom: 30px; */
    left: 0;
    background: #669933;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer_mobile_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px;
    gap: 10px;
  }
  
  .footer_mobile_top a {
    font-size: 14px;
    text-align: center;
    color: #fff;
    text-decoration: none;
  }
  .footer_mobile_btm p {
    font-size: 14px;
    text-align: center;
    color: #fff;
  }

  .footer_mobile_top:hover {
    color: #ffcc00;
  }
  .cashout_mobile_img {
    width: 40px !important;
    margin-bottom: 8px;
  }

  .nav_draw_history {
    display: none;
  }

  .mobile_nav_signup {
    display: flex;
  }
}

@media (max-width: 430px) {
  .cashout_mobile_img {
    width: 30px !important;
    margin-bottom: 5px;
  }

  .logo img {
    width: 120px; /* Standard size for mobile */
    height: auto; /* Maintain aspect ratio */
  }
}

@media (max-width: 380px) {
 
  .navbar_mobile div {
    padding: 0;
  }

  .navbar_mobile {
    padding: 0 20px;
  }

  .logo img {
    width: 120px; /* Standard size for mobile */
    height: auto; /* Maintain aspect ratio */
  }
}

/* Index Page */

#hero {
  background: #000;
  padding: 50px 0 0px 0;
}

#slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* Assuming 3 slides, adjust based on the number of slides */
}

.slides-container img {
  margin-top: 30px;
  width: 100%;
}

.slides {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
  overflow: hidden;
}

#dot {
  margin: 20px auto 0 auto;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #575700;
  background: transparent;
  margin: 10px 5px;
  border-radius: 100px;
}

.dot.active {
  background: #ffcc00;
  box-shadow: inset 0 0 35px #ccbfa3, 1px 1px 5px 0 #ccc;
}

@media (max-width: 567px) {
  #slider {
    width: 100%;
  }
}

.hero_cards {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero_card {
  cursor: pointer;
}

.hero_card img:hover {
  transform: translateY(-5px);
}

.hero_card img {
  width: 200px;
  border-radius: 10px;
  transition: 0.3s;
}

.hero_card p {
  font-size: 20px;
  font-weight: bold;
}

.container_wrap {
  margin: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.count_div_wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

@media (max-width: 1090px) {
  .count_div {
    width: fit-content;
  }
}

@media (max-width: 1500px) {
  .hero_card img {
    width: 240px;
  }
}
@media (max-width: 1200px) {
  .container_wrap,
  .container {
    margin: 0 20px;
  }
  .hero_card img {
    width: 230px;
  }
}
@media (max-width: 991px) {
  .hero_cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  .count_div_wrap {
    flex-direction: column;
    gap: 30px;
  }
  .count_div {
    width: 400px;
    height: 200px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .hero_img {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .hero_card img {
    width: 200px;
  }
}
@media (max-width: 470px) {
  .hero_card img {
    width: 150px;
  }
  .count_div_wrap {
    margin-top: -120px;
  }
  .count_div {
    height: fit-content;
    width: 100%;
    padding: 10px 20px;
  }
  .count_div h4 {
    font-size: 18px;
  }
  .count_div h2 {
    font-size: 60px;
  }
}
@media (max-width: 440px) {
  .hero_cards {
    gap: 10px;
  }
}
@media (max-width: 380px) {
  .count_div h4 {
    font-size: 16px;
  }
  .count_div h2 {
    font-size: 50px;
  }
}
@media (max-width: 325px) {
  .count_div h4 {
    font-size: 16px;
  }
  .count_div h2 {
    font-size: 40px;
  }
}

/* Sign Up Page */

.form_container {
  display: flex;
  background: #fff;
  width: fit-content;
  height: fit-content;
  border-radius: 20px;
  padding: 50px 50px 30px 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 100px auto;
}
.form_wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.form_wrapper .title {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  color: #000;
}
.form_wrapper .title h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.form_wrapper .radio {
  display: none;
}
.form_wrapper .tab {
  width: 50%;
  border: 1px solid #000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  user-select: none;
  cursor: pointer;
  color: #000;
}
.form_wrapper .tab.login_tab {
  border-right: none;
  background: #000;
  color: #575700;
}

.form_wrapper .tab.signup_tab {
  border-left: none;
  background: #000;
  color: #fff;
}

.form_wrapper .form_wrap {
  display: flex;
  width: 200px;
  flex: 0 0 100%;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.form_wrapper .form_wrap .form_field {
  width: 100%;
  flex: 0 0 100%;
  transition: all 0.5s ease;
}
.form_wrapper .form_wrap .form_field .input_group {
  width: 100%;
  margin-bottom: 30px;
}
.form_wrapper .form_wrap .form_field .input_group .input {
  width: 100%;
  border: 1px solid #000;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.form_wrapper .form_wrap .form_field .input_group .input::placeholder {
  color: #000;
  font-weight: bold;
}
.form_wrapper .form_wrap .form_field .input_group .textarea {
  width: 100%;
  border: 1px solid #000;
  background: transparent;
  height: 120px;
  padding: 10px 15px 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.form_wrapper .form_wrap .form_field .input_group select {
  width: 100%;
  border: 1px solid #000;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
  font-weight: bold;
}
.form_wrapper .form_wrap .form_field .input_group select option {
  font-weight: bold;
  background: #000;
  color: #fff;
}
.form_wrapper .form_wrap .form_field .input_group select option:hover {
  background: #575700 !important;
}

.form_wrapper .form_wrap .form_field .input_group .textarea::placeholder {
  color: #575700;
  font-weight: bold;
}

.input_no {
  position: relative;
}

.input_no input {
  padding-left: 60px !important;
  border-radius: 10px;
}

.flag {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 30px;
  z-index: 10;
}

.form_wrapper .form_wrap .form_field .forgot {
  display: block;
  margin-top: -15px;
  text-align: left;
  color: #000;
  font-weight: bold;
}

#signup_sec {
  display: grid;
  place-items: center;
  padding-top: 100px;
  width: 100%;
  min-height: 100vh;
  background: #000;
}

.login_btn {
  width: 100%;
  height: 60px;
  color: #fff;
  background: #000;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 20px auto 15px auto;
  font-weight: 800;
  font-size: 20px;
  transition: 0.3s;
}

.login_btn:hover {
  background: #575700;
  color: #000;
}

.submit_btn {
  width: 100%;
  height: 60px;
  color: #575700;
  background: #000;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 20px auto 15px auto;
  font-weight: 800;
  font-size: 20px;
  transition: 0.3s;
}

.submit_btn:hover {
  background: #FAFAF0;
}

.signup_btn {
  width: 100%;
  height: 60px;
  color: #fff;
  background: #FAFAF0;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 20px auto 15px auto;
  font-weight: 800;
  font-size: 20px;
  transition: 0.3s;
}

.signup_btn:hover {
  background: #575700;
  color: #000;
}

.signup_btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.signup_btn:disabled:hover {
  background: #ccc;
}

.signin_cta {
  margin-top: 20px;
  font-size: 16px;
}

.signin_cta a {
  font-weight: bold;
  color: #575700;
}

.agree_signup {
  text-align: left;
  font-weight: bold;
  color: #575700;
}

.agree_signup input[type="checkbox"] {
  position: relative;
  border: 2px solid #575700;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
  opacity: 0.5;
  transition: 0.3s;
}

.agree_signup input[type="checkbox"]:hover {
  opacity: 1;
}

.agree_signup input[type="checkbox"]:checked {
  background-color: #575700;
  opacity: 1;
}

.agree_signup input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

@media (max-width: 1160px) {
  #signup {
    padding-bottom: 100px;
  }
  #signup .row {
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
  }
  #signup .row h1 {
    margin: 0 auto 70px auto;
  }
  .back_hp {
    display: none;
  }
}

@media (max-width: 645px) {
  .formfield {
    width: 100%;
  }

  .form_text_split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  #signup .row h1 {
    font-size: 30px;
    max-width: 400px;
    margin: 0 auto 40px auto;
  }
}

@media (max-width: 460px) {
  .form_container {
    padding: 80px 30px 30px 30px;
    margin: auto 20px;
  }
}

/* Popups */

#popup {
  display: grid;
  place-items: center;
  padding-top: 50px;
  width: 100%;
  height: 100%;
  background: #000;
}

.popup_container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.popup_box {
  width: fit-content;
  height: fit-content;
  padding: 50px 50px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

.popup_box h2 {
  padding: 20px 30px 0 30px;
  font-weight: 800;
  text-align: center;
  margin: auto;
}

/* .winner_text {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  margin-top: 30px;
} */

.popup_head_text {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.popup_ticket_no {
  font-size: 22px;
  font-weight: 500;
  margin-top: -10px;
}

.popup_phone_no {
  font-size: 30px;
  font-weight: 800;
}

.popup_box .popup_logo {
  max-width: 100px;
  margin-bottom: 30px;
}

.popup_cup_img {
  max-width: 300px;
}

.popup_check_img {
  max-width: 150px;
}

.popup_end_text {
  font-size: 22px;
  font-weight: bold;
  line-height: 24px;
}

.cashout_btn {
  width: 230px;
  height: 60px;
  border-radius: 50px;
  background-color: #575700;
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  border: 5px solid #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cashout_btn .flare {
  background: linear-gradient(#ffffffc8, rgba(204, 255, 102, 0.54));
  position: absolute;
  right: -20px;
  top: -50px;
  opacity: 0.8;
  transform: rotate(-35deg);
  width: 100px;
  height: 200px;
  transition: all 1s cubic-bezier(0.175, 0.52, 0.165, 1);
  z-index: -1;
}

.play_again_btn {
  background: #575700;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 30px;
  letter-spacing: 1px;
  width: 370px;
  height: 60px;
  font-size: 24px;
  border: none;
  outline: none;
  border-radius: 10px;
  transition: 0.3s;
}

.play_again_btn:hover {
  background: #57570060;
  color: #000;
}

.popup_buttons .play_again_btn {
  width: 230px;
}

.popup_sec_btn {
  background: transparent;
  color: #575700;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 30px;
  letter-spacing: 1px;
  width: 230px;
  height: 60px;
  font-size: 24px;
  border: 3px solid #575700;
  outline: none;
  border-radius: 10px;
  transition: 0.3s;
}

.popup_buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 70px auto 30px auto;
}

@media (max-width: 990px) {
  .popup_container {
    padding: 100px 30px 50px 30px;
  }
}

@media (max-width: 630px) {
  .popup_buttons {
    flex-direction: column;
    gap: 30px;
    margin: 70px auto 30px auto;
  }
}

@media (max-width: 530px) {
  .popup_box {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .popup_box {
    padding: 50px 30px;
  }

  .play_again_btn {
    padding: 10px 30px;
    width: 300px;
  }
}

@media screen and (max-width: 360px) {
  .play_again_btn {
    padding: 0px;
    font-size: 16px;
    width: 200px;
  }
}

/* Draw History */

#draw_history {
  background: #000;
  margin: 150px auto;
  display: grid;
  place-items: center;
}

#draw_history h2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  
}

.draw_container_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100vmin;
  height: fit-content;
  margin: 50px auto 0 auto;
}

.draw_container {
  width: 100%;
  background: #fff;
  padding: 30px;
}

.draw_hst_play_container {
  width: 100%;
  background: #fff;
  padding: 30px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.draw_hst_play_container h4 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
}

.draw_container h4 {
  font-weight: bold;
  text-transform: uppercase;
}

.active_ticket {
  border-bottom: 1px solid #000;
  padding: 0 30px 20px 30px;
}

.active_ticket_split {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 300px;
}

.ticket_history {
  padding: 30px 30px 0 30px;
}

.ticket_history_split {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.col1,
.col2,
.col3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.col1 span,
.col2 span,
.col3 span {
  padding: 10px 0 10px 20px;
}

.col1 span:nth-child(odd) {
  background: #57570040;
}
.col2 span:nth-child(odd) {
  background: #57570060;
}

.col1 span:nth-child(even) {
  background: #FAFAF0;
}
.col2 span:nth-child(even) {
  background: #57570040;
}

.col_head {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.loss_icon {
  color: red;
}

.win_col {
  /* background: green; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  border-bottom: 1px solid #fff;
  color: green;
  position: relative;
}

.win_col::before {
  font-family: "FontAwesome";
  content: "\f091";
  position: absolute;
  right: 20px;
  color: green;
}

.loss_col::before {
  font-family: "FontAwesome";
  content: "\f057";
  position: absolute;
  right: 20px;
  color: #fff;
}

.loss_col {
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  border-bottom: 1px solid #fff;
  position: relative;
  color: #fff;
}

.view_all_btn {
  text-transform: uppercase;
  color: #575700;
  border: 1px solid #575700;
  padding: 10px 30px;
  background: transparent;
  font-weight: 800;
  margin: 30px auto 10px auto;
  font-size: 18px;
  border-radius: 10px;
}

@media (max-width: 840px) {
  .active_ticket_split {
    gap: 20px;
  }
}

@media (max-width: 730px) {
  .draw_container_wrap {
    margin: 50px auto;
  }
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 50px;
  }
}

@media (max-width: 545px) {
  .col1 p:nth-child(1) {
    max-width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 460px) {
  .draw_container_wrap {
    margin: 50px auto;
  }
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 10px;
  }
}
@media (max-width: 360px) {
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 0 !important;
  }
}

/* About Page */

.about_text {
  margin-top: 170px;

  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.about_text div {
  max-width: 900px;
}

/* Cashout List Table */

#cashout {
  margin-top: 70px;
}

.cashout_list_container {
  background: #fff;
  padding: 50px 100px;
  width: 80%;
  margin-top: 100px;
}

#cashout h2 {
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #575700;
  margin-bottom: 40px;
}

.cashout_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cashout_input_group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cashout_input_group:nth-child(4) {
  margin-bottom: 50px;
}

.cashout_input_group p {
  font-weight: 800;
  color: #575700;
  margin-bottom: 5px;
}

.cashout_input_group input,
.cashout_input_group select {
  width: 100%;
  height: 50px;
  border: 2px solid #575700;
  border-radius: 10px;
  padding-left: 20px;
}

.cashout_input_group .input::placeholder {
  color: #575700;
}

@media screen and (max-width: 700px) {
  .cashout_list_container {
    padding: 50px;
    width: 100%;
  }
}

@media screen and (max-width: 430px) {
  .cashout_list_container {
    padding: 50px 20px;
    width: 100%;
  }
}

@media (max-width: 470px) {
  section {
    margin-bottom: 100px;
  }
}

/* Dashboard */

.dash_cards {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.dash_card {
  cursor: pointer;
}

.dash_card img:hover {
  transform: translateY(-5px);
}

.dash_card img {
  width: 350px;
  transition: 0.3s;
  border-radius: 10px;
}

.dash_card p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.dash_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  max-width: 1400px;
}

.dash_header {
  text-align: left;
  color: #fff;
  font-size: 24px;
}

.dash_header span {
  font-weight: bold;
}

.dash_header h3 {
  text-decoration: underline !important;
}

.dash_header p {
  font-size: 24px;
  margin-top: 10px;
}

.user_icon {
  color: #000;
  font-size: 40px;
}

.dd {
  z-index: 1;
  position: relative;
  display: inline-block;
}

.dd-a {
  position: relative;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  color: #000;
}
.dd input {
  top: 0;
  opacity: 0;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}
.dd input:hover {
  cursor: pointer;
}
.dd input:checked:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
.dd input:checked ~ .dd-c {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
}
.dd-a span {
  color: #575700;
}

@media (max-width: 991px) {
  .dash_cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .dash_img {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .dash_card img {
    width: 200px;
  }
}
@media (max-width: 470px) {
  .dash_card img {
    width: 150px;
  }
}
@media (max-width: 440px) {
  .dash_cards {
    gap: 10px;
  }
}

/* Profile */

#profile {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  padding-top: 150px;
  background: #575700;
}

#profile h3 {
  color: #fff;
  text-transform: uppercase;
  text-decoration: underline !important;
}

.profile_header {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  width: fit-content;
}

.profile_header::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 2px;
  bottom: 20px;
}

.profile_header label {
  position: relative;
  width: 300px;
}

.profile_header_slider {
  position: absolute;
  background: #ccff66;
  width: 130px;
  height: 10px;
  border-radius: 20px;
  left: 0;
  bottom: 16px;
  transition: 0.3s;
  z-index: 1;
}

#profile .profile_form {
  width: 100%;
  margin-top: 40px;
}

.profile_form .radio {
  display: none;
}
.profile_form .tab {
  border: 1px solid #333300;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  user-select: none;
  cursor: pointer;
  color: #333300;
}

.profile_form .form_wrap {
  display: flex;
  width: 100%;
  flex: 0 0 100%;
  transition: transform 0.3s ease, opacity 0.2s ease;
  margin-top: 40px;
}
.profile_form .form_wrap .form_field {
  width: 100%;
  flex: 0 0 100%;
  transition: all 0.5s ease;
}

.profile_form .tab.info_tab {
  border-right: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.profile_form .tab.password_tab {
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.profile_form #info:checked ~ .form_wrap .password_form,
.profile_form #info:checked ~ .form_wrap .account_form {
  display: none;
}

.profile_form #info:checked ~ .profile_header .profile_header_slider {
  /* transform: translateX(0); */
  left: 0;
}

.profile_form #password:checked ~ .profile_header .profile_header_slider {
  /* transform: translateX(150%); */
  left: 34%;
}

.profile_form #account:checked ~ .profile_header .profile_header_slider {
  /* transform: translateX(300%); */
  left: 68%;
}

.profile_form .info_tab,
.profile_form .password_tab,
.profile_form .account_tab {
  color: #fff;
  text-transform: uppercase;
  text-align: left;
}
.profile_form #info:checked ~ .profile_header .info_tab {
  color: #669933;
}

.profile_form #password:checked ~ .profile_header .password_tab {
  color: #669933;
}

.profile_form #account:checked ~ .profile_header .account_tab {
  color: #669933;
}

.profile_form #info:checked ~ .info_tab {
  border-color: transparent;
  background: #575700;
  z-index: 1;
  color: white;
}
.profile_form #info:checked ~ .title .password,
.profile_form #info:checked ~ .title .account {
  display: none;
}
.profile_form #info:checked ~ .form_wrap {
  transform: translateX(0);
}
.profile_form #info:checked ~ .form_wrap .password_form,
.profile_form #info:checked ~ .form_wrap .account_form {
  opacity: 0;
}

.profile_form #password:checked ~ .password_tab {
  border-color: transparent;
  background: #575700;
  z-index: 1;
  color: white;
}

.profile_form #account:checked ~ .account_tab {
  border-color: transparent;
  background: #575700;
  z-index: 1;
  color: white;
}
.profile_form #password:checked ~ .title .info,
.profile_form #password:checked ~ .title .account {
  display: none;
}
.profile_form #account:checked ~ .title .info,
.profile_form #account:checked ~ .title .password {
  display: none;
}
.profile_form #password:checked ~ .form_wrap {
  transform: translateX(-100%);
}
.profile_form #account:checked ~ .form_wrap {
  transform: translateX(-200%);
}
.profile_form #password:checked ~ .form_wrap .info_form,
.profile_form #password:checked ~ .form_wrap .account_form {
  opacity: 0;
}
.profile_form #account:checked ~ .form_wrap .info_form,
.profile_form #account:checked ~ .form_wrap .password_form {
  opacity: 0;
}

#profile .profile_form .form_wrap .form_field .input_group {
  width: 100%;
  margin-bottom: 30px;
}
#profile .profile_form .form_wrap .form_field .input_group select {
  width: 100%;
  border: 1px solid #ffffff;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
  color: #fff;
}
#profile .profile_form .form_wrap .form_field .input_group select option {
  color: #000;
}
#profile .profile_form .form_wrap .form_field .input_group .input {
  width: 100%;
  border: 1px solid #ffffff;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
  color: #fff;
}
#profile .profile_form .form_wrap .form_field .input_group .input::placeholder {
  color: #ffffff;
  font-weight: bold;
}

#profile .profile_form .form_wrap .form_field .input_group p {
  line-height: 20px;
  color: #fff;
}

.profile_update_btn {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background: #669933;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
}

@media (max-width: 1000px) {
  .profile_header {
    flex-direction: column;
    gap: 0;
  }
  .profile_header label {
    margin-bottom: -20px !important;
  }
  .profile_header::after {
    display: none;
  }

  .profile_header_slider {
    display: none;
  }
}

/* Support */

.support_form {
  margin-top: 50px;
}

.support_form .input_group {
  width: 100%;
  margin-bottom: 30px;
}
.support_form .input_group select {
  width: 100%;
  background: #fff !important;
  color: #575700 !important;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.support_form .input_group select option {
  color: #000;
}
.support_form .input_group .support_input {
  width: 100%;
  background: #fff;
  color: #575700;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.support_form .input_group .support_input::placeholder {
  color: #575700;
}
.support_form .input_group .support_textarea {
  width: 100%;
  background: #fff;
  color: #575700;
  height: 200px;
  padding: 15px;
  outline: none;
  transition: all 0.3s linear;
}
.support_form .input_group .support_textarea::placeholder {
  color: #575700;
}

.support_form .input_group p {
  line-height: 20px;
  color: #fff;
}

/* Subscribe */

.subscribe {
  margin: 60px 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscribe p {
  /* max-width: 600px; */
  text-align: center;
  color: #fff;
  font-size: 20px;
}

.subscribe p span {
  font-weight: 800;
}

.subscribe button {
  background: #669933;
  color: #575700;
  text-transform: uppercase;
  width: 400px;
  height: 60px;
  font-weight: 800;
  font-size: 24px;
  border-radius: 10px;
  margin: 30px auto;
}

@media (max-width: 460px) {
  .subscribe button {
    width: 250px;
  }
  .container_wrap {
    margin: 0 20px;
  }
  .subscribe p {
    font-size: 16px;
  }
  .subscribe {
    margin: 20px 20px 0 20px;
  }

  .logo img {
    width: 120px;
    margin-top: 15px;
    margin-left: 10px;
}
}

@media (max-width: 390px) {
  /* label .logo {
        width: 78px;
        padding-top: 10px;
        margin-left: 10px;
  } */
  .logo img {
    width: 120px;
    margin-top: 15px;
    margin-left: 10px;
}
}

@media (max-width: 380px) {
  .subscribe button {
    width: 250px;
  }
  .subscribe {
    padding: 20px 20px 0 20px;
  }

  
}

@media (max-width: 395px) {
  label .logo {
    width: 30px;
    /* padding-top: 5px; */
  }
  
}

.load_more_btn {
  color: #fff;
  border: 1px solid #000;
  padding: 8px 25px;
  background: transparent;
  font-weight: 800;
  margin: 30px auto 10px auto;
  font-size: 20px;
  border-radius: 10px;
}

.load_more_btn:hover {
  color: #000;
  background: #575700;
  padding: 8px 25px;
  font-weight: 800;
  margin: 30px auto 10px auto;
  font-size: 20px;
  border-radius: 10px;
}


/*Nav*/

.dd-c {
  display: block;
  position: absolute;
  top: 50px;
  left: -100px;
  background-color: rgba(255, 255, 255, 0.3); /* Transparent background */
  backdrop-filter: blur(10px); /* Apply the blur */
  -webkit-backdrop-filter: blur(10px); /* Safari */
  border-radius: 5px;
  padding: 8px 10px;
  width: auto;
  height: auto;
  transform: scaleY(0);
  transform-origin: top left;
  transition-duration: 0.2s;
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: top left;
  -webkit-transition-duration: 0.2s;
}

.dd-c_row {
  margin-bottom: 5px;
  word-break: keep-all;
  white-space: nowrap;
  display: block;
  position: relative;
}

.dd-c_row a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 5px;
  background: white;
  color: #FAFAF0;
}

/* Notification */
.notice {
  position: relative;
  margin: 5px;
  background: #fff;
  padding: 10px 10px 10px 10px;
  border-left: 4px solid #DDD;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
}

.notice:before {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: -10px;
  background-color: #DDD;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.MTN {
  border-color: #ffcc00;
}

/* .info:before {
  content: "!";
  background-color: #ffca00;
} */

.AIRTEL {
  border-color: #E8242D;
}

/* .airtel:before {
  content: "!";
  background-color: #E8242D;
} */


.GLO {
  border-color: #006837;
}

/* .info:before {
  content: "!";
  background-color: #ffca00;
} */

.9MOBILE {
  border-color: #006E52;
}

/* .info:before {
  content: "!";
  background-color: #ffca00;
} */

.dd-c_row a:hover span {
  color: #fff;
}

.more{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #669933;
  width: 200px;
  margin-left: 5px;
  margin-right: 5px;
}

.more a{
  color: #fff;
  text-decoration: none;
}

.notif_col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5 0px;
}

.notif_row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  width: 170px;
  height: 70px;
}

.notif_row_split {
  display: flex;
  flex-direction: column;
}

.notif_row_split img {
  width: 40px;
  border-radius: 5px;
  margin-top: 5px;
}

.notif_header {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
/*  align-items: center;
  justify-content: center;*/
}

.notif_phone,
.notif_amount {
  font-size: 16px;
}

.notif_time {
  font-size: 14px;
  color: black;
}

/* Burger Menu Button Styles */
.burger-menu {
  display: none; /* Hidden by default */
  position: fixed;
  top: 30px;
  left: 10px;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001; /* Ensure it appears above other content */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
}

/* Sidebar Styles */
.sidebar {
  display: none; /* Hide by default */
  position: fixed; /* Position it fixed */
  top: 0;
  right: 0;
  width: 250px; /* Set width */
  height: 100%; /* Full height */
  background: #FAFAF0; /* Background color */
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  z-index: 1001; /* Ensure it's on top */
}

.sidebar.active {
  display: block; /* Show when active */
}

.sidebar img{
  display: none;
  width: 30px;
  padding: 5px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  padding: 0px 15px 0px 15px;
}

.sidebar a {
  color: #000;
  text-decoration: none;
  display: block;
}

.sidebar a:hover {
  background-color: none;
}

.close-btn {
  background: none;
  border: none;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  float: right;
}

/* Show burger menu on mobile */
@media screen and (max-width: 768px) {
  .burger-menu {
    display: flex; /* Show burger menu button on mobile */
  }

  .sidebar {
    left: 0; /* Show sidebar on mobile */
  }
}

/* Hide sidebar on desktop */
@media screen and (min-width: 769px) {
  .burger-menu {
    display: none; /* Show burger menu button on mobile */
  }
  .sidebar {
    display: none; /* Hide sidebar on desktop */
  }
}