@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Outfit", sans-serif;
}

:root {
  --white-color: white;
  --black-color: black;
}
body {
  background: #030514;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.col-1 {
  flex: 1;
  width: 100%;
}
.col-1-3 {
  flex: 1.3;
  width: 100%;
}
.col-2 {
  flex: 2;
  width: 100%;
}
.col-3 {
  flex: 3;
  width: 100%;
}
.col-4 {
  flex: 4;
  width: 100%;
}
.col-5 {
  flex: 5;
  width: 100%;
}
.center {
  text-align: center;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
  padding: 0px 10px;
}
.containerHeader {
  max-width: 1920px;
  margin: auto;
  margin-bottom: 50px;
  padding: 10px 10px;
}

.mainHeading {
  margin-bottom: 32px;
}
.mainHeading .bounceHeading {
  gap: 10px;
  margin-bottom: 14px;
}
.mainHeading p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #c0c1cc;
}
.mainHeading h1 {
  font-weight: 600;
  font-style: Semibold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white-color);
}
.bounces .mainHeading .bounceHeading img {
  width: 20px;
  height: 20px;
}
.benefits .mainHeading .bounceHeading img {
  width: 22px;
  height: 22px;
  position: relative;
  top: -2px;
}
/* CODE FOR HEADER */
/* The container <div> - needed to position the dropdown content */
header .box .profileLogo .dropdown,
header .box.navBar .dropdown {
  position: relative;
  display: inline-block;
}

/* Direct link nav (no dropdown) */
header .box.navBar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
header .box.navBar a p,
header .box.navBar a {
  color: #c0c1cc;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
header .box.navBar a img {
  height: 18px;
}

/* Hover effects for direct nav links */
header .box.navBar a {
  position: relative;
}
header .box.navBar a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}
header .box.navBar a:hover,
header .box.navBar a:hover p {
  color: #f1f1f1;
}
header .box.navBar a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Gentle lift on connected tiles */
.connected .row .box:hover {
  transform: translateY(-4px);
  box-shadow: 0px 6px 10px 0px #00000033;
  border-color: #2b304a;
}

/* Dropdown Content (Hidden by Default) */
header .box .profileLogo .dropdown-content,
header .box.navBar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #030514;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(250, 250, 250, 0.1);
  border-radius: 10px;
  z-index: 1;
  padding: 8px 0px;
}
header .box .profileLogo .dropdown-content {
  left: -100px;
}
/* Links inside the dropdown */
header .box .profileLogo .dropdown-content a,
header .box.navBar .dropdown-content a {
  color: #c0c1cc;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 12px;
  font-weight: 700;
  font-style: Bold;
}
header .box .profileLogo .dropdown-content a:hover,
header .box.navBar .dropdown-content a:hover {
  transform: translateX(10px);
}

/* Show the dropdown menu on hover */
header .box .profileLogo .dropdown:hover .dropdown-content,
header .box.navBar .dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */

header .box .profileLogo .dropdown .dropbtn,
header .box.navBar .dropdown .dropbtn {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  gap: 4px;
}

header .box .profileLogo .dropdown .dropbtn p,
header .box.navBar .dropdown .dropbtn p {
  color: #c0c1cc;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

header .box .profileLogo .dropdown .dropbtn i,
header .box.navBar .dropdown .dropbtn i {
  font-size: 12px;
  opacity: 0.8;
  color: #c0c1cc;
}
header .box {
  gap: 22px;
}
header .box .logo {
  max-width: 134.20001220703125px;
  width: 100%;
  height: 21.450000762939453px;
}
header .box.menuBox {
  gap: 18px;
}

/* Kick sign-in button (POC) */
header .box.menuBox .btn-kick-signin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #17ff3a; /* neon green */
  color: #041b08;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(23,255,58,0.3);
}
header .box.menuBox .btn-kick-signin img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%);
}
header .box.menuBox .btn-kick-signin:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(23,255,58,0.45);
}

/* Mock login state: when body has .is-logged-in hide sign-in button */
body.is-logged-in header .box.menuBox .btn-kick-signin {
  display: none !important;
}

/* Default: hide logged-in UI until signed in (POC) */
header .box.menuBox .priceLogo,
header .box.menuBox .profileLogo {
  display: none !important;
}

/* When logged in: show points and profile dropdown */
body.is-logged-in header .box.menuBox .priceLogo,
body.is-logged-in header .box.menuBox .profileLogo {
  display: flex !important;
}

/* The Overlay (background) */
header .box.menuBox .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(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 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 */
header .box.menuBox .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 */
header .box.menuBox .overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  font-style: bold;

  color: #c0c1cc;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
  margin-bottom: 20px;

  text-transform: uppercase;
}

