@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Gabarito", serif;
  transition: 0.3s;
}

:root {
  /* --body-color: ; */
  --heading-family: "Noto Sans", serif;

  --bgColorBack: #ffffff0a;

  --white-color: white;
  --black-color: black;
  --text-color: #ff0000;
  --red-color-bg-1: #c40404;
  --red-color-bg-2: #f33323;
  --red-color-bg-3: #580000;
  --red-color-bg-4: #580000;
}

body {
  background-color: var(--red-color-bg-3);
  background-image: url("/assets/p-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
}

.d-flex {
  display: flex;
  gap: 20px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.col-1 {
  flex: 1;
}

.col-2 {
  flex: 2;
}

.col-3 {
  flex: 3;
}

.col-4 {
  flex: 4;
}

.col-5 {
  flex: 5;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.center {
  text-align: center;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 30px 50px;
}

.container-fluid {
  max-width: 1280px;
  margin: auto;
  padding: 10px 50px;
}

.main-heading {
  margin-bottom: 50px;
}

.main-heading h1 {
  font-size: 60px;
  color: var(--white-color);
  line-height: 1;
  font-weight: 900;
  font-family: var(--heading-family);
  margin-bottom: 10px;
}

.main-heading p {
  letter-spacing: 0.4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}

.arrowFlexUnderline {
  gap: 20px;
}

.arrowFlexUnderline .underline {
  border: 2px solid var(--red-color-bg-4);
  width: 100%;
}

.arrowFlexUnderline .icons {
  width: 60px;
  line-height: 30px;
  height: 30px;
  background-color: var(--red-color-bg-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrowFlexUnderline .icons i {
  color: #ff0000;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(156, 6, 5);
  /* Black fallback color */
  background-color: rgba(156, 6, 5, 0.9);
  /* Black w/opacity */
  overflow-x: hidden;
  /* Disable horizontal scroll */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%;
  /* 25% from the top */
  width: 100%;
  /* 100% width */
  text-align: center;
  /* Centered text/links */
  margin-top: 30px;
  /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 24px;
  color: var(--text-color);
  display: block;
  /* Display block instead of inline */
  transition: 0.3s;
  /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

header .logo img {
  width: 50px;
}

header ul li a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--white-color);
}

header ul li a:hover,
header ul li a.active {
  color: var(--text-color);
}

header .horizontal-row {
  border: 1px solid var(--red-color-bg-4);
  height: 18px;
}

header .btn a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  border-radius: 9999px;
  background-color: var(--red-color-bg-3);
  font-size: 12px;
  font-weight: 700;
  color: var(--white-color);
}

header span i {
  cursor: pointer;
  font-size: 14px;
  color: var(--text-color);
  border: 2px solid var(--text-color);
  padding: 2.7px 6px;
}

.heroSection img.mainImage {
  max-width: 500px;
  width: 100%;
  margin: auto;
}

.hero-image-container {
  position: relative;
  display: inline-block;
}

.glow-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.3) 0%,
    rgba(255, 0, 0, 0) 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
  to {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

.floating-left-1 {
  top: 10%;
  left: -120px;
  width: 60px;
  height: 60px;
  animation: floatLeft1 6s ease-in-out infinite;
}

.floating-left-2 {
  top: 70%;
  left: -210px;
  width: 170px;
  animation: floatLeft2 5.5s ease-in-out infinite reverse;
}

.floating-left-3 {
  top: 40%;
  left: -210px;
  width: 60px;
  animation: floatLeft3 5.5s ease-in-out infinite reverse;
}

.floating-right-1 {
  top: 5%;
  right: -220px;
  width: 260px;
  animation: floatRight1 7s ease-in-out infinite;
}

.floating-right-2 {
  top: 75%;
  right: -110px;
  width: 60px;
  height: 60px;
  animation: floatRight2 6.5s ease-in-out infinite reverse;
}

.floating-right-3 {
  top: 40%;
  right: -150px;
  width: 60px;
  height: 60px;
  animation: floatRight3 6.5s ease-in-out infinite reverse;
}

@keyframes floatLeft1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatLeft2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scaleX(-1);
  }
  50% {
    transform: translateY(-15px) rotate(-4deg) scaleX(-1);
  }
}

@keyframes floatLeft3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(-4deg);
  }
}

