@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/freew\ \(1\).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/freew\ \(2\).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;
  top: 390px;  /* Adjust as needed to match the yellow circle */
  left: 560px; /* Adjust for X-axis alignment */
  z-index: 20;
}

.btn-circle-img {
  width: 180px; /* Resize based on your preference */
  animation: float 1s ease-in-out infinite; /* Optional */
}
@media screen and (max-width: 576px) {
  .btn-circle-img {
    width: 160px;
  }

  .btn-circle-link {
    top: 35%; /* Adjust to align better on small screens */
    left: 55%;
  }
}     



#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 */
}