/* When you mouse over the navigation links, change their color */
header .box.menuBox .overlay a:hover,
header .box.menuBox .overlay a:focus {
  color: #f1f1f1;
}
header .containerHeader {
  border-bottom: 1px solid #2b2f49;
}
/* 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) {
  header .box.menuBox .overlay a {
    font-size: 20px;
  }
  header .box.menuBox .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

header .box.menuBox h5.wellat {
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  color: var(--white-color);
}
header .box.menuBox .priceLogo {
  gap: 6px;
}

footer .row.topLogoRow .secondaryBox a {
  display: block;
}
footer .row.topLogoRow .secondaryBox .logo {
  width: 190.80001831054688px;
}
footer .row.topLogoRow .secondaryBox p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #c0c1cc;
}
footer .row.topLogoRow .secondaryBox h2 {
  margin-bottom: 16px;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--white-color);
}
footer .row.topLogoRow .secondaryBox .box a {
  margin-bottom: 12px;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #c0c1cc;
}
footer .row.topLogoRow .secondaryBox {
  gap: 80px;
  /* flex-basis: 300px; */
}
footer .row.topLogoRow {
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
footer .paraRow .logoPara img {
  width: 40px;
  height: 20px;
}
footer .paraRow .logoPara {
  gap: 12px;
  margin-bottom: 14px;
}
footer .paraRow .logoPara p,
footer .paraRow .logoPara a {
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #c0c1cc;
}
footer .paraRow .logoPara a {
  color: var(--white-color);
}

footer .paraRow p.mainPara {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #c0c1cc;
}
footer .paraRow {
  max-width: 1200px;
  width: 100%;
  min-height: 118px;
  border-radius: 10px;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(3, 5, 20, 0.6) 0%,
    rgba(3, 5, 20, 0.4) 100%
  );
}
footer {
  background: #191c2f40;
  border-top: 1px solid #2b2f49;
  padding: 32px 0px;
}
footer .container {
  margin-bottom: 0px !important;
}

.btn a:hover {
  transform: scale(1.05);
}

.connected .row {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.connected .row .box {
  max-width: 286.5px;
  width: 100%;
  flex-basis: 260.5px;
  flex-grow: 1;
  min-height: 96px;
  padding-top: 24px;
  padding-right: 22px;
  padding-bottom: 24px;
  padding-left: 22px;
  gap: 24px;
  border-radius: 12px;
  background: #191c2f;
  border: 1px solid #191c2f;
  backdrop-filter: blur(24px);
  box-shadow: 0px 4px 6px 0px #0000001a;
}

.connected .row .box h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
  margin-bottom: 8px;
}

.connected .row .box .paraIcons {
  gap: 6px;
}
.connected .row .box .paraIcons p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #c0c1cc;
}
.connected .row .box .paraIcons i {
  opacity: 0.5;
  color: #c0c1cc;
  font-size: 10px;
  transform: rotate(-45deg);
}
.connected .row .box .priBox img {
  width: 48px;
  height: 48px;
}

.connected .row .box:hover i {
  transform: rotate(0deg);
}

.connected .row .box .priBox:hover i {
  transform: translateX(10px);
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  margin-bottom: 16px;
}
.swiper-slide h1 {
  font-size: 16px;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;

  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 8px;
  font-weight: 600;
  font-style: SemiBold;
}
.swiper-slide h6 {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
  color: #c0c1cc;
  line-height: 100%;
  letter-spacing: 0%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide .bannerView {
  position: relative;
}
.swiper-slide .viewCount {
  width: 62px;
  min-height: 24px;
  gap: 6px;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 15, 0.9) 0%,
    rgba(5, 6, 15, 0.8) 100%
  );
  box-shadow: 0px 1px 2px 0px #00000040;
  position: absolute;
  bottom: 0px;
  left: 8px;
  bottom: 7px;
}
.swiper-slide .viewCount p {
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 100%;
  color: #c0c1cc;
  letter-spacing: 0%;
}
.swiper-slide .viewCount i {
  font-size: 10.749924659729004px;
  color: #c0c1cc !important;
}
.youtubeVideo .btnYoutubeWatch a {
  width: 207px;
  min-height: 40px;
  gap: 8px;
  border-radius: 25px;
  background-color: #2b2e45;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtubeVideo .btnYoutubeWatch a p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  text-shadow: 0px 1px 1px #0000001a;
  color: #c0c1cc;
}
.youtubeVideo .btnYoutubeWatch a i {
  font-size: 12px;
  color: #c0c1cc;
  position: relative;
  top: 2px;
}
/* CODE FOR onCasino SECTION */
.onCasino .container {
  background: url(../images/onCasino.svg) no-repeat center center/cover;
  min-height: 280px;
  padding: 50px 51px;
}
.onCasino .container img {
  margin-bottom: 16px;
  width: 56px;
  height: 28px;
}
.onCasino .container .col-12 {
  max-width: 400px;
}
.onCasino .container .col-12 h1 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0%;
  text-shadow: 0px 2px 2px #0000000d;
  color: var(--white-color);
  margin-bottom: 14px;
}
.onCasino .container .col-12 p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #c0c1cc;
  margin-bottom: 44px;
}
.onCasino .container .col-12 .btn a {
  width: 112px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background-color: #3773b7;
  box-shadow: 0px 1px 2px 0px #00000040;

  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;

  color: var(--white-color);
  text-shadow: 0px 1px 1px #0000001a;
}
/* CODE FOR girdBox Section */
.girdBox .row {
  flex-wrap: wrap;
  gap: 18px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
.girdBox .row .box {
  flex-basis: 300px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.girdBox .row .box img {
  width: 100%;
  max-width: 400px;

  /* height: 206px; */
}
.girdBox .row .box:hover img {
  transform: scale(0.95);
}
/* code for timer section */
.timer .container {
  background: url(../images/bgTimer.svg) no-repeat center center/cover;
  margin-bottom: 80px;
  padding-bottom: 60px;
}
.timer .row {
  margin-top: 100px;
}
.timer .row .col-12 {
  /* 11.87px */
  width: 549.0213623046875px;
  min-height: 116.7516860961914px;
  border-radius: 296.86px;
  padding: 12px;
  background: #191c2f;
  border: 1px solid #23263f;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timer .row .col-12 .counterTime {
  width: 525.0213623046875px;
  min-height: 92.7516860961914px;
  border-radius: 296.86px;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 15, 0.6) 0%,
    rgba(5, 6, 15, 0.4) 100%
  );
}

