/**********Modalpopipup**********/
.bk-wrapper {
  margin-top: 30px;
  position: relative;
}
.bk-ticket {
  cursor: pointer;
}
.bk-ticket:hover {
  color: #f9d40a !important;
  border-radius: 4px;
  height: 2px;
}
.games__bk {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #000;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.mpopup {
  display: none;
  position: fixed;
  z-index: 999999;
  padding-top: 150px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  position: relative;
  background-color: #000;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 400px;
  max-width: 700px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 0.3rem;
}
.modal-header-Iframe {
  padding: 2px 12px;
  background-color: #000;
  color: #333;
  border-bottom: 1px solid #000;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header-Iframe h2 {
  font-size: 1.25rem;
  margin-top: 14px;
  margin-bottom: 14px;
}
.modal-body {
  padding: 2px 12px;
}
.modal-footer {
  padding: 1rem;
  background-color: #ffffff;
  color: #333;
  border-top: 1px solid #e9ecef;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
  text-align: right;
}

.close {
  color: #888;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #f00;
  text-decoration: none;
  cursor: pointer;
}

/* add animation effects */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.videotitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f9d40a;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/***Video Modal Popup End***/
.modal-content-ad {
  position: relative;
  background-color: #000;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 1050px;
  max-width: 900px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 0.3rem;
}
.image-container {
  width: 100%; /* Full width of the parent container */
  max-width: 2560px; /* Optional: limit maximum width */
  height: auto;
  aspect-ratio: 2560 / 613; /* Maintain aspect ratio */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  overflow: hidden; /* Crop overflowing parts */
  margin: 0 auto; /* Center container on the page */
  background-color: #f0f0f0; /* Optional: background color */
}

.image-container img {
  width: 100%; /* Scale image to fit container */
  height: 100%; /* Ensures it scales correctly */
  object-fit: cover; /* Crop and fill the container */
}
.learn-play {
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFD700, #FFD700);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Title */
.learn-title {
  font-size: 18px;
  font-weight: 600;
  color: #5a4500;
  margin-bottom: 12px;
}

/* Buttons container */
.lang-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  cursor: pointer !important;
}

/* Buttons */
.btn-lang {
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

/* Hindi button */
.btn-lang.hindi {
  background: #ff7b00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.btn-lang.hindi:hover {
  background: #e66a00;
  
}

/* English button */
.btn-lang.english {
  background: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.btn-lang.english:hover {
  background: #000;
}
.text-fixed {
  height: 150px;           /* default desktop height */
  overflow: hidden;       /* hide extra text */
  display: -webkit-box;
  -webkit-line-clamp: 3;  /* limit lines */
  -webkit-box-orient: vertical;
}
/* Tablets */
@media (max-width: 992px) {
  .text-fixed {
    height: 180px;
    -webkit-line-clamp: 3;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .text-fixed {
    height: 180px;
    -webkit-line-clamp: 2; /* fewer lines */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .text-fixed {
    height: 180px;
    -webkit-line-clamp: 2;
  }
}