@keyframes floatRight1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(-5deg);
  }
}

@keyframes floatRight2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@keyframes floatRight3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(4deg);
  }
}

.heroSection p {
  color: #d3e1ff;
  text-align: center;
  letter-spacing: 2px;
  font-size: 14px;
}

.heroSection p.minLight {
  margin-top: 10px !important;
  margin-bottom: 20px;
}

.heroSection p.minLight span {
  color: var(--text-color);
}
.heroSection .flexBtn .btn a {
  background: var(--red-color-bg-3);
  padding: 18px 38px;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}

.heroSection .flexBtn .btn.yellowBtn a {
  background: var(--text-color) !important;
  color: var(--black-color);
}

.heroSection .flexBtn {
  margin-bottom: 50px;
}

.bounce .row {
  flex-wrap: wrap;
}

.bounce .row .box {
  max-width: 380px;
  width: 100%;
  flex-basis: 275px;
  flex-grow: 1;
  box-shadow: 0 10px 40px #00000024;
  border-radius: 15px !important;
  border: 2px solid var(--red-color-bg-4) !important;
  background: #ffffff0a !important;
  padding: 24px;
  margin-bottom: 20px;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.bounce .row .box img {
  padding-bottom: 5px;
  max-width: 200px;
  width: 100%;
  object-fit: contain !important;
}

.underlineTextLogo {
  gap: 10px;
  margin-bottom: 30px;
}

.underlineTextLogo .underline {
  width: 100%;
  height: 2px;
  flex: 1;
  background: var(--red-color-bg-4);
}

.underlineTextLogo .gem {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #ffc720;
  align-items: center;
  justify-content: center;
  background: var(--red-color-bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.underlineTextLogo a {
  gap: 5px;
}

.underlineTextLogo p {
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: 0.2px;
  font-style: italic;
  text-transform: uppercase;
}

.bounce .row .box .checkBox {
  background: #00000030;
  line-height: 1;
  border-radius: 12px;
  border: 2px solid var(--red-color-bg-4);
  margin-bottom: 25px;
}

.bounce .row .box .checkBox .boxes {
  padding: 20px;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  border-bottom: 2px solid var(--red-color-bg-4);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bounce .row .box .checkBox .boxes i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #ff0000;
  display: flex; /* Added flex display */
  align-items: center;
  justify-content: center;
  background: var(--red-color-bg-4);
  border-radius: 100px;
  font-size: 15px;
  margin-right: 9px;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.bounce .row .box .checkBox .boxes span {
  flex: 1; /* Allow text to take remaining space */
  text-align: left; /* Align text to left */
}

.bounce .row .box .checkBox .boxes:nth-child(3) i {
  color: gold;
  background: #ffd7001f;
}

.bounce .row .box .checkBox .boxes:nth-child(3) {
  border-bottom: 0px solid transparent;
}

.bounce .row .box .copyBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  background: #00000014;
  padding: 20px;
  border-radius: 12px;
  border: 2px dashed #91c0ff4a;
  cursor: pointer;
  margin-bottom: 14px;
}

.bounce .row .box .copyBox i {
  color: var(--white-color);
}

.bounce .row .box .copyBox p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-size: 900;
  color: var(--white-color);
  letter-spacing: 4px;
}

.bounce .row .box .infoBtnGroup {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.bounce .row .box .infoBtnGroup .btn a {
  background: #ff0000 !important; /* Changed to red */
  color: #081c43 !important;
  box-shadow: inset 0 -5px 0 #00000033 !important;
  letter-spacing: 1px;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease; /* Added transition for smooth animation */
}

.bounce .row .box .infoBtnGroup .btn a:hover {
  transform: translateY(3px); /* Push down effect on hover */
}

.bounce .row .box .infoBtnGroup a.info i {
  box-shadow: inset 0 -5px 0 #00000033 !important;
  background: #3b82f6;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-weight: 900;

  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* CODE FOR LEADERBOARD PAGE */
.swiperSection .boxContent h4 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;
  color: var(--white-color);
}

.swiperSection .boxContent .copyReward {
  background: #ff272749 !important;
  padding-top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  border: 1px solid var(--red-color-bg-3);
  width: 300px;
  margin: auto;
  margin-top: 6px;
  /* transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1); */
}

.swiperSection .boxContent .copyReward i,
.swiperSection .boxContent .copyReward p {
  color: #d8e2f2 !important;
}

.swiperSection .boxContent .copyReward p {
  font-weight: 700;
}

.swiperSection .boxContent h6 {
  color: #d8e2f2 !important;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 1rem;
}

.swiperSection .boxContent h6 span {
  color: var(--text-color);
}

.swiperContent {
  margin-top: 40px;
}

.swiperContent .paymentBtn {
  box-shadow: 0px 4px 4px 0px #0000001a;
  backdrop-filter: blur(25px);
  border-radius: 50px;
  max-width: 1100px;
  margin: 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0px 4px;
  flex-wrap: wrap;
  background: #00000030 !important;
  /* width: 650px; */
}

.swiperContent .paymentBtn button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s;
  height: 76px;

  position: relative;
}

.swiperContent .paymentBtn button img {
  width: 110px;
}

.swiperContent .gf-btn-active::after {
  content: "";
  width: 45px;
  height: 6px;
  background: #ff0000;
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.2s ease;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.swiperContent .paymentLogo {
  width: 100px;
  height: auto;
}

.swiperContent .gf-btn-active {
  border-bottom: 2px solid #000;
}

.swiperContent .gallery {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.swiperContent .gf-column {
  display: none;
  padding: 20px;
  width: 100%;
  text-align: center;
}

/* Show the selected gallery */

.swiperContent .gf-column.show {
  display: block;
}

/* CODE FOR MODEL */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 920px !important;
  background: var(--red-color-bg-3) !important;
  border-radius: 15px !important;
  border: 2px solid var(--red-color-bg-1) !important;
  padding: 30px;
  color: #fff;
  width: 100%;
  z-index: 30;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-header h2 img {
  position: absolute;
  width: 100px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: -16px;
}

.modal-header .close-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  margin: -10px;
  width: 40px;
  height: 40px;
  background: var(--red-color-bg-3);
  border-radius: 100px;
  cursor: pointer;
  font-size: 26px;
  color: var(--white-color);
  border: 2px solid var(--red-color-bg-4);
}

.modal-header .close-btn:hover {
  background-color: var(--red-color-bg-1);
}

.modal-content {
  line-height: 1.6;
}

.modal-content h1 {
  position: relative;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 40px;
}

.modal-content h1::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 5px;
  background: #ffc517;
  border-radius: 10px;
}

.modal-content p {
  padding: 18px;
  border-radius: 12px;
  border: 2px solid var(--red-color-bg-1);
  background: var(--red-color-bg-3);
  margin-bottom: 20px;

  color: #d5e2fc;
  font-size: 14px;
}

.modal-content p span {
  display: inline-block;
  font-weight: 700;
  margin-right: 0.5rem;
  color: var(--white-color);
}

.modal-content p span span {
  color: #ffc517;
}

#modalOverlay2 .modal-content p {
  padding: 0px;
  border-radius: 0px;
  border: none;
  background: none;
  margin-bottom: 5px;

  color: var(--white-color);
  font-size: 14px;
}
#modalOverlay2,
#modalOverlay1 {
  padding: 0px 10px;
}
#modalOverlay2 .modal {
  padding: 30px 30px 50px 30px;
}
#modalOverlay2 .modal-content ul {
  padding: 0px 0px 0px 26px;
}
#modalOverlay2 .modal-content ul li {
  list-style: disc !important;
}
.modal-content .btn a {
  box-shadow: inset 0 -5px 0 #00000033 !important;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  background: #facc15 !important;
  color: #081c43 !important;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: 700;
}