.timer .row .col-12 .counterTime .fixedWith {
  position: relative;
  width: 57.025936126708984px;
}
.timer .row .col-12 .counterTime .nuumberBox {
  font-weight: 700;
  font-style: Bold;
  font-size: 57px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: center;
  width: 40.372955322265625px;
  color: var(--white-color);
  text-shadow: 0px 0px 19px #ffffff14;
}
.timer .row .col-12 .counterTime .nuumberBox .coloma {
  position: absolute;
  right: -3.6px;
  bottom: 10px;

  font-weight: 700;
  font-style: Bold;
  font-size: 45.12px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #c0c1cc;
  text-shadow: 0px 0px 28.5px #a0a2b726;
  text-shadow: 0px 0px 19px #a0a2b714;
}
.timer .row .col-12 .counterTime .minWidth {
  gap: 11.87px;
  width: 468.02423095703125px;
}

.timer .row .col-12 .counterTime .nuumberBox .borderRightLine {
  position: absolute;
  right: 0px;
  top: -10px;
  bottom: -10px;
  height: 100px;
}
.timer .row .col-12 .counterTime .nuumberBox.dollar {
  color: #3773b7;
  text-shadow: 0px 0px 19px #a0a2b714;
}

/* code for hero section */
.heroSection .container {
  min-height: 90vh;
  background: url(../images/heroBG.svg) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px !important;
}
.heroSection .container .headerLogo {
  width: 177.5297393798828px;
  height: 35.23876953125px;
  margin: auto;
  display: block;
  margin-bottom: 18px;
}
.heroSection .container h1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 66px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  max-width: 453px;
  margin: auto;
  color: var(--white-color);
  text-shadow: 0px 4px 12px #0000001a;
}
.heroSection .container p.mainPara {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #c0c1cc;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 54px;
}
.heroSection .container .gridBtn {
  gap: 14px;
}
.heroSection .container .gridBtn .btn a.blue {
  background-color: #3773b7;
  width: 117px;
  height: 40px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--white-color);
  text-shadow: 0px 1px 1px #0000001a;

  position: relative;
}
.btn a {
  position: relative;
}
.btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.heroSection .container .gridBtn .btn a.leaderBtn {
  max-width: 141px;
  min-height: 40px;
  gap: 8px;
  border-radius: 25px;
  padding-top: 4px;
  padding-right: 18px;
  padding-bottom: 4px;
  padding-left: 18px;
  border-width: 1px;
  background: #2b2e45;
  box-shadow: 0px 1px 2px 0px #00000040;
}
.heroSection .container .gridBtn .btn a.leaderBtn p {
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: #c0c1cc;
  text-shadow: 0px 1px 1px #0000001a;
}
.heroSection .container .gridBtn .btn a.leaderBtn img {
  width: 14px;
}
.swiper-container.swiperModelNew {
  width: 100%;
  max-width: 900px;
  width: 100%;
  height: 400px;
  position: relative;
  perspective: 1000px;
}

.swiperModelNew .card {
  position: absolute;
  width: 280px;
  height: 336px;
  background: #121424;

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 42px 22px 24px 22px;
  cursor: grab;
  /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
  box-shadow: 0px 4px 6px 0px #0000001a;

  left: 50%;
  top: 50%;
  transform-origin: center center;
  user-select: none;
  gap: 30px;
  text-align: center;
}

.swiperModelNew .card:active {
  cursor: grabbing;
}

/* Card positioning */
.card:nth-child(1) {
  z-index: 3;
}
.card:nth-child(2) {
  z-index: 2;
}
.card:nth-child(3) {
  z-index: 1;
}

.card.left {
  transform: translate(-50%, -50%) translateX(-144px) scale(1) rotateY(0deg)
    rotateZ(-6deg);
  opacity: 0.8;
}

.card.center {
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 10 !important;
  top: 179px;
}

.card.right {
  transform: translate(-50%, -50%) translateX(144px) scale(1) rotateY(0deg)
    rotateZ(6deg);
  opacity: 0.8;
}

.card.dragging {
  transition: none;
  z-index: 20 !important;
}

.indicators {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

/* .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .indicator.active {
        background: #ffffff;
        transform: scale(1.2);
      } */

.card .cardGroup {
  position: relative;
}
.card .cardGroup .winnerPosition img {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.card .cardGroup .logoProfile img {
  width: 74.00000152053434px;
  height: 74.00000152053434px;
  margin-bottom: 24px;
}
.card .cardGroup .logoProfile h1 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffffff;
  text-shadow: 0px 2px 2px #0000000d;
}
.card .cardGroup .logoProfile {
  margin-bottom: 30px;
}
.card .cardGroup .prizeWinner p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #a0a2b7;
  margin-bottom: 8px;
}
.card .cardGroup .prizeWinner h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffffff;
  text-shadow: 0px 2px 2px #0000000d;
  margin-bottom: 30px;
}
.card .cardGroup .btnWinner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 236px;
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  gap: 8px;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 18, 0.8) 0%,
    rgba(8, 9, 18, 0.4) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0px 1px 2px 0px #00000040;
}

