@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:wght@700&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  transition: all 0.5s ease-in-out;
}
a{
  text-decoration: none !important;
}
/* .libertinus-sans-bold {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.manrope-uniquifier {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.lora-<uniquifier> {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;

// <weight>: Use a value from 400 to 700
// <uniquifier>: Use a unique and descriptive class name

.lora-<uniquifier> {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: italic;
}
Epilogue: CSS class for a variable style

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.epilogue-<uniquifier> {
  font-family: "Epilogue", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

  font-family: "Poppins", sans-serif;
  font-family: "Lora", serif;
  font-family: "Epilogue", sans-serif;

}
*/

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  padding: 1rem 2rem;
  z-index: 1000;
  transition: background-color 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none; /* Make it unclickable when invisible */
}
.navbar.visible {
  opacity: 1;
  pointer-events: auto;
  background-color: #00000003;
  backdrop-filter: blur(10px);
}
.brand-img{
  width: 6vw;
}
.nav-right a {
  font-family:  "Poppins", sans-serif; 
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-right a:hover {
  color: #f40200;
}

.hero {
  background: #A61318;
  background: radial-gradient(circle, #a61318 0%, #5a0000 100%);
  width: 100%;
  min-height: 100vh;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.in-head{
  width: 100%;
  min-height: 100vh;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.head-logo-svg{
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
}
.hd-logo-pre{
  position: absolute;
  max-width: 200px;
  left: 10%;
}


.head-s{
  position: absolute;
  align-items: center;

}
.c-bg{
 width: 60%;
 height: auto;
   justify-content: center;
}
.c-name{
  width: 60%;
  height: auto;
}
.c-tag{
  width: 60%;
  height: auto;
}
















.img-present{
  padding-left: 2rem;
  max-width: 120px;
  height: auto;
}
.luck-title{
  margin-top: 5vh;
}
.logo-text {
  font-size: 13vw;
  font-weight: 700;
  line-height: 1;
  padding-left: 2rem;
  font-family: "Libertinus Sans", sans-serif;
}
.tag-l{
  padding-left: 3vw;
  line-height: 2;
  font-size: 2vw;  
}

.promo-vid-b {
  position: absolute;
  right: 4%;
  display: block;
  top: 24vh;
}
.promo-video {
  position: relative;
  width: 30vw;
  height: 120px;
  cursor: pointer;
}
.promo-img {
  width: 88%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.promo-video .play-btn {
  position: absolute;
  z-index: 4;
  font-size: 38px;
  line-height: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
/* video-modal*/
/* center play button on promo image */
.promo-video{ display:flex; justify-content:center; align-items:center; }
.promo-video .play-btn{
position: absolute;
z-index: 4;
font-size: 36px;
line-height: 1;
width: 72px;
height: 72px;
border-radius: 50%;
display:flex;
justify-content:center;
align-items:center;
background: rgba(0,0,0,0.55);
color: #fff;
cursor: pointer;
box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.promo-video .play-btn:hover{ transform: scale(1.05); }

/* Fullscreen modal for video */
.gsap-video-modal{
position: fixed;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
background: rgba(0,0,0,0.9);
z-index: 20000;
}
.gsap-video-modal .modal-inner{
width: 95%;
max-width: 1200px;
aspect-ratio: 16/9;
background: #000;
position: relative;
border-radius: 10px;
overflow: hidden;
}
.gsap-video-modal .close-btn{
position: absolute;
top: 12px;
right: 12px;
z-index: 10;
background: rgba(255,255,255,0.08);
color: white;
border: none;
font-size: 20px;
width: 44px;
height: 44px;
border-radius: 50%;
cursor: pointer;
}

[data-animate="slide-up"]{ will-change: transform, opacity; }




 /* font-family: "Poppins", sans-serif;
  font-family: "Lora", serif;
  font-family: "Epilogue", sans-serif; */

/* ------------- count section --------------------------------------------------- */

.count-section{
  padding-top: 8vh;
  min-height: 100vh;
}
.luck-des{
  font-family: "Poppins", sans-serif; 
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.95;
}
.ld-two{
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 100;
  font-size: 2rem;
  line-height: 1.95;
  letter-spacing: 1px;
  color: #f40200;
}
.luck-des-tag{
  margin-top: 0.7rem;
  margin-bottom: 4rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
}
.count-title{
  font-family: "Poppins", sans-serif;
  margin-bottom: 2vh;
  text-align: center;
}
.key{
  line-height: 3rem;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
}
.oll {
  list-style-type: none;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: 'Poppins';
  padding-left: 0 !important;
  text-transform: uppercase;
}
.key-y-link{
  text-decoration: none;
  color: #f40200;
  font-style: italic;
  font-weight: 300;
}




.count-subtitle {
  font-size: 1.2rem;
  color: #000;
  margin-top: 2rem;
  font-family: poppins, sans-serif;
}

.about{
  line-height: 2.5vw;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 6vh;
}
.about span{
  font-weight: 600;
  font-size: 20px;
}

.count-sub{
  font-family: "Poppins", sans-serif;
  margin-top: 10vh;
  margin-bottom: 9vh;
  text-align: center;
  line-height: 3vh;
}
.luck-sub{
  font-size: 22px;
}

.odometer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 1rem;
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
.odometer-digit {
  background-color: #333;
  color: white;
  font-size: 4rem;
  font-weight: bold;
  width: 70px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.7);
  transition: background-color 0.5s ease;
}
.odometer-digit.last-digit {
  color: #ff0000; /* Red color for the last digit */
}

.reg-section{
  margin-top: 2vh;
}
.terms-title{
  font-size: 2.5rem;
  margin-bottom: 3vh;
  font-family: "Poppins", sans-serif;
}
.terms-list{
  font-family:"Poppins", sans-serif;
  line-height: 3.5vh;
}


.reg-sec{
  margin-top: 10vh;
}


.foo-s{
  width: 32px;
}




/* Card */
@media (min-width: 992px) { /* lg and above (large screens) */
  .registration-card {
    width: 75% !important;
  }
}
.registration-card {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Headline */
.registration-card h2 {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

/* Form fields */
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0;
  color: #555;
}
.a-form-term{
  color: black;
  text-decoration: none;
  font-style: italic;
}
.c-mb-3{
  margin-bottom: 1rem;
}
/* Input & Select with underline style */
.form-control,
.form-select {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 0.4rem;
  font-size: 10px;
  font-weight: 400;
  color: #333;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-bottom: 1.5px solid #000;
  outline: none;
  box-shadow: none;
}

/* Placeholder style */
.form-control::placeholder {
  color: #aaa;
  font-weight: 300;
}

/* Checkbox */
.form-check-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #444;
}
.form-check-input {
  border-radius: 4px;
}

/* Button */
.btn-register {
font-family: poppins, sans-serif;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background-color: transparent;
  border: 0.8px solid #f44336;
  color: #f44336;
  font-weight: 400;
  text-decoration: none;  
  transition: all 0.3s ease;
  margin-top: 3rem;
}

.register-button-count:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px #ff9088d3;
}

@media (min-width: 992px) { /* lg and above (large screens) */
  .registration-card {
    width: 55%;
  }
}





.footer {
  width: 100%;
  padding: 20px 5%;
  font-family: poppins, sans-serif;
  margin-top: 3rem;
}

.email{
  color: #f44336;
}
.socials{
  display: flex;
  justify-content: center;
}
.socials a {
  color: black;
  margin: 0 10px;
  text-decoration: none;

}
.end {
  width: 100%;
  text-align: center;
  padding: 20px 0; 
  font-size: 1rem;
  margin-top: 0;
}
.mb-end{
    margin-bottom: 1.2rem;
}
.mb-foot{
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {

.hero {
  min-height: 100vh;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}

.hd-logo-pre{
  position: absolute;
  max-width: 100px;
  left: auto;
  top: 10%;
}

.presents{
  padding-top: 20%;
  display: flex;
  justify-content: center;
}
.luck-des{
  font-size: 2rem;
  line-height: 3rem;
}
.luck-des-tag{
  font-size: 1rem;
}

.img-present{
  padding-left: 0;
  max-width: 90px;
  height: auto;
}
.luck-title{
  margin-top: 2%;
}
.logo-text {
  padding-top: 12%;
  font-size: 30vw;
  line-height: 5rem;
}
.logo-text span{
  font-size: 20vw;        
}
.tag-l{
  font-size: 5vw;
  line-height: 6;
  padding-left: 0;
}
.promo-vid-b {
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: auto;
  bottom: 10vh !important;
}
.promo-video {
  width: 100%;      
}
.promo-img {
    width: 90%;
}
.promo-video .play-btn {
    z-index: 4;
}
.promo-video .play-btn {
  font-size: 20px;

  width: 46px;
  height: 46px;
}
.count-section{
  padding-top: 6vh;
}
.about{
  line-height: 10vw;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 7vh;
}
.count-title{
  font-family: "Poppins", sans-serif;
  margin-bottom: 3vh;
  text-align: center;
}
.count-sub{
  font-family: "Poppins", sans-serif;
  margin-top: 8vh;
  margin-bottom: 6vh;
  text-align: center;
  line-height: 4vh;
}
.odometer-digit {
  font-size: 2rem;
  width: 26px;
  height: 20px;
}
.mb-foot{
    margin-bottom: 32px !important;
}
}