.modal-content .btn a:hover {
  box-shadow: inset 0 5px 0 #00000033 !important;
}

.open-modal-btn {
  background: var(--red-color-bg-1) !important;
  border: 2px solid var(--red-color-bg-3) !important;
  gap: 5px;
  min-width: 150px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: #fff !important;
}

.modelButtons {
  margin-top: 20px;
  flex-wrap: wrap;
}

.modelButtons p {
  background: #00000030 !important;
  border: 2px solid var(--red-color-bg-4) !important;
  gap: 5px;
  min-width: 150px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: #fff !important;
}

.gallery .headingIcons {
  gap: 6px;
}

.gallery .headingIcons img {
  width: 28px;
}
.gallery .headingIcons h1 {
  display: inline;
  font-size: 2rem;
  color: #fff !important;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 900;
  text-align: center;
}

.gallery .mainHeading {
  color: #d8e2f2 !important;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.gallery .gridRow {
  margin-top: 40px;
  flex-wrap: wrap;
}

.gallery .gridRow .box {
  margin-bottom: 30px;
  box-shadow: 0 10px 40px var(--red-color-bg-2);
  border-radius: 15px !important;
  border: 2px solid var(--red-color-bg-1) !important;
  background: #00000030 !important;
  padding: 2rem;
  max-width: 370px;
  flex-basis: 280px;
  flex-grow: 1;
  width: 100%;
  height: 370px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery .gridRow .box .imgNumberBox {
  position: relative;
  margin-bottom: 20px !important;
}

.gallery .gridRow .box .imgNumberBox {
  width: 101px;
  margin: auto;
}

.gallery .gridRow .box .imgNumberBox img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border: 2px solid #ff00002b;
  padding: 6px;
}