.card .cardGroup .btnWinner h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: white;
  text-shadow: 0px 2px 2px #0000000d;
}
.leaderCard {
  overflow: hidden;
}
.leaderCard .contentSwiper img.stakeLogo {
  width: 56px;
  height: 28px;
  margin-bottom: 14px;
}
.leaderCard .contentSwiper h1.mainHEading {
  margin-bottom: 14px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
}
.leaderCard .contentSwiper p.mainPara {
  max-width: 265px;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #c0c1cc;
}

.leaderCard .contentSwiper .btn a {
  max-width: 139px;
  min-height: 40px;
  border-radius: 25px;
  gap: 8px;
  background: #2b2e45;
  text-shadow: 0px 1px 2px #00000040;
  margin-top: 44px;
  padding: 4px 18px;
}
.leaderCard .contentSwiper .btn a p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #c0c1cc;
  text-shadow: 0px 1px 1px #0000001a;
}
.leaderCard .row {
  gap: 50px;
  flex-wrap: wrap;
}
.leaderCard .row .col-1 {
  flex-basis: 400.872192382812px;
  flex-grow: 1;
}

.flexGrid {
  gap: 12px;
}

.flexGrid i {
  font-size: 20px;
}

.flexGrid img {
  max-width: 22px;
}

#cardGold::after {
  content: "";
  background: url(../images/firstCardBg.svg) no-repeat center;
  position: absolute;
  top: -27px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  z-index: -1;
}

#cardBroze::after {
  content: "";
  background: url(../images/thirdCardBg.svg) no-repeat center;
  position: absolute;
  top: -27px;
  left: 0px;
  right: 0px;
  width: 102%;
  height: 100%;
  transform: rotate(-6deg);
  z-index: -1;
}

#cardSilver::after {
  content: "";
  background: url(../images/secondCardBg.svg) no-repeat center;
  position: absolute;
  top: -24px;
  left: 0px;
  right: 0px;
  width: 102%;
  height: 100%;
  transform: rotate(4deg);
  z-index: -1;
}
/* CODE FOR MILSTONE PAGE STARTS HERE */
.madness .container {
  overflow: hidden;
  padding-top: 27px;
}
.madness .col-12 {
  max-width: 380px;
  width: 100%;
  min-height: 175px;
  border-radius: 12px;
  padding: 24px 36px;
  background: #191c2f;

  position: relative;
  z-index: 3;
}
.madness .col-12::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.madness .col-12 .logoHeading {
  margin-bottom: 36px;
  gap: 8px;
}
.madness .col-12 .logoHeading h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
}
.madness .col-12 .logoHeading img {
  width: 18px;
}
.madness .col-12 .progressLevel .box h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #c0c1cc;
  line-height: 140%;
  letter-spacing: 0%;
}
.madness .col-12 .progressLevel .box h4 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: right;
  color: var(--white-color);
}
.madness .col-12 .progressLevel .progressBar {
  margin-top: 0px;
  margin-bottom: 16px;
}
.madness .col-12 .progressLevel .progressBar progress {
  width: 100%;
  height: 8px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 999px;
  overflow: hidden; /* keep rounded corners on the fill */
  background: #03051499;
}

/* Chrome / Edge / Safari */
.madness .col-12 .progressLevel .progressBar progress::-webkit-progress-bar {
  background-color: #03051499; /* track */
}
.madness .col-12 .progressLevel .progressBar progress::-webkit-progress-value {
  background-color: #3773b7; /* bar color */
  border-radius: 999px; /* smooth end cap */
}

/* Firefox */
.madness .col-12 .progressLevel .progressBar progress::-moz-progress-bar {
  background-color: #3773b7; /* bar color */
  border-radius: 999px;
}
.madness .col-12 .progressLevel .box .priBox {
  display: flex;
  align-items: center;
  gap: 6px;
}
.madness .col-12 .progressLevel .box .priBox p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12px;
  color: #c0c1cc;
  letter-spacing: 0%;
}
.madness .col-12 .progressLevel .box .priBox img {
  width: 14.009405136108398px;
}
.madness .col-12 .leftOneCoin {
  position: absolute;
  right: -100px;
  top: -40px;

  width: 65.45213810237107px;
  height: 75.033612531734704px;
}
.madness .col-12 .leftTwoCoin {
  position: absolute;
  right: -80px;
  bottom: 0px;

  width: 49.45213810237107px;
  height: 55.033612531734704px;
}
.madness .col-12 .rightOneCoin {
  position: absolute;
  left: -100px;
  top: 35px;

  width: 75.45213810237107px;
  height: 95.033612531734704px;
}
.madnessShine {
  position: relative;
}
.madnessShine::after {
  content: "";
  position: absolute;
  top: -160px;
  z-index: -99;
  background: url(../images/underlineShine.svg) no-repeat center;
  width: 94%;
  height: 160px;
}

