@import url(mainstyle.css);

* {
  font-family: var(--primefont);
}

a {
  color: inherit;
  text-decoration: none;
}

[data-jackpotdeck-theme="dark"] [data-logo="dark"],
[data-jackpotdeck-theme="light"] [data-logo="light"] {
  display: block;
}

[data-jackpotdeck-theme="dark"] [data-logo="light"],
[data-jackpotdeck-theme="light"] [data-logo="dark"] {
  display: none;
}
#btnSwitch{
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* icon BG */
.icon-bg {
  min-width: 35px;
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--icon-text) !important;
  background-color: var(--icon-bg) !important;
}

.icon-xl {
  min-width: 60px !important;
  min-height: 60px !important;
  background-color: var(--icon-alt-bg) !important;
}

.circle-icon-lg {
  min-width: 80px;
  min-height: 80px;
}

.offcanvas {
  height: 100vh;
}
.head-content {
  width: 720px;
  margin-left: auto;
  max-width: 100%;
  text-align: center;
}
header {
  transition: 0.2s ease;
  z-index: 999;
}
header.fix {
  background-color: var(--head-bg) !important;
  position: fixed !important;
}

header.fix .nav-link {
  color: var(--head-text) !important;
}

header.fix .nav-link.active {
  color: var(--prime-text) !important;
}
/* header CSS */
.nav-link {
  color: var(--nav-text);
  font-weight: 500;
}
.nav-item.active .nav-link,
.nav-item:hover .nav-link,
.nav-item:hover {
  color: var(--nav-alt-text) !important;
}
@media (max-width: 991px) {
  .offcanvas-body {
    background-color: var(--head-bg);
  }
  .nav-link {
    color: var(--head-text);
  }
}

.theme-switch-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/banner.webp") no-repeat top/cover;
  min-height: 857px;
  display: flex;
  align-items: center;
}
.banner-content {
  max-width: 900px;
  width: 100%;
  color: var(--white-text);
}

.win-upto {
  margin-top: -4%;
}
.win-upto h2 {
   letter-spacing: 1px;
}
/* Digit boxes */
.digit-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 90px;
  background: #111;
  border: 2px solid var(--second-border);
  border-radius: 10px;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white-text);
  box-shadow: 0 0 10px rgba(154, 66, 212, 0.6);
  transition: 0.2s ease-in-out;
}

/* Hover effect */
.digit-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 16px rgba(182, 58, 187, 0.9);
}

/* Responsive */
@media (max-width: 992px) {
  .digit-box {
    width: 55px;
    height: 70px;
    font-size: 2.5rem;
  }
  .hero-banner,.review-banner {
    min-height: 657px;
  }
  .fs-8{
    font-size: 35px;
  }
}
/* counter animation */
.digit-box {
  position: relative;
  overflow: hidden;
}

.roll {
  animation: rollDigit 2s ease-out forwards;
}

@keyframes rollDigit {
  0% { transform: translateY(-120%); opacity: 0; }
  50% { transform: translateY(20%); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 576px) {
  .digit-box {
    width: 55px;
    height: 65px;
    font-size: 1.8rem;
  }

  .win-upto h2 {
    font-size: 2.8rem !important;
  }
}

.service-card {
    background: var(--card-alt-bg);               
    border-radius: 10px;
    padding: 25px;
    color: var(--white-text);
    min-height: 380px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    border: 1px solid var(--second-border);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 75px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--second-text);  
    opacity: 0.6;
} 

.top-winners-header {
    background: linear-gradient(90deg, #b63abb, #d274ff);
    border-radius: 8px;
}
.jackpot-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    min-height: 280px;
}

.jackpot-img img {
    transition: all 0.4s ease;
}

/* Overlay */
.jackpot-img::after {
    content: "Play Now";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: var(--prime-text);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s ease;
    border-radius: 12px;
}

.jackpot-img:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}
.jackpot-img:hover::after {
    opacity: 1;
    transform: scale(1);
}
.about-card {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px; 
}

.image-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center; 
  display: block;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
  transition: 0.3s ease;
}
.image-container:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.spin-image img{
  width: 100%;
  height: 450px;
  object-fit: contain;
  object-position: center; 
}
.review-banner{
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/review-image.webp") no-repeat center/cover;
  min-height: 857px;
  display: flex;
  align-items: center;
}
.review-container{
    width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center; 
}
/* Give slides some visible style */
.testimonial-img{
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 50%; 
   border: 1px solid #111;
    overflow: hidden;
}
.testimonial-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-image-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/footer-bg.webp") no-repeat top/cover;
  min-height: 670px;
}
.game-img{
  width: 94px;
  min-height: 94px;
  height: 100%;
}
.game{
 transition: all 0.5s ease; 
}
.game:hover{
  color:var(--prime-text);
}
.contat-icon{
  width: 94px;
  min-height: 94px;
  overflow: hidden;
  height: 100%;
}
.form-control::placeholder {
  color: var(--para-text);
  text-transform: capitalize;
}
.form-control:focus {
  border: 1px solid var(--prime-border);
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}
#backtotop {
  position: fixed;
  bottom: 80px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  min-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  height: 50px !important;
}
.error{
  color: red;
  text-transform: capitalize;
}
.alertmsg{
  z-index: 9999;
}