@font-face {
  font-family: "Changa One";
  src: url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
}
:root {
  --c_primary: #C76D16;
  --c_primaryDark: #915019;
  --c_primaryLt:#fce0b0;
  --c_success: #209B5E;
  --c_success2:#1D7505;
  --c_black:#000000;
  --c_dark: #131313;
  --c_white: #ffffff;

  --bg_primary: #bd7236;
  --bg_primaryLt:#FFF2CF;
  --bg_primaryLt2: #fff0cd;
  --bg_powderblue: #39c9bc;
  --bg_dark: #bd7236;
  --bg_white: #ffffff;

  --fs_12:0.75rem;
  --fs_16:1rem;
  --fs_18:1.125rem;
  --fs_32:2rem;
}

body {
  font-family: "Changa One", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
h1,h2,h3,h4 {font-weight:bold}
.c_primary{color: var(--c_primary);}
.c_primaryDark{color: var(--c_primaryDark);}
.c_primaryLt{color: var(--c_primaryLt);}
.c_success{color: var(--c_success);}
.c_success2{color: var(--c_success2);}
.c_black{color: var(--c_black);}
.c_dark{color: var(--c_dark);}
.c_white{color: var(--c_white);}
.bg_primary{background-color: var(--bg_primary);}
.bg_primaryLt{background-color: var(--bg_primaryLt);}
.bg_primaryLt2{background-color: var(--bg_primaryLt2);}
.bg_powderblue{background-color: var(--bg_powderblue);}
.bg_dark{background-color: var(--bg_dark);}
.bg_white{background-color: var(--bg_white);}
.bg_successGrd{
  color: var(--c_white);
  background-image: -webkit-gradient(linear,left top, right top,from(#1f9a5d),to(#0b3721));
  background-image: -o-linear-gradient(left,#1f9a5d,#0b3721);
  background-image: linear-gradient(to right,#1f9a5d,#0b3721);
}
.bg_successGrdLt{
  background-image: -webkit-gradient(linear,left top, right bottom,from(#38c3c6),to(#3dd5ac));
  background-image: -o-linear-gradient(left top,#38c3c6,#3dd5ac);
  background-image: linear-gradient(to right bottom,#38c3c6,#3dd5ac);
}
.fs_12{font-size: var(--fs_12);}
.fs_16{font-size: var(--fs_16);}
.fs_18{font-size: var(--fs_18);}
.fs_32{font-size: var(--fs_32);}
@media(min-width:1200px){
  .container{
    max-width: 71.25rem;
  }
}
@media(min-width:1800px){
  html{
    font-size: 20px;
  }
}

/* _____________________ start login page _____________________ */
.login_main{
  max-width: 100vw;
  min-height: 100svh;
  padding: 5rem 0rem;
  overflow-x: hidden;
}
.bg_main{
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.bg_main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.bg_main .container {
  position: relative;
  z-index: 2;
}
.login_content{
  max-width: 23.5rem;
  margin: auto;
}
.logo_box{
  max-width: 100%;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.logo_bg{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120%;
}
.logo_img{
  position: relative;
  width: 100%;
}
.login_main .logo_box{
  width: 15.625rem;
  max-width: 100%;
  margin: auto;
  margin-bottom: 1.8rem;
}
.form-control{
  font-size: var(--fs_18);
  padding: 0.34em 1em;
  border-color: var(--bg_primaryLt2);
  background-color: var(--c_primaryLt);
  -webkit-box-shadow: inset 0rem 0rem 0.3125rem var(--c_primary);
          box-shadow: inset 0rem 0rem 0.3125rem var(--c_primary);
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: var(--c_primary);
  box-shadow: 0 0 0 0.25rem rgba(199, 109, 22, 0.25);
}
.feature-badge .badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2c9ad8, #8c44db);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}
.bg-primary {
background-color: #bd7236;
color: #ffffff;
}
.id_inp{
  padding-right: 2.5rem;
  background-image: url("../img/icon-edit.png");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}
.pwd_inpItem {
  position: relative;
}
.pwd_inpItem .form-control{
  padding-right: 2.5rem;
}
.pwd_inpItem .pwd_tglBtn {
  color: var(--c_primary);
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 2.5rem;
  max-width: 2.5rem;
  height: 100%;
  border: none;
  background-color: transparent;
}
.pwd_inp[type="text"] ~ .pwd_tglBtn .fa-eye,
.pwd_inp[type="password"] ~ .pwd_tglBtn .fa-eye-slash{
  display: none;
}
.pwd_inp[type="text"] ~ .pwd_tglBtn .fa-eye-slash{
  display: initial;
}
.btn_act{
  font-size: var(--fs_18);
  padding: 0.7em 1.5em;
  background-repeat: no-repeat,no-repeat,repeat-x;
  background-size: contain;
  background-position: left center,right center,center;
  border: none;
  border-radius: 0.9em;
  -webkit-box-shadow: 0em 0.3em 0.2em rgba(0, 0, 0, 0.25);
          box-shadow: 0em 0.3em 0.2em rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  text-decoration: none;
}
.btn_act:hover {
  -webkit-transform: translateY(-0.1em);
      -ms-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
  -webkit-box-shadow: 0em 0.4em 0.3em rgba(0, 0, 0, 0.3);
          box-shadow: 0em 0.4em 0.3em rgba(0, 0, 0, 0.3);
}
.btn_act:active{
  -webkit-transform: translateY(0.1em);
      -ms-transform: translateY(0.1em);
          transform: translateY(0.1em);
  -webkit-box-shadow: 0em 0em 0.2em rgba(0, 0, 0, 0.25);
          box-shadow: 0em 0em 0.2em rgba(0, 0, 0, 0.25);
}
.mb5 {
padding:20px;
}
.btn_warning{
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--c_primary);
  background-image: url("../img/btn_warning_left.png"),
                    url("../img/btn_warning_right.png"),
                    url("../img/btn_warning_middle.png");
  color: var(--c_primaryDark);
  font-weight: 600;
}
.btn_success{
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--c_success);
  background-image: url("../img/btn_success_left.png"),
                    url("../img/btn_success_right.png"),
                    url("../img/btn_success_middle.png");
  color: var(--c_white);
  font-weight: 600;
}
label.error{
  font-size: var(--fs_12);
  color: var(--bs-danger);
}
/* _____________________ end login page _____________________ */

/* _____________________ new sections for landing page _____________________ */
/* Game Cards */
.game-icon {
  width: 60px;
  height: 60px;
  background-color: var(--c_primary);
  color: var(--c_white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.content_box:hover .game-icon {
  transform: scale(1.1);
}

/* Counter boxes */
.counter-box {
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
}
.counter-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.3);
}

/* QR Code section styling */
.qr-code-wrapper {
  padding: 15px;
  background: var(--bg_white);
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px dashed var(--c_primary);
  transition: all 0.3s ease;
}

.qr-code-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Steps numbers */
.steps-number {
  position: absolute;
  top: -50px;
  right: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--c_primary);
  color: var(--c_white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

/* Accordion styling */
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--c_primaryLt);
}

.accordion-button:not(.collapsed) {
  color: var(--c_primary);
  background-color: transparent;
  font-weight: 600;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C76D16' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C76D16' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Animation for content boxes */
.content_box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  padding:20px;
}

.content_box.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Header scroll effect */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fs_32 {
    font-size: 1.5rem;
  }
  .fs_18 {
    font-size: 1rem;
  }
  .hero_section {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .content_box {
    padding: 1rem;
  }
  .btn_app img {
    height: 40px;
  }
  
  .game-icon {
    width: 50px;
    height: 50px;
  }
  
  .counter-box {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .hero_section .logo_box {
    width: 12rem;
    margin-bottom: -1rem;
  }
  
  .box_md {
    padding: 1.5rem 1rem;
  }
  
  .counter-box {
    margin-bottom: 15px;
  }
}

/* _____________________ start register page _____________________ */
.content_box{
  padding: 1.5rem;
  border-radius: 0.8rem;
  background-color: var(--bg_primaryLt);
  border: 0.3rem solid var(--c_primaryLt);
  -webkit-box-shadow:inset 0rem 0rem 0.2rem rgba(0, 0, 0, 0.08), 0rem 0.05rem 0.25rem rgba(0, 0, 0, 0.50);
          box-shadow:inset 0rem 0rem 0.2rem rgba(0, 0, 0, 0.08), 0rem 0.05rem 0.25rem rgba(0, 0, 0, 0.50);
  background-image: url("../img/corner.svg"),url("../img/corner.svg"),url("../img/corner.svg"),url("../img/corner.svg");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: -0.1rem -0.1rem,right -0.1rem top -0.1rem,right -0.1rem bottom -0.1rem,left -0.1rem bottom -0.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}
.box_md{
  padding: 2rem;
  border-radius: 1.2rem;
  border-width: 0.4rem;
  background-size: 1.5rem;
  background-position: -0.12rem -0.12rem,right -0.12rem top -0.12rem,right -0.12rem bottom -0.12rem,left -0.12rem bottom -0.12rem;
}
.register_box{
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.title_box{
  font-size: var(--fs_18);
  color: var(--c_white);
  text-align: center;
  line-height: 1;
  background-image: url("../img/title-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 1.8em 0.3em 0.9em;
}
.register_title{
  margin-top: -4.4rem;
  margin-bottom: 1rem;
}
/* _____________________ end register page _____________________ */

/* _____________________ start home page _____________________ */
/* ... start header section ... */
.header {
  padding: 1rem 0rem;
  background-color: var(--bg_dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header_logo {
  width: 120px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.header_backDrop {
  display: none;
}

.menu_toggleBtn {
  color: var(--c_white);
}

.header .navbar-nav {}

.header .nav-link {
  color: var(--c_primaryLt);
  font-size: var(--fs_16);
  padding: 0px !important;
  margin: 0rem 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.header .nav-link:hover,
.header .nav-link.active {
  color: var(--c_white);
}
.header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c_primary);
  transition: width 0.3s ease;
}
.header .nav-link:hover::after,
.header .nav-link.active::after {
  width: 100%;
}

.inline_img {
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}

.social_btns .btn {
  font-size: 1.75rem;
  padding: 0.5em;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

@media (max-width: 1199.98px) {
  .header_logo{
    width: 100px;
    height: auto;
  }
  .header.active_header .header_backDrop {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0rem;
    left: 0rem;
    right: 0rem;
    bottom: 0rem;
    background-color: #00000080;
  }

  .header_navContent {
    position: fixed;
    z-index: 1000;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: var(--bg_dark);
    width: 22.5rem;
    max-width: 100%;
    padding: 1rem 1.2rem;
  }

  .header .header_navContent {
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    overflow-y: auto;
  }

  .header.active_header .header_navContent {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  .header_navContent .navbar-toggler {
    display: block;
    margin-left: auto;
  }

  .header .navbar-nav {
    padding-right: 0rem;
    padding-top: 1rem;
  }

  .header .nav-item {
    margin-bottom: 0.75rem;
  }

  .header .nav-link {
    margin: 0rem;
    padding: 0.5rem !important;
    border-radius: 50rem;
    text-align: center;
  }

  .header .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }

  .header_socialBtns {
    margin-top: 1rem;
    text-align: center;
  }
}

/* ... end header section ... */

/* ... start hero section ... */
.main{
  max-width: 100vw;
  overflow: hidden;
}
.hero_section{
  padding-top: 3rem;
  padding-bottom: 5rem;
  position: relative;
}
.hero_content{
  -webkit-transform: translateY(2rem); /* Changed from 3rem to 2rem */
      -ms-transform: translateY(2rem);
          transform: translateY(2rem);
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero_section {
    min-height: 90vh;
    display: flex;
    align-items: center;
  }
}

.hero_section .logo_box {
  width: 15.625rem;
  max-width: 100%;
  margin: auto;
  margin-bottom: 2rem; /* Changed from -1.5rem to 2rem to increase spacing on desktop */
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 576px) {
  .hero_section .logo_box {
    width: 12rem;
    margin-bottom: 1rem;  /* Changed from -1rem to 1rem to increase spacing */
  }
}

.hero_section .logo_bg {
  width: 150%;
}
.hero_section .content_box{
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 1rem; /* Added margin-top for additional spacing */
}
/* ... end hero section ... */

/* ... start about section ... */
.about_section{
  padding: 5.5rem 0rem 0rem;
}
.btn_app{
  padding: 0rem;
  outline: none;
  border: none;
  transition: all 0.3s ease;
}
.btn_app:hover {
  transform: translateY(-5px);
}
.btn_app:active{
  -webkit-transform: scale(0.98);
      -ms-transform: scale(0.98);
          transform: scale(0.98);
}
.btn_app img{
  height: 50px;
}
@media(max-width:991.98px){
  .btn_app img {
    height: 40px;
  }
}
@media(max-width:767.98px){
  .about_section{
    padding-bottom: 4rem;
    padding:20px;
  }
}
/* ... end about section ... */

/* ... start footer area ... */
.footer {
  position: relative;
  padding: 3rem 0rem;
}
.footer_logo{
  width: 100px;
  height: auto;
}
.footer_nav{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer_nav .nav-item{
  margin-bottom: 1rem;
}
.footer_nav .nav-link{
  color: var(--c_white);
  display: inline-block;
  padding: 0rem;
}
.footer_nav .nav-link::before{
  content: "\f054";
  margin-right: 0.5em;
  font-family: "Font Awesome 6 Free";
}
.footer_nav .nav-link:hover{
  color: var(--c_primaryLt);
}
/* ... end footer area ... */

/* _____________________ end home page _____________________ */

/* _____________________ additional elements _____________________ */
/* Benefits list styling */
ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c_success);
}

/* Section titles */
.section-title {
  position: relative;
  margin-bottom: 2.5rem;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--c_primary);
}

/* _____________________ start guideline page _____________________ */
.guideline_section{
  padding: 3rem 0rem;
}
.guideline_section .logo_box{
  width: 12rem;
  margin: auto;
  margin-bottom: 1rem;
}
.guideline_section .logo_bg{
  width: 150%;
}
.side_nav .nav-item{
  margin-bottom: 0.5rem;
}
.side_nav .nav-link{
  color: var(--c_primary);
  background-color: var(--bg_primaryLt);
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
}
.side_nav .nav-link:hover{
  color: var(--c_white);
  background-color: var(--bg_primary);
}
.side_nav .nav-link::before{
  content: "";
  display: block;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  border-radius: inherit;
  border: 1px solid var(--c_primaryLt);
}
.side_nav .nav-link i{
  min-width: 1.5rem;
}
.guideline_title{
  position: relative;
  font-size: var(--fs_32);
  margin-bottom: -1.5rem;
}
.step_info{
  position: relative;
  padding: 1rem;
  background-color: var(--bg_dark);
  border-radius: 0.8rem;
  margin: 3.5rem auto;
}
.step_info::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  -webkit-transform: translate(20%,110%);
      -ms-transform: translate(20%,110%);
          transform: translate(20%,110%);
  width: 5rem;
  height: 3rem;
  background-image: url("../img/curve.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.step_info p:last-of-type{
  margin-bottom: 0rem;
}
@media(max-width:991.98px){
  .guideline_title {
    font-size: 1.2rem;
  }
  .step_info {
    margin: 2rem auto;
  }
  .step_info::after {
    width: 3rem;
    height: 2rem;
  }
}
@media(max-width:767.98px){
  .side_nav .nav-link {
    padding: 0.6rem 1rem;
  }
  .step_info {
    margin: 1.5rem auto;
  }
  .step_info::after {
    left: 50%;
    -webkit-transform: translate(-50%,120%) rotate(90deg);
        -ms-transform: translate(-50%,120%) rotate(90deg);
            transform: translate(-50%,120%) rotate(90deg);
  }
}
/* Benefits Section Styling */
.benefit-card {
  text-align: center;
  transition: all 0.3s ease;
  border: 0.3rem solid var(--c_primaryLt);
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--c_primary);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--c_primary);
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: var(--c_primaryDark);
}

.benefit-icon:before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed var(--c_primary);
  top: -5px;
  left: -5px;
  animation: rotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon:before {
  opacity: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Add a special label to selected benefits */
.benefit-card.featured:after {
  content: 'Terpopuler';
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--c_success);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Add a little animation when hovering */
.benefit-card p {
  transition: all 0.3s ease;
}

.benefit-card:hover p {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .benefit-icon:before {
    width: 70px;
    height: 70px;
  }
}

/* Tiger Mascot Styling */

/* General mascot animations */
.bounce-slight {
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Header mascot */
.mascot-small {
  transition: transform 0.3s ease;
}

.navbar-brand:hover .mascot-small {
  transform: rotate(10deg);
}

/* Hero section mascot */
.hero-mascot {
  position: absolute;
  top: 10px;
  right: 10%;
  z-index: 10;
}

.floating-mascot {
  width: 120px;
  position:relative;
  top:180px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* QR Code mascot */
.qr-code-wrapper {
  position: relative;
}

.mascot-qr {
  position: absolute;
  width: 80px;
  bottom: -30px;
  right: -40px;
  transform: rotate(10deg);
  transition: all 0.3s ease;
}

.qr-code-wrapper:hover .mascot-qr {
  transform: rotate(20deg) scale(1.1);
}

/* Benefits section mascot */
.benefit-header {
  display: flex;
  justify-content: center;
}

.mascot-coins {
  position: absolute;
  width: 100px;
  top: -60px;
  right: 5%;
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* Games section mascot */
.games-mascot {
  position: absolute;
  bottom: -30px;
  left: 5%;
  z-index: 10;
}

.mascot-playing {
  width: 100px;
  animation: pulse 3s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* FAQ section mascot */
.faq-mascot {
  position: absolute;
  top: 20px;
  right: 5%;
}

.mascot-thinking {
  width: 90px;
  transform: rotate(-5deg);
}

/* CTA section mascot */
.cta-mascot {
  position: absolute;
  bottom: -40px;
  right: 10%;
  z-index: 10;
}

.mascot-excited {
  width: 120px;
  animation: excited 0.5s ease infinite;
}

@keyframes excited {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

/* WhatsApp button mascot */
.whatsapp-float {
  position: relative;
}

.mascot-whatsapp {
  position: absolute;
  width: 40px;
  top: -30px;
  right: -10px;
  animation: bounce 2s ease infinite;
}

/* Footer mascot */
.footer-mascot {
  position: absolute;
  bottom: 30px;
  left: 5%;
}

.mascot-waving {
  width: 90px;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Sticky mascot that follows scroll */
.sticky-mascot {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sticky-mascot.visible {
  opacity: 1;
}

.mascot-sticky {
  width: 70px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mascot-sticky:hover {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-mascot, 
  .games-mascot,
  .faq-mascot,
  .footer-mascot {
    display: none; /* Hide some mascots on mobile to avoid clutter */
  }
  
  .floating-mascot,
  .mascot-coins,
  .mascot-excited {
    width: 80px; /* Smaller size on mobile */
  }
  
  .mascot-qr {
    width: 60px;
    bottom: -20px;
    right: -20px;
  }
  
  .sticky-mascot {
    bottom: 70px;
  }
  
  .mascot-sticky {
    width: 50px;
  }
}

        .registration-divider {
          height: 3px;
          width: 80px;
          background: var(--c_primary);
          margin: 15px auto 20px;
          position: relative;
        }
        
        .registration-divider:before,
        .registration-divider:after {
          content: '';
          position: absolute;
          width: 8px;
          height: 8px;
          background: var(--c_primary);
          border-radius: 50%;
          top: -2.5px;
        }
        
        .registration-divider:before {
          left: -5px;
        }
        
        .registration-divider:after {
          right: -5px;
        }
        
        .subtitle {
          font-size: var(--fs_18);
          font-style: italic;
        }
        
        .registration-mascot {
          position: absolute;
          top: -40px;
          right: -20px;
          z-index: 10;
        }
        
        .mascot-thinking {
          width: 90px;
          transform: rotate(-5deg);
          animation: thinking 5s ease-in-out infinite;
        }
        
        @keyframes thinking {
          0%, 100% {
            transform: rotate(-5deg);
          }
          50% {
            transform: rotate(5deg) translateY(-5px);
          }
        }
        
        /* Registration steps styling */
        .registration-steps {
          counter-reset: step-counter;
        }
        
        .step-item {
          display: flex;
          margin-bottom: 20px;
          position: relative;
        }
        
        .step-number {
          width: 40px;
          height: 40px;
          background-color: var(--c_primary);
          color: var(--c_white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
          font-size: 20px;
          margin-right: 15px;
          flex-shrink: 0;
          position: relative;
          z-index: 2;
        }
        
        .step-content {
          padding-top: 8px;
        }
        
        /* Add connecting line between steps */
        .step-item:not(:last-child):after {
          content: '';
          position: absolute;
          left: 20px;
          top: 40px;
          bottom: -20px;
          width: 2px;
          background-color: var(--c_primaryLt);
          z-index: 1;
        }
        
        /* Requirement list styling */
        .requirement-list {
          list-style: none;
          padding-left: 0;
        }
        
        .requirement-list li {
          position: relative;
          padding-left: 30px;
          margin-bottom: 12px;
        }
        
        .requirement-list li:before {
          content: '✓';
          position: absolute;
          left: 0;
          width: 22px;
          height: 22px;
          background-color: var(--c_success);
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
          font-weight: bold;
        }
        
        .requirement-list ul {
          list-style: disc;
          padding-left: 20px;
          margin-top: 10px;
        }
        
        .requirement-list ul li {
          padding-left: 0;
          margin-bottom: 5px;
        }
        
        .requirement-list ul li:before {
          display: none;
        }
        
        /* Form preview styling */
        .form-preview {
          background-color: var(--bg_white);
          border-radius: 10px;
          padding: 20px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          border: 2px dashed var(--c_primaryLt);
        }
        
        .form-field {
          margin-bottom: 15px;
          padding-bottom: 15px;
          border-bottom: 1px solid var(--c_primaryLt);
        }
        
        .form-field:last-child {
          margin-bottom: 0;
          padding-bottom: 0;
          border-bottom: none;
        }
        
        .form-field label {
          display: block;
          font-weight: bold;
          margin-bottom: 5px;
        }
        
        .field-description {
          font-size: var(--fs_16);
        }
        
        /* Verification preview */
        .verification-preview {
          text-align: center;
          padding: 20px;
        }
        
        .verification-illustration {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 20px;
          font-size: 40px;
        }
        
        .verification-illustration i {
          animation: pulse 2s infinite;
        }
        
        .verification-illustration i:last-child {
          animation-delay: 1s;
        }
        
        @keyframes pulse {
          0% {
            transform: scale(1);
            opacity: 1;
          }
          50% {
            transform: scale(1.1);
            opacity: 0.8;
          }
          100% {
            transform: scale(1);
            opacity: 1;
          }
        }
        
        /* Registration Screenshots */
        .registration-screenshots {
            margin: 30px 0;
            display: flex;
            justify-content: center;
        }
        
        .desktop-view {
            position: sticky;
            top: 100px;
        }
        
        .screenshot-container {
            perspective: 1000px;
        }
        
        .phone-frame {
            width: 280px;
            height: 650px;
            background-color: #000;
            border-radius: 30px;
            padding: 10px;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
            position: relative;
            transform: rotateY(-5deg) rotateX(5deg);
            transition: all 0.3s ease;
        }
        
        .phone-frame:hover {
            transform: rotateY(0) rotateX(0);
        }
        
        .phone-screen {
            width: 100%;
            height: 100%;
            background-color: var(--bg_primaryLt);
            border-radius: 25px;
            overflow: hidden;
            position: relative;
        }
        
        .app-header {
            height: 60px;
            background-color: var(--bg_primary);
            display: flex;
            align-items: center;
            padding: 0 15px;
        }
        
        .app-logo {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 8px;
            margin-right: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23C76D16"/><text x="50" y="70" font-family="Arial" font-size="60" font-weight="bold" text-anchor="middle" fill="white">C</text></svg>');
            background-size: cover;
        }
        
        .app-title {
            color: white;
            font-size: 20px;
            font-weight: bold;
        }
        
        .registration-form {
            padding: 20px;
        }
        
        .form-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--c_primaryDark);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .input-field {
            margin-bottom: 12px;
        }
        
        .input-field label {
            display: block;
            font-size: 14px;
            color: var(--c_primaryDark);
            margin-bottom: 5px;
        }
        
        .input-box {
            height: 38px;
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--c_primaryLt);
        }
        
        .input-box.password {
            position: relative;
        }
        
        .input-box.password:after {
            content: '••••••';
            position: absolute;
            left: 10px;
            top: 10px;
            color: var(--c_primaryDark);
        }
        
        .live-detection {
            margin-top: 20px;
            text-align: center;
        }
        
        .detection-title {
            font-size: 16px;
            color: var(--c_primaryDark);
            margin-bottom: 10px;
        }
        
        .camera-box {
            width: 100px;
            height: 100px;
            background-color: var(--bg_primaryLt2);
            border: 2px dashed var(--c_primary);
            border-radius: 10px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--c_primary);
        }
        
        .button-group {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .btn-outline {
            flex: 1;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border: 1px solid var(--c_primary);
            border-radius: 8px;
            color: var(--c_primary);
            margin-right: 10px;
            font-size: 14px;
        }
        
        .btn-primary {
            flex: 1;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: var(--c_primary);
            border-radius: 8px;
            color: white;
            font-size: 14px;
        }
        
        /* Tips styling */
        .tips-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 15px;
        }
        
        .tip-item {
            display: flex;
            background-color: var(--bg_white);
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-left: 3px solid var(--c_primary);
            transition: transform 0.3s ease;
        }
        
        .tip-item:hover {
            transform: translateY(-5px);
        }
        
        .tip-icon {
            font-size: 24px;
            color: var(--c_primary);
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .tip-content strong {
            display: block;
            margin-bottom: 5px;
        }
        
        .tip-content p {
            margin-bottom: 0;
            font-size: 14px;
        }
        
        /* Troubleshooting accordion */
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            background-color: var(--bg_white) !important;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .accordion-button {
            padding: 15px 20px;
        }
        
        .accordion-button:not(.collapsed) {
            color: var(--c_primary);
            font-weight: bold;
        }
        
        .accordion-body {
            padding: 15px 20px 20px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .tips-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .registration-mascot {
                top: -30px;
                right: 0;
            }
            
            .mascot-thinking {
                width: 70px;
            }
            
            .step-number {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .form-preview {
                padding: 15px;
            }
            
            .verification-illustration {
                font-size: 30px;
            }
            
            .phone-frame {
                width: 220px;
                height: 420px;
            }
            
            .tip-item {
                padding: 12px;
            }
            
            .tip-icon {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .registration-mascot {
                display: none;
            }
            
            .step-item {
                margin-bottom: 15px;
            }
            
            .step-item:not(:last-child):after {
                bottom: -15px;
            }
            
            .form-field {
                margin-bottom: 10px;
                padding-bottom: 10px;
            }
            
            .verification-illustration {
                font-size: 24px;
                gap: 15px;
            }
            
            .phone-frame {
                width: 100%;
                max-width: 280px;
                height: auto;
                aspect-ratio: 0.5;
            }
        }
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Calculator styling */
.result-container {
  border: 2px solid var(--c-primary);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

#resultAmount {
  font-weight: bold;
  transition: all 0.3s ease;
}

#calculateBtn:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

/* Enhanced benefit boxes */
.content_box {
  transition: all 0.3s ease;
}

.content_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Icon styling in benefits section */
.content_box .fs_32.c_primary {
  transition: all 0.3s ease;
}

.content_box:hover .fs_32.c_primary {
  transform: scale(1.2);
}

/* Floating mascot animation */
.floating-mascot {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Mascot coins animation */
.mascot-coins {
  position: absolute;
  right: 0;
  top: -30px;
  width: 100px;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