/* code for steps section of mitstones page */
.steps .gridRow {
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.steps .gridRow .gridBox {
  position: relative;
  max-width: 286.5px;
  width: 100%;
  flex-basis: 250px;
  flex-grow: 1;
  min-height: 127px;
  border-radius: 12px;
  backdrop-filter: blur(24px);
  box-shadow: 0px 4px 6px 0px #0000001a;
  background: #191c2f99;
  padding: 20px;
}
.steps .gridRow .gridBox:hover {
  transform: translateY(-5px);
}

.steps .row .longCol {
  position: relative;
  max-width: 1200px;
  width: 100%;
  min-height: 78px;
  border-radius: 12px;
  padding-top: 18px;
  padding-right: 16px;
  padding-bottom: 18px;
  padding-left: 16px;
  background: #191c2f;
  backdrop-filter: blur(24px);
  box-shadow: 0px 4px 6px 0px #0000001a;
  margin-bottom: 16px;
}
.steps .row .longCol::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.steps .row .longCol .priBox .subBox h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 15px;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
  line-height: 120%;
  letter-spacing: 0%;
}

.steps .row .longCol .priBox .subBox p {
  font-weight: 500;
  font-style: Medium;
  font-size: 13px;
  color: #c0c1cc;
  line-height: 140%;
  letter-spacing: 0%;
}
.steps .row .longCol .priBox {
  gap: 18px;
}
.steps .row .longCol .priBox.btn.blue a {
  width: 99px;
  min-height: 40px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  color: var(--white-color);
  text-shadow: 0px 1px 1px #0000001a;
  background-color: #3773b7;
}
.steps .row .longCol .priBox.btn.locked img {
  width: 16px;
}
.steps .row .longCol .priBox.btn.locked p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #c0c1cc;
}
.steps .row .longCol .priBox.btn.locked a {
  gap: 8px;
  width: 135px;
  min-height: 40px;
  border-radius: 25px;
  background: #2b2e45;
  box-shadow: 0px 1px 2px 0px #00000040;
}
.steps .row .longCol:nth-child(3) .priBox.btn.locked a {
  width: 141px;
}
.steps .row .longCol:nth-child(4) .priBox.btn.locked a {
  width: 142px;
}
.steps .row .longCol:nth-child(5) .priBox.btn.locked a {
  width: 144px;
}
.steps .row .longCol:nth-child(6) .priBox.btn.locked a {
  width: 153px;
}
.steps .row .longCol:nth-child(7) .priBox.btn.locked a {
  width: 155px;
}
.steps .row .longCol:nth-child(8) .priBox.btn.locked a {
  width: 156px;
}
.steps .row .longCol:nth-child(9) .priBox.btn.locked a {
  width: 162px;
}
.steps .row .longCol:nth-child(10) .priBox.btn.locked a {
  width: 163px;
}

/* CODE FOR LEADER BOARD PAGE STARTS HERE */
.historySwiper .container {
  position: relative;
  margin-bottom: 80px !important;
}
.historySwiper .topBtnSwip h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;

  color: var(--white-color);
}
.historySwiper .topBtnSwip .box {
  gap: 8px;
  position: relative;
}
.historySwiper .topBtnSwip .box img.watchHistory {
  width: 18px;
}
.historySwiper .row {
  margin-bottom: 22px;
}
.historySwiper .colSwiperSection .swiper-slide img.stakeLogo {
  width: 52px;
  height: 26px;
  margin-bottom: 18px;
}
.historySwiper .colSwiperSection .swiper-slide h1 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffffff;
  text-shadow: 0px 2px 2px #0000000d;
  margin-bottom: 8px;
}
.historySwiper .colSwiperSection .swiper-slide p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #c0c1cc;
  margin-bottom: 18px;
}
.historySwiper .colSwiperSection .swiper-slide .trophyPara h6 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
}
.historySwiper .colSwiperSection .swiper-slide .trophyPara {
  gap: 8px;
  margin-bottom: 24px;
}
.historySwiper .colSwiperSection .swiper-slide .trophyPara img {
  width: 16px;
  height: 16px;
  margin-bottom: 0px !important;
}
.historySwiper .colSwiperSection .swiper-slide .btn a {
  gap: 8px;
  /* max-width: 253.33334350585938px; */
  width: 100%;
  min-height: 40px;
  border-radius: 25px;
  padding-top: 4px;
  padding-right: 18px;
  padding-bottom: 4px;
  padding-left: 18px;
  background: #2b2e45;
  box-shadow: 0px 1px 2px 0px #00000040;
}

.historySwiper .colSwiperSection .swiper-slide .btn a p {
  margin-bottom: 0px !important;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
}
.historySwiper .colSwiperSection .swiper-slide .btn a i {
  color: #c0c1cc;
  font-size: 12px;
}
.historySwiper .colSwiperSection .swiper-slide {
  width: 100%;
  min-height: 234px;
  border-radius: 12px;
  padding-top: 24px;
  padding-right: 22px;
  padding-bottom: 24px;
  padding-left: 22px;
  background: #191c2f;
  backdrop-filter: blur(24px);
  box-shadow: 0px 4px 6px 0px #0000001a;
  position: relative;
}
.historySwiper .colSwiperSection .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.historySwiper .topBtnSwip .box .swiper-button-next {
  position: relative;
  top: 16px;

  max-width: var(--swiper-navigation-size) !important;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  line-height: var(--swiper-navigation-size);
  border-radius: 50%;
  background: #2b2e45;
  text-shadow: 0px 1px 2px #00000040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
}
:root {
  --swiper-navigation-size: 34px !important;
}

