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

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

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

/* Main Image Styling */
.promotion_150 {
  width: 300px;
}

/* Fixed Register Image */
.register-img {
  position: fixed;
  bottom: 130px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Fixed Contact/Register Buttons */
.contact-resiter {
  position: fixed;
  bottom: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
}

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

  .register-img {
    bottom: 200px;
  }

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

/* Up and down */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.promotion_150 {
  animation: float 2s ease-in-out infinite;
}


/* Zoomin Zoomout */

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.promotion_150 {
  animation: pulse 0.8s infinite;
}

.contact-resiter{
     animation: float 1s ease-in-out infinite; /* Optional */

}
/* Fade */
/* .promotion_150 {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
} */

/* Social Media Links */
.social-links {
  position: fixed;
  bottom: 10px; /* Bottom of screen */
  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-color: #333;
  overflow: hidden;
  z-index: 1;
}

/* Glowing ring animation */
.social-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    yellow 0deg,
    transparent 90deg,
    yellow 180deg,
    transparent 270deg,
    yellow 360deg
  );
  animation: spin 2s linear infinite;
  z-index: 0;
}

/* Cover inner glow so icon appears clean inside */
.social-icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  background-color: inherit;
  border-radius: 50%;
  z-index: 1;
}

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

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

.social-icon:hover {
  transform: scale(1.1);
}

/* Colors */
.social-icon.fb {
  background-color: #1877F2; /* Facebook blue */
}

.social-icon.telegram {
  background-color: #0088cc; /* Telegram blue */
}

.social-icon.web {
  background-color: #474040; /* Website dark gray */

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

.btn-circle-img {
  width: 180px; 
  animation: float 1s ease-in-out infinite; 
}

@media screen and (max-width: 576px) {
  .btn-circle-img {
    width: 160px;
  }

  .btn-circle-link {
    bottom: 70px;   
  }
} */

.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-color: #00A550;
  color: #fff;
  font-family: "Kantumruy Pro", sans-serif;
  font-size: 22px;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 10px #00A550;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.claim-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2FF5C2, #00A550, #2FF5C2, #00A550);
  background-size: 400% 400%;
  animation: neonRun 3s linear infinite;
  z-index: -1;
  filter: blur(4px);
}

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

.claim-btn:hover {
  background-color: #28d7aa;
  box-shadow: 0 0 20px #2FF5C2, 0 0 40px #2FF5C2;
  transform: scale(1.05);
}


#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;
    }
  }