.gallery .gridRow .box .imgNumberBox .boxNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
}

.gallery .gridRow .box .imgNumberBox .boxNumber i {
  position: absolute;
  text-shadow: 0 4px 8px #000;
  bottom: -7px;
  font-size: 33px;
}

.gallery .gridRow .box .imgNumberBox .boxNumber p {
  position: absolute;
  z-index: 2;
  color: var(--black-color);
  font-weight: 800;
  font-size: 16px;
  bottom: 0px;
}

.gallery .gridRow .box-1 .imgNumberBox .boxNumber i {
  color: #e5e5e5;
}

.gallery .gridRow .box .mainHeading {
  color: var(--white-color);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  gap: 5px;
}
.gallery .gridRow .box .mainHeading img {
  width: 30px;
}

.gallery .gridRow .box .mainPara {
  color: #ffc81f;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

.gallery .gridRow .box .imgprice {
  gap: 6px;
  margin-bottom: 20px;
}

.gallery .gridRow .box .imgprice img {
  width: 22px;
}

.gallery .gridRow .box .imgprice p {
  font-size: 19px;
  color: var(--white-color) !important;
  font-weight: 600;
}

.gallery .gridRow .box .priceBtn {
  background: linear-gradient(195deg, var(--red-color-bg-1), transparent);
  border-radius: 10px;
  padding: 10px;
  margin-top: 8px;
  width: 190px;
  margin: auto;
}

.gallery .gridRow .box .priceBtn img {
  width: 24px;
}

.gallery .gridRow .box .priceBtn p {
  font-size: 20px;
  font-weight: 800;
  color: #a1f243 !important;
}

.gallery .gridRow .box-2 {
  margin-bottom: 100px;
}

.gallery .gridRow .box-2 .imgNumberBox .boxNumber i {
  color: #ffcf39;
}

.gallery .gridRow .box-3 .imgNumberBox .boxNumber i {
  color: #e98332;
}

.gallery .leaderBoardTable table {
  max-width: 9900px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 50px;
}

.gallery #customers {
  border-collapse: collapse;
  border-radius: 10px !important;
  width: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery #customers td,
#customers th {
  border-bottom: 1px solid var(--red-color-bg-1);

  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: var(--white-color);
  text-align: left;
}