/* .swiper-button-next:after, .swiper-button-prev:after{
  font-size: var(--swiper-navigation-size);
} */

.historySwiper .topBtnSwip .box .swiper-button-prev {
  left: -50px !important;
  position: relative;
  max-width: var(--swiper-navigation-size) !important;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  line-height: var(--swiper-navigation-size);
  border-radius: 50%;
  background: #2b2e45;
  text-shadow: 0px 1px 2px #00000040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
}

.historySwiper .topBtnSwip .box .swiper-button-next::after {
  content: "➜";
  font-size: 16px;
  color: #c0c1cc;
}

.historySwiper .topBtnSwip .box .swiper-button-prev::after {
  content: "➜";
  font-size: 16px;
  color: #c0c1cc;
  transform: rotate(180deg);
}

.winnerList .topRow {
  margin-bottom: 18px;
  gap: 8px;
  padding: 0px 12px;
}
.winnerList .topRow p {
  color: #a0a2b7cc;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.winnerList .row {
  position: relative;
  max-width: 928px;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  background: #191c2f;
  padding: 12px;
  backdrop-filter: blur(24px);
  box-shadow: 0px 4px 6px 0px #0000001a;
  margin-bottom: 12px;
}
.winnerList .row::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.winnerList .row .col-1-3 p {
  background: url(../images/Polygon.svg) no-repeat center center/cover;
  width: 28px;
  height: 28px;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  color: #a0a2b7;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.winnerList .row .col-1-3 h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white-color);
}
.winnerList .row .col-1-3 {
  gap: 10px;
}
.winnerList .row p.gray {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  color: #c0c1cc;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-shadow: 0px 2px 2px #0000000d;
}
.winnerList .row p.white {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
}

.winnerList .row .box {
  gap: 6px;
}
.winnerList .row.hideOne {
  position: relative;
  top: -29px;
  z-index: -1;
  transform: scale(0.966);
  opacity: .4 !important;

}
.winnerList .row.hideTwo {
  position: relative;
  top: -59px;
  z-index: -3.4;
  transform: scale(0.9266);
  opacity: .2 !important;
  background: linear-gradient(0deg, #030514, #030514),
linear-gradient(0deg, rgba(25, 28, 47, 0.4), rgba(25, 28, 47, 0.4));
}
.winnerList .row.hideOne p.gray,
.winnerList .row.hideTwo p.gray{
  color: #C0C1CC !important;
}
.winnerList .container {
  position: relative;

  margin-bottom: 10px !important;
}
.winnerList .downListArrow {
  position: absolute;
  bottom: 60px;
  z-index: 9;
  transform: translate(-50%, -50%);
  left: 50%;
  cursor: pointer;
}
.winnerList .counter .counterBox h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
  text-shadow: 0px 2.27px 4.55px #0000000f;
}
.winnerList .counter .counterBox p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #a0a2b7;
}
.winnerList .counter {
  gap: 34px;
}
.winnerList .rowTimer {
  margin-bottom: 60px;
}
.winnerList .rowTimer progress {
  margin-top: 26px;
  width: 100%;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 999px;
  background: transparent;
}

/* Chrome / Edge / Safari */
.winnerList .rowTimer progress::-webkit-progress-bar {
  background-color: transparent; /* track */
}
.winnerList .rowTimer progress::-webkit-progress-value {
  background: linear-gradient(
    90deg,
    rgba(55, 115, 183, 0) -27.46%,
    #3773b7 100%
  );
  border-radius: 999px; /* smooth end cap */
}

/* Firefox */
.winnerList .rowTimer progress::-moz-progress-bar {
  background: linear-gradient(
    90deg,
    rgba(55, 115, 183, 0) -27.46%,
    #3773b7 100%
  );
  border-radius: 999px;
}

