@font-face {
    font-family: "Kantumruy Pro";
    src: url('font/KantumruyPro-Regular.ttf') format('truetype');
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Kantumruy Pro", sans-serif;
}

/* Desktop Background */
body {
  background-image: url('image/88play-desktop.jpg'); /* Your path */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}

/* Responsive Mobile View */
@media screen and (max-width: 576px) {
  body {
    background-image: url('image/88play-mobile.jpg'); /* Your path for mobile */
  }

  .register-img {
    bottom: 200px;
  }

  .contact-resiter {
    bottom: 70px;
  }
}
.register-img,
.contact-resiter {
  z-index: 10;
}

.social-links {
  position: fixed;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 8;
}

.social-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
  overflow: hidden;
  z-index: 1;
}

/* Animated glowing ring */
.social-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
  animation: spin 3s linear infinite;
  filter: blur(4px);
  z-index: 0;
}

/* Inner mask to keep icon clean */
.social-icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  background-color: inherit;
  border-radius: 50%;
  z-index: 1;
}

/* Icon stays above glow */
.social-icon i {
  position: relative;
  z-index: 2;
}

/* Animated ring spin */
@keyframes spin {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}

/* Remove hover and active interactions */
@media (hover: none) {
  .social-icon:active {
    transform: none;
    filter: none;
  }
}

/* Optional: ensure consistent initial scale */
.social-icon.fb,
.social-icon.telegram,
.social-icon.web {
  transform: none;
  transition: none;
}

.btn-circle-link {
  position: fixed;
  bottom: 70px; /* Just above the social icons */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
}

.claim-btn {
  position: relative;
  width: auto;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff6a00, #ee0979); /* Sunset gradient */
  color: #fff;
  font-family: "Kantumruy Pro", sans-serif;
  font-size: 22px;
  font-weight: bold;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 105, 135, 0.6), 0 0 25px rgba(255, 105, 135, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

/* Neon Border Glow Effect */
.claim-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff6a00, #ee0979, #ff6a00, #ee0979);
  background-size: 300% 300%;
  animation: neonRun 4s linear infinite;
  z-index: -1;
  filter: blur(6px);
}

@keyframes neonRun {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Hover Behavior */
.claim-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px #ff6a00, 0 0 50px #ee0979;
}


#fireworks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* so it doesn't block clicks */
  z-index: 9999; /* make sure it's on top */
}


  .emoji {
    position: fixed;
    bottom: 0;
    font-size: 32px;
    animation: floatUp 4s ease-out forwards;
    pointer-events: none;
  }

  @keyframes floatUp {
    0% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateY(-150vh) scale(1.5);
      opacity: 0;
    }
  }


  .logo-container {
  position: fixed;
  bottom: 140px; /* Just above the CTA button */
  left: 50%;
  transform: translateX(-50%);
  z-index: 21;
  animation: floatLogo 2.5s ease-in-out infinite;
}

.logo-img {
  width: 200px;
  max-width: 80vw;
}

/* Optional float animation */
@keyframes floatLogo {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}