/* .gallery #customers tr.endChild td,
.gallery #customers tr.endChild th{
    border: none !important;
}  */

/* #customers tr:nth-child(even){ */
.gallery #customers td {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: #e5f5f9;
  background-color: rgba(180, 60, 60, 0.2);
  position: relative;
  z-index: 9;
}

.gallery #customers tr td:nth-child(1) {
  width: 25px !important;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 19.2px;
  position: relative;
  z-index: 9;
}

.gallery #customers tr td:nth-child(3) {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: var(--text-color);
}

.gallery #customers tr td:nth-child(4) {
  font-size: 16px;
  font-weight: 900;
  line-height: 19.2px;
  color: #b2ff58 !important;
}

.gallery #customers th {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  text-transform: uppercase;

  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.gallery #customers th:nth-child(1) {
  border-radius: 20px 0px 0px 0px !important;
}
.gallery #customers tr:nth-child(2) th,
.gallery #customers tr:nth-child(3) th,
.gallery #customers tr:nth-child(4) th,
.gallery #customers tr:nth-child(5) th,
.gallery #customers tr:nth-child(6) th,
.gallery #customers tr:nth-child(7) th,
.gallery #customers tr:nth-child(8) th {
  border-radius: 0px 0px 0px 0px !important;
  background-color: rgba(180, 60, 60, 0.2);
}

.gallery #customers th:nth-child(4) {
  border-radius: 0px 20px 0px 0px !important;
}

.gallery #customers tr:nth-child(1) {
  background-color: var(--red-color-bg-3);
  border: none !important;
  backdrop-filter: blur(10px);
}

.gallery #customers img {
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
}

.gallery #customers tr td:nth-child(2) .d-flex {
  gap: 4px;
}

.gallery #customers tr td:nth-child(3) .d-flex,
.gallery #customers tr td:nth-child(4) .d-flex {
  gap: 4px;
}

.gallery #customers tr td:nth-child(3) .d-flex img,
.gallery #customers tr td:nth-child(4) .d-flex img {
  width: 24px;
  height: 24px;
}

.timeWatch {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: -8px !important;
  position: relative;
}

.gallery .timeWatch .special-icon {
  font-size: 77px;
  position: absolute;
  color: #122347;
  z-index: 0;
  top: 0;
  background: -webkit-linear-gradient(#ff572245, var(--text-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px #ff57221a;
}

.gallery .timeWatch .stopWatch {
  position: relative;
  font-size: 24px;
  top: 5px;
  color: var(--text-color);
}

.gallery .timeSection .underlineHaeding {
  margin-top: 20px;
}

.gallery .timeSection .underlineHaeding .underline {
  border: 2px solid var(--red-color-bg-4);
  width: 100%;
}

.gallery .timeSection .underlineHaeding h1 {
  max-width: 258px;
  width: 100%;
  color: var(--white-color);
}

.gallery .count-down .container {
  padding: 20px 10px 10px 10px;
}

.gallery .count-down .row .countdown,
.gallery .count-down .row .countdown .counter {
  gap: 20px;
  display: flex;
  justify-content: center;
}

.gallery .count-down .row .countdown .counter {
  gap: 2px;
  flex-direction: column;
}

.gallery .count-down .row .countdown span {
  color: var(--text-color) !important;
  font-weight: 800;
  font-size: 18px;
}

.gallery .count-down .row .countdown .label {
  font-size: 12px;
  color: #d8e2f2 !important;
}

.gallery .count-down .row .countdown span,
.gallery .count-down .row .countdown .label {
  font-weight: 600;
  line-height: 16.93px;
  font-family: var(--secondary-font);
  display: inline-block;
}

.gallery .lastPara p {
  color: #d8e2f2 !important;
}

.gallery .lastPara p span {
  margin-left: 4px;
  color: var(--white-color);
}

.gallery .btnPrivious a {
  font-weight: 700;
  color: var(--white-color);
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.5rem;
  cursor: pointer;
  background-color: var(--red-color-bg-1);
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Above bg-gradient but below content */
  pointer-events: none; /* Allows clicking through the canvas */
}

.bg-gradient {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 0, 0, 0.3) 0%,
    rgba(156, 0, 0, 0.2) 30%,
    rgba(88, 0, 0, 0.1) 60%,
    rgba(88, 0, 0, 0.05) 100%
  );
  z-index: -1;
}