/* code for heroLeaderBoard section of leaderboard page */
.leaderboard header .containerHeader {
  margin-bottom: 0px !important;
}
.heroLeaderBoard {
  background: url(../images/leaderBgHero.svg) no-repeat center center/cover;
  margin-bottom: 0px !important;
  max-width: 1340.4443359375px;
  margin: auto;
}
.heroLeaderBoard .container {
  /* min-height: 660px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 70px;
  margin-bottom: 0px !important;
}
.heroLeaderBoard .row .col-12 h2 {
  font-weight: 900;
  font-style: Black;
  font-size: 76px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--white-color);
  text-shadow: 0px 4px 12px #0000001a;
  margin-bottom: 2px;
}
.heroLeaderBoard .row .col-12 h1 {
  text-shadow: 0px 4px 12px #0000001a, 0px -1px 2px #00000059,
    0px 1px 0px #ffffff40;
  font-weight: 900;
  font-style: Black;
  font-size: 82px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #3773b7;
  margin-bottom: 18px;
}
@media screen and (max-width: 681px) {
  .heroLeaderBoard .row .col-12 h2 {
    font-size: 44px;
  }
  .heroLeaderBoard .row .col-12 h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 425px) {
  .heroLeaderBoard .row .col-12 h2 {
    font-size: 44px;
  }
  .heroLeaderBoard .row .col-12 h1 {
    font-size: 42px;
  }
  .winnerList .col-1-3 {
    flex: 1;
    width: 100% !important;
  }
  .winnerList .row p.gray,
  .winnerList .row p.white,
  .winnerList .topRow p {
    font-size: 10px;
  }
  .winnerList .row .col-1-3 h2 {
    font-size: 12px;
  }
  .winnerList .row .box img {
    width: 12px;
  }
  .winnerList .row .col-1-3 p {
    font-size: 10px;
    width: 22px;
    height: 22px;
  }
}
.heroLeaderBoard .row .col-12 p.mainPara {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #a0a2b7;
}
.heroLeaderBoard .row .col-12 img {
  width: 72px;
  height: 36px;
  margin-bottom: 2px;
}
.heroLeaderBoard .row .col-12 {
  margin-bottom: 60px;
}

.heroLeaderBoard .boxCards {
  max-width: 280px !important;
  width: 280px !important;
  flex-basis: 250px;
  flex-grow: 1;
  min-height: 336px;
  border-radius: 12px;
  padding-top: 42px;
  padding-right: 22px;
  padding-bottom: 24px;
  padding-left: 22px;
  background: #121424;
  border: 1px solid #23263f;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.heroLeaderBoard .boxCards::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background: url(../images/cardBgsilver.svg) no-repeat center center/cover;
  z-index: 0;
}
.heroLeaderBoard .boxCards.cardThird::after {
  background: url(../images/cardBgBroze.svg) no-repeat center center/cover;
}
.heroLeaderBoard .boxCards.cardFirst::after {
  background: url(../images/cardBggold.svg) no-repeat center center/cover;
}
.heroLeaderBoard .boxCards.cardFirst {
  margin-bottom: 140px;
}
.heroLeaderBoard .boxCards.cardSecond {
  margin-bottom: 50px;
}

@media screen and (min-width: 849.99px) {
  .pcCard {
    display: none !important;
  }
}

@media screen and (max-width: 849.98px) {
  .topWinnerCards {
    justify-content: center;
  }
  .mobileCard {
    display: none !important;
  }
  .heroLeaderBoard .boxCards.cardFirst {
    margin-bottom: 0px;
  }
  .heroLeaderBoard .boxCards.cardSecond {
    margin-bottom: 0px;
  }
  .heroLeaderBoard .container {
    margin-bottom: 60px !important;
  }
}
.heroLeaderBoard .topWinnerCards {
  gap: 40px;
  flex-wrap: wrap;
}
.heroLeaderBoard .boxCards .logoPosition {
  position: relative;
  margin-bottom: 24px;
}
.heroLeaderBoard .boxCards .logoPosition .winnerLogo {
  width: 74px;
  height: 74px;
}
.heroLeaderBoard .boxCards .logoPosition .positions {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.heroLeaderBoard .boxCards.cardFirst .logoPosition .positions {
  bottom: -20px;
}
.heroLeaderBoard .boxCards h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
  margin-bottom: 30px;
}

.heroLeaderBoard .boxCards .contentPrize h4 {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #a0a2b7;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 8px;
}

.heroLeaderBoard .boxCards .contentPrize h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
  margin-bottom: 30px;
}

.heroLeaderBoard .boxCards .btn a {
  max-width: 236px;
  width: 100%;
  height: 44px;
  border-radius: 10px;
  padding-top: 4px;
  padding-right: 18px;
  padding-bottom: 4px;
  padding-left: 18px;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 18, 0.8) 0%,
    rgba(8, 9, 18, 0.4) 100%
  );
  box-shadow: 0px 1px 2px 0px #00000040;
  gap: 8px;
}
.heroLeaderBoard .boxCards .btn a p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
  text-shadow: 0px 2px 2px #0000000d;
}
.heroLeaderBoard .boxCards .btn a img {
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 805px) {
  .steps .gridRow .gridBox {
    max-width: 100%;
  }
}
.steps .gridRow .gridBox img {
  position: absolute;
  width: 38px;
  height: 38px;
  right: 20px;
}
.steps .gridRow .gridBox::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.steps .gridRow .gridBox h5 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #c0c1cc;
  text-shadow: 0px 1px 1px #0000001a;
  margin-bottom: 12px;
}
.steps .gridRow .gridBox h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  color: var(--white-color);
  line-height: 120%;
  letter-spacing: 0%;
  text-shadow: 0px 2px 2px #0000000d;
  margin-bottom: 8px;
}
.steps .gridRow .gridBox p {
  font-weight: 500;
  font-style: Medium;
  font-size: 13px;
  color: #c0c1cc;
  line-height: 130%;
  letter-spacing: 0%;
}

@media screen and (max-width: 871.99px) {
  .leaderCard .row {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 874.99px) {
  .navBar {
    display: none !important;
  }
}

@media screen and (max-width: 474.99px) {
  footer .row.topLogoRow .secondaryBox:nth-child(2) {
    flex-wrap: wrap;
  }
  footer .row.topLogoRow .secondaryBox:nth-child(2) .box {
    flex-basis: 100px;
    flex-grow: 1;
  }
  .container {
    margin-bottom: 60px !important;
  }
  .containerHeader {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 560px) {
  /* .heroSection .container{
    min-height: 435px;
  } */
}

