@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/
:root {
  --white: #fff;
}

/* Legal & Policies section */
.legal-policies-section {
  margin-bottom: 50px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #1b2233 0%, #141a29 50%, #101524 100%);
  border: 1px solid #2c3346;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.legal-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.legal-subtitle {
  color: #8fa0c2;
  font-size: 13px;
  margin-bottom: 0;
}

.legal-column-title {
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-links-list {
  list-style: none;
  padding-left: 0;
}

.legal-links-list li+li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.legal-link i {
  color: #17a8ff;
  font-size: 11px;
  transition: all 0.25s ease;
}

.legal-link:hover {
  color: #fff;
  padding-left: 6px;
  text-decoration: none;
}

.legal-link:hover i {
  color: #17a8ff;
  transform: translateX(4px);
}

/* Age Gate */
.age-gate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.age-gate-card {
  max-width: 520px;
  width: 100%;
  background: linear-gradient(135deg, #1c2233 0%, #111626 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.age-gate-header h3 {
  color: #fff;
  font-size: 26px;
  margin: 12px 0 6px;
}

.age-gate-header p {
  color: #aab6d3;
  margin: 0;
}

.age-gate-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 168, 255, 0.12);
  color: #17a8ff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  margin: 22px 0 10px;
  flex-wrap: wrap;
}

.age-gate-actions .pbtn {
  flex: 1;
  min-width: 160px;
}

.age-gate-actions .secondary-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-gate-actions .secondary-btn span {
  background: transparent;
}

.age-gate-note {
  color: #8fa0c2;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 576px) {
  .age-gate-card {
    padding: 22px;
  }

  .age-gate-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .legal-policies-section {
    padding: 30px 20px;
  }

  .legal-column-title {
    margin-top: 10px;
  }
}

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Montserrat", sans-serif;
  color: #ffffff79;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
  position: relative;
  background-color: #161a26;
}

@font-face {
  font-family: "americanCaptain";
  src: url("../fonts/American-Captain.otf");
  src: url("../fonts/American-Captain.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Blender";
  src: url("../fonts/Blender_Pro_Medium.ttf");
  font-display: swap;
}

/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "americanCaptain";
  color: #ffff;
  text-transform: uppercase;
}

h1 {
  font-size: 90px;
  line-height: 95px;
}

h2 {
  font-size: 70px;
  line-height: 75px;
}

h3 {
  font-size: 32px;
  line-height: 36px;
}

h4 {
  font-size: 25px;
  line-height: 30px;
}

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

h6 {
  font-size: 18px;
  line-height: 22px;
}

