
@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/free-cock-popup-t168-dt.jpg'); /* Your path */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
   font-family: "Kantumruy Pro";
}

/* 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: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
}

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

  .register-img {
    bottom: 200px;
  }

  .contact-resiter {
    bottom: 130px;
  }
}
.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: pulse 0.8s ease-in-out infinite;

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

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

/* Social Media Links */
/* .social-links {
  position: fixed;
  top: 60px; 
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
} */
.social-links {
  position: fixed;
  bottom: 50px; 
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 8;
}
@keyframes glow {
  0% {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
  }
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: glow 2s infinite ease-in-out;
}

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

.register-btn-container {
  position: fixed;
  bottom: 550px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
  animation: pulse 1.2s ease-in-out infinite;
  font-family: "Kantumruy Pro";
}

.promotion-btn {
  font-size: 22px; /* Bigger font */
  padding: 16px 34px; /* More padding */
  background-color: #FFD700;
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 1.2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

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

.extra-buttons-row {
  position: fixed;
  bottom: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 9;
  animation: pulse 1.2s ease-in-out infinite;
  font-family: "Kantumruy Pro";
}

.extra-button {
  padding: 12px 24px; /* Slightly larger */
  font-size: 18px;
  border: 2px solid white;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.extra-button.red {
  background-color: #E60000;
}
.extra-button.draw {
  background-color: #00A442;
}
.extra-button.blue {
  background-color: #00009F;
}

.extra-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* 🔽 Normal Mobile View (like iPhone 14 Pro Max) */
@media screen and (max-width: 576px) {
  .register-btn-container {
    bottom: 500px;
  }

  .promotion-btn {
    font-size: 18px;
    padding: 14px 28px;
  }

  .extra-buttons-row {
    bottom: 440px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .extra-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}
/* 🔽 Fix for iPhone SE and very short-height phones */
@media screen and (max-height: 670px) {
  .register-btn-container {
    bottom: 380px;
  }

  .extra-buttons-row {
    bottom: 320px;
  }
}

/* 🔽 Fix for iPhone 6/7/8 Plus (414 x 736) without affecting SE */
@media screen and (max-height: 740px) and (min-height: 671px) {
  .register-btn-container {
    bottom: 420px;
  }

  .extra-buttons-row {
    bottom: 360px;
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px; /* space between modal content and screen edges */
  box-sizing: border-box;
}

.modal-content {
    background-color: black;
  width: 100%;
  max-width: 500px; /* controls overall modal size */
  height: 60%;
  aspect-ratio: 886 / 1079;
  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;

}

.modal-video {
  width: 100%;
  height: 100%;
    background-color: black; /* add this line */
  cursor: pointer;

  display: block;
}

@media (min-width: 768px) {
  .modal-content {
    max-width: 600px;
    aspect-ratio: 886 / 1079;
  }
}

@media (min-width: 1200px) {
  .modal-content {
    max-width: 750px;
    aspect-ratio: 886 / 1079;
  }
}


.close-btn { 
  position: absolute; 
  top: 0px; 
  right: 10px; 
  color: white; 
  font-size: 28px; 
  font-weight: bold; 
  cursor: pointer; 
  user-select: none; 
  z-index: 10; 
}