@media screen and (max-width: 620px) {
  .timer .row .col-12 .counterTime .nuumberBox {
    font-size: 26px;
    width: 18.372955px;
  }
  .timer .row .col-12 .counterTime {
    width: 337px;
    min-height: 57.751686px;
  }
  .timer .row .col-12 {
    width: 362.021362px;
    min-height: 83.751686px;
  }
  .timer .row .col-12 .counterTime .fixedWith {
    width: 40px;
  }
  .timer .row .col-12 .counterTime .minWidth {
    width: 310px;
  }
  .timer .row .col-12 .counterTime .nuumberBox .borderRightLine {
    top: -14px;
    height: 68px;
  }
  .timer .row .col-12 .counterTime .nuumberBox .coloma {
    bottom: 0px;
    font-size: 29.12px;
  }
  .timer .row {
    margin-top: 50px;
  }
  .onCasino .container {
    padding: 50px 20px;
  }
  .heroSection .container h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 420px) {
  .heroSection .container h1 {
    font-size: 35px !important;
    margin-bottom: 18px !important;
    max-width: 258px !important;
  }
}
@media screen and (max-width: 558px) {
  .connected .row .box {
    max-width: 100%;
  }
}

/* -------------------------------------- */
/* Animations & Loader                   */
/* -------------------------------------- */
/* Page loader overlay */
#page-loader {
  position: fixed;
  inset: 0;
  background: #030514;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease;
}
#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #2b2f49;
  border-top-color: #3773b7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* -------------------------------------- */
/* CSS-only load-in animations (no JS)    */
/* -------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Base animation hooks */
.heroLeaderBoard .boxCards,
.winnerList .topRow,
.winnerList .row,
.historySwiper .colSwiperSection .swiper-slide,
.connected .row .box,
.leaderCard .contentSwiper,
.onCasino .container .col-12,
.timer .row .col-12,
.girdBox .row .box {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* Keep pre-stacked hidden rows visual design intact */
.winnerList .row.hideOne,
.winnerList .row.hideTwo {
  animation: none !important;
  opacity: initial; /* use opacity from their own class styles */
}

/* Staggers for leaderboard hero top 3 */
.heroLeaderBoard .boxCards.cardFirst { animation-delay: 0.1s; }
.heroLeaderBoard .boxCards.cardSecond { animation-delay: 0.2s; }
.heroLeaderBoard .boxCards.cardThird { animation-delay: 0.3s; }

/* Winner list progressive reveal */
.winnerList .topRow { animation-delay: 0.1s; }
.winnerList .row:nth-of-type(1) { animation-delay: 0.15s; }
.winnerList .row:nth-of-type(2) { animation-delay: 0.22s; }
.winnerList .row:nth-of-type(3) { animation-delay: 0.29s; }
.winnerList .row:nth-of-type(4) { animation-delay: 0.36s; }
.winnerList .row:nth-of-type(5) { animation-delay: 0.43s; }
.winnerList .row:nth-of-type(6) { animation-delay: 0.50s; }
.winnerList .row:nth-of-type(7) { animation-delay: 0.57s; }
.winnerList .row:nth-of-type(8) { animation-delay: 0.64s; }

/* Swiper cards */
.historySwiper .colSwiperSection .swiper-slide:nth-child(1) { animation-delay: 0.1s; }
.historySwiper .colSwiperSection .swiper-slide:nth-child(2) { animation-delay: 0.2s; }
.historySwiper .colSwiperSection .swiper-slide:nth-child(3) { animation-delay: 0.3s; }
.historySwiper .colSwiperSection .swiper-slide:nth-child(4) { animation-delay: 0.4s; }
.historySwiper .colSwiperSection .swiper-slide:nth-child(5) { animation-delay: 0.5s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .heroLeaderBoard .boxCards,
  .winnerList .topRow,
  .winnerList .row,
  .historySwiper .colSwiperSection .swiper-slide,
  .connected .row .box,
  .leaderCard .contentSwiper,
  .onCasino .container .col-12,
  .timer .row .col-12,
  .girdBox .row .box {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

body.loading {
  overflow: hidden;
}

/* Neutralize .reveal utility to avoid double anim flicker; base hooks below drive animations */
.reveal,
.reveal.in-view {
  opacity: inherit;
  transform: none;
  animation: none;
}
.reveal.delay-1 {
  animation-delay: 0.1s;
}
.reveal.delay-2 {
  animation-delay: 0.2s;
}
.reveal.delay-3 {
  animation-delay: 0.3s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  #page-loader {
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Global on-load animations: fade in all top-level content except header/footer */
body:not(.page-ready) > :not(header):not(footer) {
  opacity: 0;
  transform: translateY(12px);
}
body.page-ready > :not(header):not(footer) {
  animation: fadeUp 0.6s ease forwards;
}
body.page-ready > :not(header):not(footer):nth-of-type(2) { animation-delay: 0.05s; }
body.page-ready > :not(header):not(footer):nth-of-type(3) { animation-delay: 0.10s; }
body.page-ready > :not(header):not(footer):nth-of-type(4) { animation-delay: 0.15s; }
body.page-ready > :not(header):not(footer):nth-of-type(5) { animation-delay: 0.20s; }

/* Mobile menu visibility: hide on desktop, show on small screens */
header .box.menuBox .mobileMenu {
  display: none;
}
@media screen and (max-width: 874.99px) {
  header .box.menuBox .mobileMenu {
    display: block;
  }
}