/* .bg-image img, canvas#bg-animation {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
} */

.leaderBoardBox .row {
  background: #00000030;
  padding: 5rem;
  gap: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  border: 2px solid var(--red-color-bg-4);
  margin-bottom: 50px;
  flex-wrap: wrap;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.leaderBoardBox .col-1 {
  flex-basis: 320px;
  flex-grow: 1;
}

.leaderBoardBox h1 {
  font-weight: 900;
  font-size: 52px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-color);
}

.leaderBoardBox p {
  margin-bottom: 20px !important;
  max-width: 500px;
  color: #adc6eb;
  font-size: 16px;
  margin: 5px auto 0;
  text-align: center;
}

.leaderBoardBox .row .bxo {
  max-width: 600px;
  margin: auto;
}

.leaderBoardBox .row .bxo .iconsBox {
  max-width: 400px;
  margin: auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.leaderBoardBox .row .bxo .iconsBox img {
  max-width: 100px;
  width: 100%;
}

.leaderBoardBox .row .bxo .iconsBox a {
  flex-basis: 120px;
}

.leaderBoardBox .row .bxo .btn a {
  letter-spacing: 1px;
  font-size: 16px !important;
  background: #ff0000;
  padding: 18px 62px;
  border-radius: 12px;
  cursor: pointer;
  color: #000;
  line-height: 28px;
}

.leaderBoardBox .row .bxo .btn a:hover {
  background: #ba0000;
}

.giveaway .numbering {
  color: #fff !important;
  border-radius: 30px;
  border: 2px solid var(--red-color-bg-4);
  background: #00000030;
  margin-bottom: 50px;
  margin-top: 30px;
  /* min-height: 170px; */
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.giveaway .numbering h1 {
  color: var(--white-color);
  font-size: 40px;
}

.giveaway .numbering h1 i {
  font-size: 50px;
  margin-right: 30px;
}

.giveaway .numbering h1 span {
  font-size: 40px;
  padding: 30px;
  background: #00000030;
  border-radius: 12px;
  line-height: 0.5;
  font-size: 40px;
  border: 2px solid var(--red-color-bg-4);
  font-weight: 800;
  margin: 0px 6px;
  display: inline-block;
}

.videosGrid .btn a {
  font-weight: 700;
  padding-top: 16px;
  padding-bottom: 16px;
  padding: 16px 32px;
  color: #000;
  border-radius: 8px;
  background-color: rgb(255, 0, 0);
  display: inline-block;
}

.videosGrid .btn a:hover {
  background-color: rgba(180, 0, 0, 0.95);
}

.videoContent {
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.videoContent .col-1 {
  flex-basis: 270px;
  border: 2px solid var(--red-color-bg-4);
  border-radius: 9px;
  padding: 20px;
  background: #00000030;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.videoContent .col-1 .imgBox {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 8px;
}

.videoContent .col-1 .imgBox img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.videoContent .col-1 .imgBox img:hover {
  transform: translate(-50%, -50%) scale(1.25);
}

.videoContent .col-1 h3 {
  color: var(--white-color);
  line-height: 1.25rem;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.videoContent .col-1 .redBgpara {
  gap: 5px;
}

.videoContent .col-1 .redBgpara p {
  color: #d8e2f2 !important;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 16px;
}

.videoContent .col-1 .redBgpara h6 {
  background-color: #f44336;
  color: #fff;
  padding: 3px 12px;
  margin-left: 5px;
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
}

.videoContent .col-1 .redBgpara h6.blueColor {
  background-color: rgb(14, 165, 233);
}

.videoContent .col-1 .redBgpara h6.orenageCOlor {
  background-color: rgb(249, 115, 22);
}

footer p.center {
  font-size: 12px;
  line-height: 16px;
  color: var(--white-color);
  margin-bottom: 20px;
}

footer .iconsFooter {
  flex-wrap: wrap;
}

footer .iconsFooter i {
  font-size: 30px;
  line-height: 36px;
}

footer .iconsFooter p {
  font-size: 11px;
  margin-top: 3px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

footer .iconsFooter a {
  text-align: center;
  flex-basis: 30px;
}

footer .iconsFooter .red p,
footer .iconsFooter .red i {
  color: rgb(255, 0, 0);
}

footer .iconsFooter .orange p,
footer .iconsFooter .orange i {
  color: rgb(249, 115, 22);
}

footer .iconsFooter .blue p,
footer .iconsFooter .blue i {
  color: rgb(14, 165, 233);
}

footer .iconsFooter .lightBlue p,
footer .iconsFooter .lightBlue i {
  color: rgb(34, 211, 238);
}

footer .iconsFooter .purple p,
footer .iconsFooter .purple i {
  color: rgb(129, 140, 248);
}

footer .iconsFooter .green p,
footer .iconsFooter .green i {
  color: rgb(34, 197, 94);
}

footer .footerNavbar {
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 40px #00000024;
  background: #ffffff0a;
  padding: 24px 34px;
  border-radius: 8px;
  max-width: 660px;
  margin: auto;
  margin: 36px auto;
  flex-wrap: wrap;
}

footer .footerNavbar a {
  font-size: 14px;
  line-height: 20px;
  color: var(--white-color);
}

footer .footerNavbar a:hover {
  color: rgb(213, 213, 213);
}

footer p.mainPara {
  text-align: center;

  color: #d8e2f2 !important;
  font-size: 12px;
  line-height: 16px;
  max-width: 512px;
  margin: auto;
}

html {
  scroll-behavior: smooth;
}

/* Responsible Gambling Section */
.responsible-gambling {
  padding: 40px 0 20px 0;
}

.responsible-gambling-message {
  text-align: center;
}

.responsible-gambling-message h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.responsible-gambling-message p {
  color: #d8e2f2;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.responsible-gambling-message a {
  color: #ff6b6b;
  text-decoration: none;
}

.responsible-gambling-message a:hover {
  color: #ff8787;
}

@media screen and (min-width: 928.99px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 928.98px) {
  .mobile {
    display: none;
  }

  .bounce .row {
    justify-content: center;
  }
  .swiperContent .gf-column {
    padding: 20px 5px;
  }
  .giveaway .numbering h1 span {
    font-size: 20px !important;
    padding: 12px;
    border-radius: 6px;
    margin: 0px 1px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .giveaway .numbering h1 i {
    font-size: 20px;
    margin-right: 5px;
  }
  .giveaway .numbering {
    border-radius: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 20px;
  }
}

@media screen and (max-width: 698.98px) {
  .gallery .headingIcons h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .container {
    padding: 30px 10px;
  }

  .container-fluid {
    padding: 10px 10px;
  }
  footer .footerNavbar {
    justify-content: center;
  }
  .swiperContent .paymentBtn {
    padding: 15px 5px;
  }
  .swiperContent .paymentBtn button {
    height: 55px;
  }

  .leaderBoardBox .row {
    padding: 3rem 1rem 2rem 1rem;
  }
  .giveaway .numbering {
    border-radius: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 20px;
  }

  .main-heading h1 {
    font-size: 40px;
  }
}
