/*
font-family: "Poppins", sans-serif;
font-family: "Inter", sans-serif;
*/

:root {
  --global--content-size: 100%;
  --color-black: #000;
  --color-white: #fff;
  --color-site-font: #3C3C43;
  --color-site-title: #333;
  --color-grey-v1: #d9d9d9;
  --color-grey-v2: #fdfdfd;
  --color-grey-v3: #fcfcfc;
  --color-blue: #025296;
  --color-black-semi-transparent-01: rgba(0, 0, 0, 0.1);
}

/*------------------------------------
# .0 Reset Css
------------------------------------*/
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  background-color: transparent;
}
a {
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
}
p {
  font-size: 1rem;
}
h1,h2,h3 {
  color: var(--color-site-title);
}

/*------------------------------------
# 0.1 Layout
------------------------------------*/
.global-tb-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*------------------------------------
# 0.2 Header Section
------------------------------------*/
.site-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
.home header + .has-global-padding {
  padding-left: 0;
  padding-right: 0;
}
.home header + .has-global-padding > .entry-content {
  max-width: 100%;
}

/*------------------------------------
# 0.3 Body Main Content
------------------------------------*/
/* Global Header Title Section */
.header-title {
  margin-bottom: 50px;
  clear: both;
}
.header-title h2 {
  margin-bottom: 15px;
}
.header-title p {
  font-size: 1.25rem;
  color: var(--color-site-font);
  line-height: normal;
}

/* Scan. Earn. Win! in Header */