/***** Paragraphs *****/
p {
  font-size: 14px;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.wPara {
  color: #fff;
  opacity: 70%;
}

.flx {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------------------------------- */

.rd {
  color: #18a9ff;
  display: inline-block;
  border-bottom: 1px solid;
}

.maxWidth {
  max-width: 1440px;
}

/* general btn css start  */

a {
  text-decoration: none;
  color: #0a58ca;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #1c6be2;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

/***** Font Files *****/

::-webkit-input-placeholder {
  color: #ffffff8a;
}

::-moz-placeholder {
  color: #ffffff8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ffffff8a;
}

:-moz-placeholder {
  color: #ffffff8a;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 0px 0;
  position: relative;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffff;
  padding: 30px 10px;
  font-size: 15px;
  font-family: "Blender";
  text-transform: uppercase;
  transition: 0.2s;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #17a8ff;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css end*/

header {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 12;
}

header .shopping {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
  padding: 11px 0 0;
}

header .shopping a.shopping-cart {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

header .shopping a i {
  position: relative;
  z-index: 1;
  transition: 0.2s;
  color: #fff;
}

header .shopping span.cart {
  color: #fff;
}

header .shopping a i:hover {
  transform: scale(1.3);
  color: #fff;
}

/* ----------------------------------------------- About Us --------------------------------------- */

.siteWraper {
  position: relative;
  padding: 40px 30px 40px 40px;
}

img.ab1-img {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 100% 30%;
}

section.aboutsec {
  position: relative;
  padding: 150px 0px;
}

.siteWraper:before {
  position: absolute;
  content: "";
  width: 61%;
  height: 100%;
  right: 0;
  top: 0;
  background: #212737;
  z-index: -1;
}

section.aboutsec .ab-right {
  position: relative;
  z-index: 1;
}

/* ================= */



/*Footer css Start*/

.left-text ul li {
  margin: 0 0 20px 0;
}

.left-text ul li a i,
.left-text ul li span i {
  color: #7b7e87;
  font-size: 16px;
}

.left-text ul li a,
.left-text ul li span {
  display: flex;
  justify-content: start;
  align-items: baseline;
  gap: 20px;
  transition: ease-in;
  transition-duration: 0.2s;
  color: #ffffff66;
}

.left-text ul li a p:hover {
  color: #fff;
  transition: ease-out;
}

.left-text ul li p {
  color: #7b7e87;
  margin: 0;
}

.middle-text p {
  color: #7b7e87;
  text-align: center;
  width: 100%;
  margin: 20px 0 0 0;
}

footer h5 {
  margin-bottom: 24px;
}

.bottom-footer p {
  color: #7b7e87;
  margin-bottom: 0;
  padding: 10px 0;
}

.bottom-footer .row {
  border-top: 1px solid #3b404d;
  width: 100%;
  padding: 16px 0px 0px;
}

.left-text {
  padding: 0 0 0 100px;
}

.ftr-bottom {
  padding: 0;
  position: relative;
  border-top: 1px solid #3b404d;
}

.ftr-bottom:before {
  position: absolute;
  content: "";
  background: #3b404d;
  width: 1px;
  height: 100%;
  top: 0;
  left: 30%;
  z-index: 1;
}

.ftr-bottom:after {
  position: absolute;
  content: "";
  background: #3b404d;
  width: 2px;
  height: 100%;
  top: 0;
  right: 30%;
  z-index: 1;
}

.footer-socials ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-top: 0;
}

.footer-socials ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  background-color: #0000;
  color: #7b7e87;
  border: 1px solid #7b7e87;
  transition: ease-in;
  transition-duration: 0.2s;
}

.footer-socials ul li a i:hover {
  background-color: #17a8ff;
  color: #fff;
  border: 1px solid #0000;
  transition: ease-out;
  transition-duration: 0.2s;
}

.footer-logo {
  text-align: center;
  width: 30%;
  margin: 0px auto;
}

.right-text,
.left-text {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-main {
  position: relative;
  background: #232837;
}

footer .row {
  align-items: center;
}

.right-text {
  width: 78%;
}

.creadit-img {
  position: relative;
}

.bottom-footer {
  position: unset;
  overflow: hidden;
}

/*Footer Css End*/

.bt {
  display: inline-block;
  position: relative;
}

.pbtn {
  position: relative;
  display: inline-block;
  padding: 2px 4px;
  background: #17a8ff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  min-width: 90px;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 12px #00aeff3b;
  overflow: visible;
}

.pbtn span {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  background: #212737;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Blender", sans-serif;
  line-height: 23px;
  min-width: 160px;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  transition: all 0.3s ease-in-out;
  transform: scaleY(1.1);
}

.pbtn:hover {
  background: #00baff;
  color: #fff;
}

.pbtn:hover span {
  background: #00baff;
  color: #fff;
  transform: unset;
}

.bt:before {
  position: absolute;
  content: "";
  width: 75%;
  height: 60%;
  background: #17a8ffc7;
  right: 0;
  left: 0;
  margin: 0px auto;
  top: 20px;
  filter: drop-shadow(2px 4px 46px #17a8ffde);
}

footer .double-links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .double-links ul li a {
  color: #ffffff69;
}

footer .double-links ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.newlatter-form {
  width: 70%;
  margin: 0px auto 50px;
  text-align: center;
  padding: 10px 60px 60px;
  background: #161a26;
  position: relative;
}

.newlatter-form h2 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 24px;
}

.newlatter-form .newsform {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  height: 55px;
  padding-left: 30px;
}

.newlatter-form .newsform input {
  width: 100%;
  flex-grow: 1;
  background: transparent;
  border: 0px;
  color: #ffffff6b;
  position: relative;
  z-index: 1;
}

.newlatter-form .newsform input::placeholder {
  color: #ffffff6b;
}

.newlatter-form .newsform .bt {
  position: relative;
}

.newlatter-form .newsform:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 100%;
  left: 0;
  top: 0;
  background: #343741;
}

.newlatter-form .newsform .pbtn span {
  padding: 14px 20px;
  line-height: 24px;
  min-width: 170px;
}

/* ----------------------------------------- Big Win Section Start ------------------------------ */

section.big-win {
  position: relative;
  overflow: hidden;
  padding: 260px 0;
  background: url(../images/win-big-bg-img.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.big-win-img {
  position: absolute;
  top: -4px;
  left: 17%;
}

.big-win-img img {
  width: 100%;
  height: 730px;
  transform-origin: center bottom;
  filter: drop-shadow(0px -32px 42px #0000009e);
}

.big-win-txt {
  padding-left: 110px;
  position: relative;
}

.big-win-txt p {
  width: 90%;
}

img.big-win-top-shape {
  position: absolute;
  top: 0;
  width: 100%;
  height: 70px;
  left: 0;
  object-fit: fill;
}

img.big-win-bottom-shape {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  left: 0;
  object-fit: fill;
}

img.trophy-img {
  position: absolute;
  right: -60px;
  top: -30px;
}

img.yellow-img {
  position: absolute;
  right: 0;
  top: -50px;
}

img.green-img-win {
  position: absolute;
  bottom: -140px;
  left: -220px;
  right: 0;
  margin: 0px auto;
}

img.blue-leaf-img-win {
  position: absolute;
  left: -50px;
  top: -40px;
}

img.trophy-img-left-btm {
  position: absolute;
  left: 150px;
  bottom: 280px;
  width: 110px;
}

img.big-win-leaf-shape-img {
  position: absolute;
  left: 120px;
  bottom: 90px;
}

img.big-win-top-red-shape {
  position: absolute;
  top: 180px;
  left: 130px;
}

/* ----------------------------------------- Big Win Section end ------------------------------ */

/* ----------------------------------------- Play  Section Start ------------------------------ */

.heading {
  margin-bottom: 50px;
  position: relative;
}

.play-bx {
  position: relative;
  clip-path: polygon(16% 0%,
      83% 0,
      100% 16%,
      100% 82%,
      84% 100%,
      17% 100%,
      0 80%,
      0 20%);
  background: #232837;
  margin: 0px 10px;
  height: 370px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px 24px 30px;
  transition: 0.3s;
}

.play-bx .play-icon {
  position: relative;
  width: 90px;
  background: #17a8ff;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: 0.3s;
}

.play-bx p:last-child {
  margin-bottom: 0;
}

.play-bx .play-icon:before {
  position: absolute;
  content: "";
  width: 87%;
  height: 100%;
  left: 0;
  top: 0px;
  background: #232938;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  right: 0;
  margin: 0px auto;
  transition: 0.4s;
}

.play-i-shp {
  position: relative;
  margin-bottom: 24px;
}

.play-bx .play-icon img {
  position: absolute;
  z-index: 1;
  transition: 0.2s;
}

.play-bx:hover {
  background: #17a8ff;
}

.play-bx.top-play-bx {
  position: relative;
  top: -90px;
}

.play-i-shp::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 40%;
  background: #00e5ff66;
  right: 0;
  left: 0;
  margin: 0px auto;
  top: 20px;
  filter: drop-shadow(2px 4px 26px #00e5ffcf);
}

img.play-leaf-shape {
  position: absolute;
  left: 24%;
  top: -20px;
}

section.play .heading {
  padding-top: 24px;
}

img.play-red-shape {
  position: absolute;
  right: -50px;
  top: 0px;
}

section.play.padd::before {
  top: 0%;
  left: -25%;
  width: 44%;
  content: "";
  height: 100%;
  filter: blur(10px);
  position: absolute;
  background: radial-gradient(circle,
      rgb(23 168 255 / 0%) 0%,
      rgb(23 168 255 / 19%) 14%,
      rgb(23 166 255 / 0%) 82%,
      rgba(23, 168, 255, 0) 100%);
  background-size: cover;
  background-position: 10px -30px;
  background-repeat: no-repeat;
}

/* ----------------------------------------- Play  Section end ------------------------------ */

section.rules-sec {
  position: relative;
  padding: 80px 0 120px;
}

img.rules-yellow-img {
  position: absolute;
  left: 0;
  bottom: 70px;
}

section.rules-sec::after {
  bottom: -30%;
  right: -25%;
  width: 44%;
  content: "";
  height: 100%;
  filter: blur(10px);
  position: absolute;
  background: radial-gradient(circle,
      rgb(23 168 255 / 0%) 0%,
      rgb(23 168 255 / 19%) 14%,
      rgb(23 166 255 / 0%) 82%,
      rgba(23, 168, 255, 0) 100%);
  background-size: cover;
  background-position: 10px -30px;
  background-repeat: no-repeat;
}


/* ------------------------------------------------------- Banner Start ----------------------------------- */



header .shopping a.shopping-cart span {
  font-size: 9px;
  color: #000;
  font-family: "Blender";
  background: #fff;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  position: absolute;
  right: -20px;
  transform: rotate(-45deg);
  top: 1px;
  transition: 0.2s;
}

header .shopping a:hover:before {
  background: #17a8ff;
  transform: unset;
}

header .shopping a.shopping-cart:hover span {
  transform: unset;
  top: 15px;
}

header .shopping .pbtn span {
  min-width: 130px;
  padding: 14px 40px;
}

.siteLogo {
  width: 130px;
  height: 130px;
  display: block;
}

.siteLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-logo {
  height: 80px;
  display: flex;
  position: relative;
  width: fit-content;
  justify-content: center;
}

.header-logo::before {
  bottom: 0;
  left: 100%;
  content: "";
  height: 1px;
  width: 100vw;
  position: absolute;
  background-color: #ffffff3b;
}

.header-logo::after {
  bottom: 0;
  content: "";
  right: 100%;
  height: 1px;
  width: 100vw;
  position: absolute;
  background-color: #ffffff3b;
}

header .menuSec a.siteLogo:before {
  left: -2px;
  right: 0;
  content: "";
  width: 135px;
  margin: auto;
  bottom: -60px;
  height: auto;
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  border: 1px solid #ffffff3b;
  clip-path: polygon(0 55%, 100% 54%, 100% 100%, 0% 100%);
}

.slider-nav-wrap {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  bottom: 16%;
  width: 140px;
}

.custom-dots {
  position: relative;
  width: 100%;
  display: flex;
}

.custom-dots li {
  list-style: none;
}

.custom-dots button {
  display: none;
}

.dot-shape {
  width: 6px;
  height: 6px;
  display: inline-block;
  transition: all 0.3s ease;
  opacity: 0.4;
  background: #717691;
  border-radius: 45px;
  outline: 4px solid transparent;
  outline-offset: 0px;
  margin: 8px 0px;
}

.custom-dots .slick-active .dot-shape {
  opacity: 1 !important;
  outline: 1px solid #fff;
  border-radius: 0px;
  background: #fff;
  outline-offset: 3px;
  transform: rotate(45deg);
}

.slider-counter {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  position: absolute;
  font-family: "americanCaptain";
  top: -110px;
  right: 50px;
  display: inline-block;
}

.custom-dots ul.slick-dots {
  width: 20px;
}

.custom-dots li.slick-active {
  opacity: 1;
  position: relative;
}

.custom-dots li.slick-active:before {
  position: absolute;
  content: "";
  width: 160px;
  background: #ffffff45;
  height: 1px;
  top: 12px;
  left: 19px;
}

.slider-tt-slides {
  font-size: 16px;
  font-family: "americanCaptain";
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 30%;
}

.banner_text {
  position: relative;
}

.banner_text img.banner-green-sh {
  position: absolute;
  left: -60px;
  width: auto;
  top: -70px;
}

.banner_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innercircl-ims {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 460px;
  height: 0px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit 25s linear infinite;
  pointer-events: none;
  right: 20%;
}

.innercircl-ims span {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innercircl-ims span:nth-child(1) {
  transform: rotate(0deg) translateX(220px);
}

.innercircl-ims span:nth-child(2) {
  transform: rotate(72deg) translateX(220px);
}

.innercircl-ims span:nth-child(3) {
  transform: rotate(144deg) translateX(220px);
}

.innercircl-ims span:nth-child(4) {
  transform: rotate(216deg) translateX(220px);
}

.innercircl-ims span:nth-child(5) {
  transform: rotate(288deg) translateX(220px);
}

.innercircl-ims span img {
  width: 100%;
  height: auto;
  display: block;
  animation: spin 10s linear infinite;
}

@keyframes orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

img.bnner-right-tropy {
  width: 140px;
  position: absolute;
  left: -72px;
  bottom: 30px;
}

header:before {
  position: absolute;
  content: "";
  width: 120px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  right: -20px;
  top: 30px;
  background-image: url(../images/trophy-img.png);
}

section.banner .innerWrap:before {
  top: -30%;
  right: -18%;
  width: 34%;
  content: "";
  height: 62%;
  filter: blur(10px);
  position: absolute;
  background: radial-gradient(circle,
      rgb(23 168 255 / 0%) 0%,
      rgb(255 255 255 / 19%) 14%,
      rgb(23 166 255 / 0%) 82%,
      rgba(23, 168, 255, 0) 100%);
  background-size: cover;
  background-position: 10px -30px;
  background-repeat: no-repeat;
}

.slider-counter.act-in {
  position: absolute;
  z-index: 12;
  font-size: 120px;
  line-height: 120px;
  top: 84%;
  left: 170px;
  right: unset;
  width: auto;
  display: inline-block;
}

.slider-counter.act-in:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 38px;
  bottom: 0;
  background: #17a8ff;
  transform: rotate(7deg);
}

/* --------------------------- */
/* --------------------------- */

.banner_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.slick-track {
  display: flex !important;
}

.banner-monkee-img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.4));
}

.dust-particles {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.096) 0%,
      transparent 70%);
  filter: blur(12px);
  opacity: 0;
}

/* --------------------------- */
/* --------------------------- */

/*LATEST WORK SECTION*/
/* Full width carousel section */
.latest_work_sec {
  overflow: hidden;
  width: 100%;
  padding: 0px 0 150px;
  position: relative;
}

/* Remove width limits */
.latest_work_sec .container-fluid,
.latest_work_sec .col-md-12 {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.middle-text {
  padding: 40px 0;
}

/* Flipster full width + visible overflow */
.flipster {
  /* overflow: visible !important; */
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  user-select: none;
}

/* Make inner wrapper full width */
.flipster__container {
  width: 100% !important;
}

/* Flip items visible */
.flipster__item {
  opacity: 1 !important;
}

/* Central item (active) bigger and more prominent */
.flipster__item--current .card_box {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

/* Left and right visible items slightly smaller */
.flipster__item--past-1 .card_box,
.flipster__item--future-1 .card_box {
  transform: scale(0.9);
  opacity: 0.9;
}

/* Two items away even smaller */
.flipster__item--past-2 .card_box,
.flipster__item--future-2 .card_box {
  transform: scale(0.8);
  opacity: 0.7;
}

/* Card box larger size */
.card_box {
  background: #2b2c2e;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  /* increase card width */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin: auto;
  transition: all 0.4s ease;
  padding: 10px;
  width: 360px;
  position: relative;
}

/* Card image */
.card_img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.card_date {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #17a8ff;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "Blender";
  text-transform: uppercase;
  word-spacing: -1px;
}

/* Card content */
.card_content {
  padding: 18px 4px 10px;
}

.card_content h5 {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: "Blender";
}

.card_price {
  font-size: 18px;
  color: #fff;
  font-family: "Blender";
}

.card_price small {
  color: #cdcaca96;
  font-size: 12px;
  text-transform: uppercase;
}

.card_content p {
  margin: 12px 0;
  color: #fff;
  opacity: 60%;
  font-weight: 400;
  line-height: 21px;
}

/* Progress */

.progress_info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #ffffffb5;
  margin-top: 6px;
  font-family: "Blender";
}

@media (max-width: 768px) {
  .card_box {
    width: 270px;
  }
}

.compet-list {
  margin: 14px 0px 10px;
}

.compet-list .innts {
  display: flex;
  text-align: center;
  width: 78px;
  background: #3f4044;
  flex-direction: column;
  padding: 8px 0px;
  border-radius: 5px;
  font-family: "Blender";
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  transition: 0.2s;
}

.compet-list .innts:hover {
  transform: translate(0px, 2px);
  background: #17a8ff;
}

.crd-btt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.crd-btt .pbtn span {
  word-spacing: 3px;
}

.latest_work_sec::before {
  top: 10%;
  right: -25%;
  width: 40%;
  content: "";
  height: 60%;
  filter: blur(10px);
  position: absolute;
  background: radial-gradient(circle,
      rgb(23 168 255 / 0%) 0%,
      rgb(23 168 255 / 19%) 14%,
      rgb(23 166 255 / 0%) 82%,
      rgba(23, 168, 255, 0) 100%);
  background-size: cover;
  background-position: 10px -30px;
  background-repeat: no-repeat;
}

img.ab-top-green-img {
  position: absolute;
  left: 10%;
  bottom: 10px;
}

section.banner .slick-slide.slick-current.slick-active {
  opacity: 1 !important;
}

/* --------------------------------- */

/* Animations  */

img.banner-bg-img {
  animation: bgZoom1 10s ease-in-out infinite;
}

@keyframes bgZoom1 {
  0% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

img.trophy-img-left-btm {
  animation: rotateLeftRight 4s ease-in-out infinite;
}

img.trophy-img {
  animation: rotateLeftRight 4s ease-in-out infinite;
}

header:before {
  animation: rotateLeftRight 4s ease-in-out infinite;
}

img.bnner-right-tropy {
  animation: rotateLeftRight 4s ease-in-out infinite;
}

@keyframes rotateLeftRight {
  0% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(-15deg);
  }
}

@keyframes rotateXaxis {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* .big-win-img img { */
/* animation: rotateXaxis 5s linear infinite; */
/* } */

img.play-leaf-shape {
  animation: rotateXaxis 5s linear infinite;
}

img.blue-leaf-img-win {
  animation: rotateXaxis 5s linear infinite;
}

img.big-win-top-red-shape {
  animation: rotateXaxis 5s linear infinite;
}

@keyframes zoomOnceRotate {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes zoomOnceRotatemainImg {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

.latest_work_sec::before {
  animation: zoomOnceRotate 8s ease-out forwards infinite;
}

section.play.padd::before {
  animation: zoomOnceRotate 8s ease-out forwards infinite;
}

section.rules-sec::after {
  animation: zoomOnceRotate 8s ease-out forwards infinite;
}

section.sourc-sec:after {
  animation: zoomOnceRotate 8s ease-out forwards infinite;
}

.banner_text img.banner-green-sh {
  animation: zoomOnceRotate 8s ease-out forwards infinite;
}

img.ab-top-green-img {
  animation: zoomOnceRotate 5s ease-out forwards infinite;
}

img.play-red-shape {
  animation: zoomOnceRotate 5s ease-out forwards infinite;
}

section.rules-sec img.green-shape-img {
  animation: rotateXaxis 5s linear infinite;
}

img.green-img-win {
  animation: zoomOnceRotate 5s ease-out forwards infinite;
}

img.rules-yellow-img {
  animation: zoomOnceRotate 5s ease-out forwards infinite;
}

.flipster--carousel .flipster__item__content {
  transform-origin: center center !important;
  transition: all 400ms ease-in-out !important;
}

.flipster--carousel .flipster__item--past .flipster__item__content,
.flipster--carousel .flipster__item--future .flipster__item__content,
.flipster--carousel .flipster__item--past-1 .flipster__item__content,
.flipster--carousel .flipster__item--future-1 .flipster__item__content,
.flipster--carousel .flipster__item--past-2 .flipster__item__content,
.flipster--carousel .flipster__item--future-2 .flipster__item__content {
  transform: none !important;
}

.flipster--carousel .flipster__item--current .flipster__item__content {
  transform: translate(0px, 0px) scale(0.9);
  opacity: 1 !important;
  z-index: 5;
}

.flipster--carousel .flipster__item--past-1 .flipster__item__content,
.flipster--carousel .flipster__item--future-1 .flipster__item__content {
  transform: translate(-10px, 0px) scale(0.8) !important;
  z-index: 4;
}

.flipster--carousel .flipster__item--past-2 .flipster__item__content,
.flipster--carousel .flipster__item--future-2 .flipster__item__content {
  transform: translate(80px, 0px) scale(0.7) !important;
  z-index: 3;
}

.flipster--carousel .flipster__item--past-3 .flipster__item__content,
.flipster--carousel .flipster__item--future-3 .flipster__item__content {
  opacity: 0 !important;
  transform: scale(0.5) !important;
  z-index: 2;
}

.flipster--carousel .flipster__item--future-2 .flipster__item__content {
  transform: translate(-120px, 0px) scale(0.7) !important;
}

/* ------------------------------------------ COMING SOON PAGE ---------------------- */

section.coming-soon {
  position: relative;
  overflow: hidden;
  height: 100dvh;
  width: 100%;
}

section.coming-soon .comingWraper {
  position: relative;
  height: 100%;
}

img.coming-soon-bg {
  height: 100%;
  width: 100%;
  object-fit: fill;
  object-position: center;
  position: absolute;
  top: 0;
}

.cominContent {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cominContent .container-fluid.maxWidth {
  position: relative;
}

.coming-center-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 0px 10px;
}

.coming-logo a {
  display: inline-block;
}

.coming-logo a img {
  width: 24%;
  display: inline-block;
  position: relative;
}

.coming-text h1 {
  font-size: 120px;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0;
}

.coming-text .newlatter-form {
  background: transparent;
}

.coming-text .newlatter-form .newsform:before {
  background: #acacac2b;
}

.coming-days-list-item {
  position: relative;
}

.coming-days-list-item .timer-bg {
  position: relative;
}

.coming-days-list-item .timer-bg:before {
  position: absolute;
  content: "";
  width: 40%;
  height: 40%;
  background: #00e5ffc7;
  right: 0;
  left: 0;
  margin: 0px auto;
  top: 20px;
  filter: drop-shadow(2px 4px 29px #00e5ffcf);
  transition: 0.3s;
}

.timer-txt {
  position: relative;
  width: 94px;
  background: #17a8ff;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: 0.3s;
}

.timer-txt:before {
  position: absolute;
  content: "";
  width: 87%;
  height: 100%;
  left: 0;
  top: 0px;
  background: #232837;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  right: 0;
  margin: 0px auto;
  transition: 0.4s;
}

.timer-txt h6 {
  position: relative;
  margin: 0px;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  transition: 0.2s;
  letter-spacing: 1px;
}

.timer-txt h6 span {
  display: block;
}

.coming-days-list-item .timer-bg:hover:before {
  filter: drop-shadow(2px 4px 89px #fff);
}

.coming-days-list-item .timer-bg:hover .timer-txt {
  transform: rotate(45deg);
}

.coming-days-list-item .timer-bg:hover .timer-txt:before {
  background: #1ba9ff;
  clip-path: unset;
}

.coming-days-list-item .timer-bg:hover .timer-txt h6 {
  transform: rotate(-45deg);
}

.coming-text .newlatter-form .newsform input {
  color: #fff;
}

.coming-gift {
  position: relative;
}

.coming-gift img {
  width: 23%;
  position: relative;
  bottom: -30px;
}

.coming-text p {
  font-size: 13px;
}

.coming-left-col {
  position: relative;
}

img.comin-left-monkey {
  position: relative;
  left: -20px;
  filter: drop-shadow(2px 13px 16px #00000042);
}

.coming-right-col {
  position: relative;
}

img.comin-right-monkey {
  position: relative;
  right: -20px;
  filter: drop-shadow(2px 13px 16px #00000042);
}

.coming-text {
  margin-top: 30px;
}

img.coming-trophy-img {
  position: absolute;
  right: -60px;
  top: -70px;
  z-index: 1;
}

img.coming-green-img {
  position: absolute;
  top: 8%;
  z-index: 12;
  left: 2%;
}

img.coming-right-trophy-img {
  position: absolute;
  bottom: 6%;
  left: -6%;
}

img.coming-reed-shape-img {
  position: absolute;
  right: 0%;
  bottom: 3%;
}

img.coming-totot-img {
  position: absolute;
  bottom: 40px;
  right: 42%;
}

img.coming-yl-img-shape {
  position: absolute;
  right: 0;
  bottom: 40px;
}

img.coming-right-trophy-img {
  animation: rotateLeftRight 4s ease-in-out infinite;
}

img.coming-trophy-img {
  animation: rotateLeftRight 6s ease-in-out infinite;
}

.coming-gift img {
  animation: rotate 10s linear infinite;
}

.coming-yl-img-shape {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

img.coming-green-img {
  animation: zoomOnceRotate 5s ease-out forwards infinite;
}

img.coming-reed-shape-img {
  animation: rotateXaxis 5s linear infinite;
}

img.coming-soon-bg {
  animation: bgZoom1 10s ease-in-out infinite;
}

/* --------------------------------------- COMING SOON PAGE ------------------------ */

.table-responsive {
  width: 100%;
}

.table-responsive table {
  width: 100%;
}

.table-responsive table th,
td {
  border: 1px solid #fff;
  padding: 18px;
  text-transform: uppercase;
  font-family: "Blender";
}

/* =================   */

/* InnerPages Start  */

section.innerbanner {
  position: relative;
  overflow: hidden;
}

img.inner-banner-img {
  height: 540px;
  width: 100%;
  margin-top: -4px;
  object-fit: cover;
}

.innerbanner_wraper {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: 0;
  flex-direction: column;
  text-align: center;
}

.innerbanner_wraper .inner-txt {
  position: relative;
  padding-top: 80px;
}

img.inner-ban-green-sh {
  position: absolute;
  left: 1%;
  top: 30%;
  animation: rotateXaxis 5s linear infinite;
}

img.inner-ban-leaf-img-win {
  position: absolute;
  right: 7%;
  bottom: 37%;
  animation: rotateXaxis 5s linear infinite;
}

img.about-page-img1 {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 100% 30%;
  position: relative;
}

.about-detail {
  padding-top: 80px;
}

.abt-detailWrap {
  width: 94%;
  margin: 0px auto;
}

.abt-detail-txt p:last-child {
  margin: 0;
}

/* InnerPages Start  */

/* Contact Start  */

.cnt-links p a {
  color: #fff;
}

.cnt-links h5 {
  color: #fff;
  padding-bottom: 18px;
  position: relative;
  letter-spacing: 1px;
}

.cnt-links {
  position: relative;
  background: #212737;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 24px;
  margin: 0px 5px;
}

.cnt-links h5:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  background: #fff;
  opacity: 41%;
  bottom: 0;
}

form.contactForm {
  padding: 0 40px;
}

form.contactForm input,
form.contactForm select,
form.contactForm textarea {
  width: 100%;
  padding: 18px 24px;
  margin-bottom: 14px;
  border: 0;
  text-transform: uppercase;
  color: #ffffff8a;
  font-weight: 500;
  background: #212737;
  font-size: 12px;
}

form.contactForm textarea {
  height: 150px;
  resize: unset;
}

form.contactForm textarea::placeholder {
  position: absolute;
  bottom: 21px;
}

form.contactForm .sitebtn button {
  border: 0;
  margin-top: 16px;
}

.contact-page-wrap {
  width: 90%;
  margin: auto;
}

.cnt-links p {
  margin: 0;
}

.cnt-links p a {
  display: inline-block;
  transition: 0.2s;
}

.cnt-links p a:hover {
  color: #17a8ff;
  text-decoration: underline;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

.cnt-top-links {
  position: relative;
  padding: 40px 0px 100px;
}

/* Contact end */







.notification-wrapper {
  position: fixed;
  bottom: 0%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.notification-card {
  background: #212737;
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding: 24px 20px;
  width: 330px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 24px;
}

.notification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 179, 255, 0.3);
}

.notify-icon {
  position: relative;
}

.notify-content h5 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 3px;
}

.notify-content p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 20px;
  opacity: 50%;
}

.notify-icon:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 40%;
  background: #00e5ff66;
  right: 0;
  left: 0;
  margin: 0px auto;
  top: 20px;
  filter: drop-shadow(2px 4px 26px #00e5ffcf);
}

.notify-icon .notify-inner-i {
  position: relative;
  width: 70px;
  background: #17a7ff;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: 0.3s;
}

.notify-icon .notify-inner-i:before {
  position: absolute;
  content: "";
  width: 87%;
  height: 100%;
  left: 0;
  top: 0px;
  background: #232938;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  right: 0;
  margin: 0px auto;
  transition: 0.4s;
}

.notify-icon .notify-inner-i i {
  font-size: 15px;
  position: relative;
  color: #00b3ff;
}

/* ---------------------------------------- Popup page ------------------------------ */
/* ---------------------------------------- Popup page ------------------------------ */

/* Popup Background */
.winner-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.winner-popup {
  position: relative;
  color: #fff;
  width: 900px;
  max-width: 90%;
  text-align: center;
  padding: 100px 40px 120px;
  overflow: hidden;
  background-image: url(../images/popup-bg-img.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Headings */

.winner-popup h4 {
  color: #00aaff;
  margin-bottom: 10px;
  font-family: "Blender";
}

.winner-popup p {
  max-width: 70%;
  margin: 0 auto;
  font-size: 12px;
  opacity: 60%;
}

/* Prize Boxes */
.badge-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #161a26;
  padding: 14px 26px;
  user-select: none;
  transition: all 0.3s ease;
  border: 0px;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  font-family: "Blender";
  text-transform: uppercase;
  color: #ffffffba;
  font-size: 13px;
}

.winner-popup button.pbtn {
  background: #0678c1;
  min-width: auto;
  width: 100%;
  clip-path: polygon(7% 0, 92% 0, 100% 45%, 94% 100%, 6% 100%, 0 50%);
}

.winner-popup button.pbtn span {
  background: #17a2f5;
  width: 100%;
  clip-path: polygon(7% 0, 92% 0, 100% 45%, 94% 100%, 6% 100%, 0 50%);
  padding: 14px 40px;
}

.winner-popup .bt {
  width: 53%;
  padding-top: 10px;
}

.winner-popup button.pbtn:hover span {
  background: #24293b;
}

/* Bottom Blue Shape */

/* Close Button */
.close-btn {
  position: relative;
  color: #fff;
  line-height: 28px;
  transition: 0.3s ease;
  background: transparent;
  border: 0px;
  padding: 0px;
  font-size: 32px;
  width: 100%;
  height: 100%;
}

.close-btn:hover {
  background: #00b3ff;
}

.winner-popup .notify-icon {
  position: absolute;
  top: 20px;
  right: 25px;
}

img.popup-leaf-1 {
  position: absolute;
  right: 90px;
  top: 22px;

  animation: rotateXaxis 4s linear infinite;
}

img.poput-rihgt-trophy-img {
  position: absolute;
  right: 20px;
  width: 110px;
  top: 49%;
  animation: rotateLeftRight 5s ease-in-out infinite;
}

img.red-leaf-popup {
  position: absolute;
  left: 70px;
  bottom: 4%;
  width: 50px;

  animation: rotateLeftRight 13s ease-in-out infinite;
}

img.popup-leaf-2 {
  position: absolute;
  left: 16%;
  animation: rotateXaxis 5s linear infinite;
}

img.yellow-img-popup {
  position: absolute;
  top: 64px;
  left: 31%;
  animation: zoomOnceRotate 5s ease-out forwards infinite;
}

.winner-popup h2 {
  font-size: 80px;
  line-height: 85px;
}

/* ======================== */

.instant-win {
  padding-top: 80px;
}

.border-bottom {
  border-bottom: 1px solid #dee2e62e !important;
}

.win-box {
  position: relative;
  clip-path: polygon(21% 0%,
      79% 0,
      100% 24%,
      100% 80%,
      80% 100%,
      21% 100%,
      0 80%,
      0 20%);
  background: #262d3e;
  margin: 20px 10px;
  height: 210px;
  text-align: center;
  padding: 0px 14px;
  transition: 0.3s;
}

.win-bt-top {
  margin: 0px auto;
}

.win-box .bt:before {
  display: none;
}

.win-box .bt .pbtn span {
  padding: 10px 40px;
}

.win-box .win-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.win-box:before {
  position: absolute;
  content: "";
  width: 99%;
  height: 99%;
  background: #161a26;
  left: 0;
  right: 0;
  margin: 0px auto;
  top: 1px;
  clip-path: polygon(24% 0%,
      79% 0,
      100% 26%,
      100% 80%,
      77% 100%,
      25% 100%,
      0 80%,
      0 20%);
  transition: 0.3s;
}

.win-bt-top.bt .pbtn span {
  background: #161a26;
}

.win-bt-top.bt .pbtn {
  background: #262d3e;
  border: 1px solid #262d3e;
}

.win-bt-bottom.bt .pbtn span {
  background: #212737;
}

.win-bt-bottom.bt .pbtn {
  background: #262d3e;
}

.win-box-outer-wrap.active .win-box,
.win-box-outer-wrap:hover .win-box {
  background: #17a8ff;
  z-index: 1;
}

.win-box-outer-wrap.active .win-box:before,
.win-box-outer-wrap:hover .win-box:before {
  background: #212839;
}

.win-box-outer-wrap.active .win-box .win-bt-top.bt .pbtn span,
.win-box-outer-wrap:hover .win-box .win-bt-top.bt .pbtn span {
  background: #17a8ff;
}

.win-box-outer-wrap.active .win-box .win-bt-top.bt .pbtn,
.win-box-outer-wrap:hover .win-box .win-bt-top.bt .pbtn {
  background: #148ed7;
}

.win-box-outer-wrap.active .win-box .win-bt-bottom.bt .pbtn,
.win-box-outer-wrap:hover .win-box .win-bt-bottom.bt .pbtn {
  background: #148ed7;
  border: 1px solid #148ed7;
}

.win-box-outer-wrap.active:after {
  position: absolute;
  content: "";
  width: 60%;
  height: 60%;
  background: #17a8ffc7;
  right: 0;
  left: 0;
  margin: 0px auto;
  top: 40px;
  filter: drop-shadow(2px 4px 66px #17a8ffde);
}

.win-box-outer-wrap {
  position: relative;
  opacity: 50%;
  transition: 0.3s;
}

.win-box-outer-wrap.active,
.win-box-outer-wrap:hover {
  opacity: 1;
}

/* ========== */

img.winer-dt-iner {
  width: 100%;
  height: 340px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: top;
}

section.winner-dt-page .ab-right {
  padding: 0px 20px;
}

.prize-card {
  position: relative;
  background: #212737;
  padding: 12px;
  margin: 0px 5px;
}

img.prize-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.2s;
}

.prize-card .prize-card-txt {
  position: relative;
  padding-top: 32px;
}

.prize-card .prize-card-txt .modal-img {
  width: 120px;
  position: absolute;
  right: 0;
  top: -70px;
}

.winner-dt-bxg {
  width: 100%;
  text-align: center;
  padding: 18px 0px 10px;
}

.winner-dt-bxg .badge-box {
  width: 100%;
  font-size: 15px;
  padding: 14px 0;
  text-align: center;
  justify-content: center;
  color: #fff;
}

section.pirze .slick-slide {
  opacity: 1;
  margin: 80px 10px 0px;
}

section.pirze .slick-slide.slick-current {
  position: relative;
  transform: translate(0px, -80px);
}

/* ============================================== */

section.winners {
  position: relative;
  padding: 120px 0 40px;
}

.winers-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.winer-img img {
  height: 100px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.winer-name p {
  color: #ffffff47;
  font-family: "Blender";
  text-transform: uppercase;
  font-size: 15px;
}

.winers-list-item {
  padding: 10px;
  background: #1d2230;
  border-radius: 5px;
  transition: 0.3s;
  gap: 50px;
  padding-right: 60px;
}

.winers-list-item:hover {
  background: #ffffff14;
  transform: translate(3px, 0px);
}

/* ================================ */

.main-gallery-img img {
  width: 100%;
}

.main-gallery-options {
  width: 80%;
  margin: 0px 0px 0px auto;
  position: relative;
  padding-right: 10px;
}

.main-gallery-options .slick-slide {
  margin: 0px 10px;
  opacity: 1;
}

.gallery-page ul.slick-dots {
  left: 40px;
  width: auto;
  top: -70px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 24px;
  bottom: unset;
}

.gallery-page ul.slick-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  position: relative;
  transform: rotate(45deg);
}

.gallery-page ul.slick-dots button:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #63656d;
  border: 0px;
  opacity: 1;
  outline: 4px solid transparent;
  outline-offset: 0px;
}

.gallery-page ul.slick-dots li {
  margin: 0px;
  width: auto;
  height: auto;
}

.gallery-page ul.slick-dots li.slick-active button:before {
  opacity: 1;
  outline: 1px solid #fff;
  outline-offset: 7px;
  background: #fff;
}

.gallery-page ul.slick-dots li.slick-active {
  opacity: 1;
}

.gal-option-item {
  position: relative;
  cursor: pointer;
}

.gal-option-item img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.gal-option-item img:hover {
  transform: translate(0px, -2px);
}

header .shopping .bt a:before {
  display: none;
}

/* ================================ */

@media (max-width: 1290px) {
  img.comin-left-monkey {
    left: 30px;
  }

  img.comin-right-monkey {
    right: 30px;
  }
}

@media (max-width: 1025px) {
  .coming-text h1 {
    font-size: 80px;
  }

  .coming-text p br {
    display: none;
  }

  .newlatter-form .newsform {
    padding-left: 13px;
    font-size: 12px;
  }

  .coming-text p {
    font-size: 12px;
    line-height: 20px;
    margin: 10px 0px 10px;
  }

  .coming-logo a img {
    width: 16%;
  }

  .coming-gift img {
    width: 18%;
  }

  img.coming-right-trophy-img {
    width: 12%;
  }

  img.coming-trophy-img {
    width: 14%;
    right: -50px;
    top: -60px;
  }
}

@media (max-width: 990px) {
  .coming-text h1 {
    font-size: 60px;
  }

  .newlatter-form .newsform .pbtn span {
    padding: 13px 10px;
    line-height: 22px;
    min-width: 120px;
  }

  .timer-txt h6 {
    font-size: 12px;
    line-height: 16px;
  }

  .timer-txt {
    width: 74px;
    height: 70px;
  }

  .coming-logo a img {
    width: 20%;
  }

  .coming-gift img {
    width: 20%;
  }
}

@media (max-width: 480px) {
  .cominContent {
    position: relative;
    text-align: center;
    padding: 100px 0px 80px;
  }

  img.coming-soon-bg {
    object-fit: cover;
    object-position: 70% 100%;
  }

  img.comin-left-monkey {
    display: none;
  }

  .coming-logo a img {
    width: 35%;
  }

  img.comin-right-monkey {
    display: none;
  }

  .coming-gift img {
    width: 33%;
  }

  .coming-center-col {
    gap: 50px;
  }
}

@media (max-width: 390px) {
  .coming-center-col {
    gap: 0px;
  }

  .coming-gift img {
    width: 23%;
  }

  img.coming-yl-img-shape {
    width: 7%;
  }

  img.coming-reed-shape-img {
    width: 8%;
  }

  img.coming-green-img {
    width: 10%;
  }

  .coming-text p {
    font-size: 11px;
  }

  .pbtn span {
    font-size: 12px;
  }

  .newlatter-form .newsform {
    height: 50px;
    padding-left: 10px;
    font-size: 10px;
  }

  .newlatter-form .newsform .pbtn span {
    padding: 12px 10px;
    line-height: 22px;
    min-width: 100px;
  }

  .timer-txt h6 {
    font-size: 11px;
    line-height: 14px;
  }

  img.coming-soon-bg {
    object-position: 50% 100%;
  }
}


/* ========================================
   COMPETITION PROGRESS BAR - ENHANCED DESIGN
   ======================================== */

/* Progress Bar Container Wrapper */
.progress_wrap_advanced {
  padding: 25px 30px;
  background: linear-gradient(145deg, #1a1f2e 0%, #212737 100%);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(23, 168, 255, 0.15);
  position: relative;
}

.main-gallery-img .slick-slide {
  margin: 0;
}

/* Progress Bar Track */
.competitions-card-bar-main {
  height: 16px;
  margin: 15px 0px;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(90deg, #0d1117 0%, #161a26 50%, #0d1117 100%);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Progress Bar Fill */
.competitions-card-bar {
  width: 0;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #17a8ff 0%, #3dd6ff 50%, #17a8ff 100%);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow:
    0 0 20px rgba(23, 168, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Glass effect overlay on progress bar */
.competitions-card-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
}

/* Glow effect */
.competitions-card-bar::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #17a8ff, #3dd6ff);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(8px);
}

/* Dot Indicator */
.competitions-bar-dot {
  top: 50%;
  width: 24px;
  height: 24px;
  position: absolute;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid #17a8ff;
  right: -10px;
  box-shadow:
    0 0 15px rgba(23, 168, 255, 0.8),
    0 0 30px rgba(23, 168, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  z-index: 10;
}

/* Progress Info Labels */
.progress_info_advanced {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.sold-label {
  color: #17a8ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(23, 168, 255, 0.5);
}

.total-label {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.total-label::before {
  content: 'Total: ';
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 11px;
  margin-right: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .progress_wrap_advanced {
    padding: 20px 20px;
  }

  .competitions-card-bar-main {
    height: 14px;
  }

  .competitions-bar-dot {
    width: 20px;
    height: 20px;
  }

  .sold-label,
  .total-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .progress_wrap_advanced {
    padding: 15px 15px;
  }

  .competitions-card-bar-main {
    height: 12px;
  }

  .competitions-bar-dot {
    width: 18px;
    height: 18px;
  }

  .sold-label {
    font-size: 12px;
  }

  .total-label {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* Flipster Navigation Buttons - White Arrows */
.flipster__button {
  color: #fff !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 20px !important;
  z-index: 100 !important;
}

.flipster__button:hover {
  background: rgba(255, 255, 255, 0.5) !important;
  transform: scale(1.1) !important;
}

.flipster__button--prev {
  left: -30px !important;
}

.flipster__button--next {
  right: 10px !important;
}

/* Arrow symbols */
.flipster__button:before {
  color: #fff !important;
  font-weight: bold !important;
}


.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  position: relative;
}

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(23, 168, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}



/* Coupon Ribbon Marquee */
.coupon-ribbon {
  background: linear-gradient(90deg, #0d1117 0%, #131a2b 50%, #0d1117 100%);
  border-bottom: 1px solid rgba(23, 168, 255, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.coupon-ribbon::before,
.coupon-ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.coupon-ribbon::before {
  left: 0;
  background: linear-gradient(to right, #0d1117, transparent);
}

.coupon-ribbon::after {
  right: 0;
  background: linear-gradient(to left, #0d1117, transparent);
}

.coupon-marquee-track {
  display: flex;
  animation: couponScroll 20s linear infinite;
  width: max-content;
}

.coupon-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes couponScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.coupon-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 40px;
  white-space: nowrap;
  flex-shrink: 0;
}

.coupon-badge {
  background: linear-gradient(135deg, #17a8ff 0%, #0d8bdb 100%);
  color: #fff;
  font-family: 'Blender', 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(23, 168, 255, 0.3);
}

.coupon-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.coupon-text strong {
  color: #17a8ff;
  font-weight: 700;
}

.coupon-divider {
  color: rgba(23, 168, 255, 0.3);
  font-size: 10px;
  padding: 0 5px;
}

@media (max-width: 768px) {
  .coupon-item {
    padding: 6px 25px;
    gap: 8px;
  }

  .coupon-badge {
    font-size: 10px;
    padding: 2px 8px;
  }

  .coupon-text {
    font-size: 11px;
  }
}








/*Inner Blog Section Start*/

.competitions-to-enter-sec {
    padding: 100px 0;
}
.competitions-to-enter-sec ul {
    line-height: 25px;
}


.competitions-to-enter-text h4 {
    margin-bottom: 5px;
}
.competitions-to-enter-images img {
    width: 100%;
    height: 864px;
    object-fit: cover;
    border-radius: 10px;
}
.competitions-to-enter-text {
    margin-top: 40px;
}
.competitions-to-enter-text h2 {
    font-size: 55px;
    line-height: 1;
}
.inner-txt.blog h1 {
    font-size: 70px;
    line-height: 1;
}
/*Inner Blog Section Ends*/




