/* Watch How It Works Section */
.watch-video,
.video-overlay-wrapper {
  position: relative;
  max-width: 980px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--color-black-semi-transparent-01);
  max-height: 460px;
}
.watch-video .video-frame,
.video-overlay-wrapper .video-frame {
  position: relative;
  z-index: 6;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  height: 100%;
}
.watch-video .video-play-btn,
.video-overlay-wrapper .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-image: url(../images/icon-video-play-btn.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 7;
}
.watch-video::before,
.video-overlay-wrapper::before {
  content: '';
  display: block;
  padding: 0;
  position: absolute;
  left: -100px;
  top: 70px;
  width: 80px;
  height: 78px;
  background-image: url(../images/img-ball.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  z-index: 5;
}
.watch-video::after,
.video-overlay-wrapper::after {
  content: '';
  display: block;
  padding: 0;
  position: absolute;
  right: -195px;
  top: 70px;
  width: 285px;
  height: 249px;
  background-image: url(../images/img-wicket.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  z-index: 5;
}
.video-overlay-wrapper .wp-block-embed-youtube iframe {
  width: 100%;
  height: 460px;
}
/* Thumbnail overlay */
.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  z-index: 7;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.video-thumbnail-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Optional: hide thumbnail once active */
.video-overlay-wrapper.is-playing .video-thumbnail-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Let's Start Your Innings! Section */
.start-innings .innings-wrapper h2 {
  font-family: "Poppins", sans-serif;
  color: var(--color-white);
  font-size: 45px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 5px;
}
.start-innings .innings-wrapper p {
  font-family: "Inter", sans-serif;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Frequently Asked Questions Section */
.faq {
  position: relative;
  clear: both;
}
.faq .faq-accordion {
  border: none;
  overflow: hidden;
  border-radius: 20px;
}
.faq .faq-accordion .accordion-item {
  border: none;
  margin-bottom: 3px !important;
  background-color: var(--color-white);
  padding: 35px 40px 40px;
}
.faq .faq-accordion .accordion-header {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}
.faq .faq-accordion .accordion-header .accordion-header-grid,
.faq .faq-accordion .accordion-body .accordion-content-grid {
  flex: 0 0 80%;
  max-width: 80%;
  margin: 0 auto 0 0 !important;
  align-items: center !important;
  justify-content: start;
  gap: 0px;
}
.faq .faq-accordion .accordion-header .count {
  font-family: "Inter", sans-serif;
  color: #9D9DA0;
  font-size: 35px;
  font-weight: 800;
  line-height: normal;
}   
.faq .faq-accordion .accordion-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.faq .faq-accordion .accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0px;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.faq .faq-accordion .accordion-body .accordion-content-grid {
    margin-top: 15px!important;
}
.faq .faq-accordion .accordion-body p {
  padding-bottom: 0;
  color: #787878;
  font-weight: 500;
  line-height: 1.4;
}
.faq .accordion-item.active .icon {
  transform: rotate(0deg);
}
.faq .faq-accordion .accordion-item.active .accordion-body {
  max-height: fit-content;
  opacity: 1;
}
.faq .faq-accordion .accordion-header .icon {
  font-size: 25px;
  font-weight: 400;
  max-width: initial;
  margin: 0 0 0 auto !important;
  background-color: #F3F5F6;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------------------------
# 0.4 Footer Section
------------------------------------*/
.site-footer .site-footer-inner .site-ft-logo {
  position: relative;
  top: -50px;
}
.site-footer .site-footer-inner .site-social-link {
  margin-top: -15px;
}
.site-footer .site-footer-inner .site-social-link .social-links-wrapper .social-link-item figure {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.site-footer .site-footer-inner .site-social-link .social-links-wrapper .social-link-item {
  margin-left: .5em;
  margin-right: .5em;
}
.site-footer .site-footer-inner .site-social-link .social-links-wrapper .social-link-item figure a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--color-white);
}
.site-footer .site-footer-inner .site-social-link .social-links-wrapper .social-link-item figure a:hover,
.site-footer .site-footer-inner .site-social-link .social-links-wrapper .social-link-item figure a:focus {
  background-color: var(--color-black);
  border-color: var(--color-black);
}
.site-footer .site-footer-inner .site-social-link .social-links-wrapper .social-link-item figure a img {
  display: block;
  max-width: 100%;
}
.site-footer .site-footer-inner .site-copyright {
  padding-top: 15px;
  padding-bottom: 40px;
}
.site-footer .site-footer-inner .site-copyright p {
  font-weight: 300;
}
/* 09-02-2026 */
.no-display {
  display: none!important;
  visibility: hidden;
  opacity: 0;
}
.site-banner-cover {
  display: flex;
  align-items: stretch;
}
.site-banner-cover .wp-block-cover__inner-container {
  flex: 1;
}
.hero {
  height: 100%;
  position: relative;
  font-family: 'Poppins', sans-serif;
}
.hero__leftimg {
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
  z-index: 10;
  margin: inherit !important;
  display: block;
}
.hero__leftimg img {
  height: auto;
  display: block;
}
.hero__container {
  max-width: 1290px;
  margin: auto;
  display: flex;
  /* grid-template-columns: 1fr 1.4fr; */
  align-items: flex-end;
  gap: 0;
  height: 100%;
  justify-content: right;
}

.hero__container .hero__right {
  max-width: 800px;
  margin-left: 0 !important;
  width: 100%;
  margin-right: 0 !important;
  margin-top: 0;
  margin-bottom: 80px;
  gap: 0;
  position: relative;
}

/* LEFT */
.hero__left img {
  width: 100%;
  max-width: 420px;
}

/* PROMO */
.promo {
  background: #fff;
  border-radius: 30px;
  border: 15px solid #fff;
  max-width: 100%;
  margin-left: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  position: relative;
  gap: 0;
}

/* LEFT PANEL */
.promo__left {
  background: #B44242;
  color: #fff;
  border-radius: 14px 0px 0px 14px;
  padding: 50px 30px 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.promo__left h1 {
  font-size: 48px;
  line-height: 42px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: #FFF;
  text-align: center;
}

.promo__left .wp-block-button .wp-block-button__link {
  font-size: 25px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #E09100;
  margin-bottom: .5rem;
  cursor: default;
}
/* .promo__left .wp-block-button .wp-block-button__link:hover,
.promo__left .wp-block-button .wp-block-button__link:focus {
  background-color: #f9ab1f;
  opacity: 0.9;
} */

.promo__left span {
  font-size: 2.6rem;
  font-weight: 800;
}

/* RIGHT PANEL */
.promo__right {
  background: #E0B9B9;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 0px 14px 14px 0px;
  padding: 50px 30px 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.scan-win {
  background-image: url(../images/img-scan-earn-win.webp);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-color: #fffbd5;
  border-radius: 14px;
  padding: 65px 20px 15px;
  margin-top: 0px!important;
  margin-bottom: 0px!important;
}
.redeem-inner {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.scan-win h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 22px;
  color: var(--color-black);
  margin-bottom: 12px;
}
.scan-win p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 0;
  text-transform: capitalize;
}

/* How To Earn Section */
.how-to-earn .earning-process .process-col {
  border-radius: 22px;
  background-color: var(--color-white);
  position: relative;
  overflow: visible;
}
.how-to-earn .earning-process .process-col::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-image: url(../images/circle-arrow.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  z-index: 7;
  right: -65px;
  top: 50%;
  transform: translateY(-50%);
}
.how-to-earn .earning-process .process-col:last-child::after {
  display: none;
}
.how-to-earn .earning-process .process-col figure {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.how-to-earn .earning-process .process-col figure img {
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}
.how-to-earn .earning-process .process-col h3 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-black);
  margin-top: 25px;
  margin-left: 30px;
  margin-right: 30px;
  background-position: 0 5px;
  background-repeat: no-repeat;
  padding-left: 50px;
  line-height: 45px;
}
.how-to-earn .earning-process .process-col p {
  color: var(--color-site-font);
  line-height: 24px;
  margin: 10px 30px 30px;
}
.how-to-earn .earning-process .process-col.process-01 h3 {
  background-image: url(../images/icon-runs.svg);
}
.how-to-earn .earning-process .process-col.process-02 h3 {
  background-image: url(../images/icon-milestones.svg);
}
.how-to-earn .earning-process .process-col.process-03 h3 {
  background-image: url(../images/icon-redeem-gifts.svg);
}
.scan-box {
  background: #fff4cc;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 6rem; /* space for overlap */
}

.scan-box strong {
  background: #ffeb3b;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
}

/* OVERLAPPING PRODUCTS */
.promo__visual {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  width: 214px;
  height: 315px;
  pointer-events: none;
  z-index: 2;
}

.product {
  position: absolute;
  bottom: 0;
  transition: transform 0.3s ease;
}

/* LEFT PACKET */
.product--left {
  left: 0;
  height: 170px;
  transform: rotate(-10deg);
  z-index: 1;
}

/* CENTER APP */
.product--center {
  left: 50%;
  transform: translateX(-50%);
  height: 240px;
  z-index: 3;
}

/* RIGHT PACKET */
.product--right {
  right: 0;
  height: 180px;
  transform: rotate(10deg);
  z-index: 2;
}

/* CTA */
.promo__cta {
  border-radius: 16px;
  padding: 10px 20px 20px;
  background: #FFF;
  overflow: hidden;
  text-align: center;
  position: absolute;
  bottom: -30px;
  z-index: 3;
  gap: 8px;
}
.promo__cta p {
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
  color: var(--color-black);
}

.stores {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-direction: row;
}

.stores img {
  height: 42px;
}

body .desktop-hide {
  display: none;
}
.promo .card .stores {
  display: none;
}
/* 09-02-2026 */

.mobile-graphic{
        display: none;
    }