* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: block;
    font-family: 'Roboto', sans-serif;
    background-image: url(images/bg_promotion.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
    color: #f0cf9c;
    position: relative;
        /* Required for the overlay */
}

/* Overlay between background image and content */
/* body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); 
z-index: 0; 
} */

.container {
    max-width: 400px;
    padding: 0px 20px;
    position: relative;
    z-index: 1;
    /* Ensure content appears above overlay */
    width: 100%;
    height:100vh;
    margin: 0 auto;
}

.logo_flasher {
    display: flex;
    height:25vh;
}

.logo_img img {
    width: 100px;
    height: 50px;
    margin: 26px 0 0 0;
}

.flasher{
    margin: 0 0 0 -24px;
    position: absolute;
}

.bear_img {
    position: absolute;
    bottom: 15px;
}

.boy_img {
    position: absolute;
    bottom: 9px;
    left: 38px;
}
.boy_two{
    display: none;
    position: absolute;
    bottom: 0px;
    right: 38px;
}

.girl_img {
    position: absolute;
    bottom: 0px;
    right: 25px;
}

.btn_proceed {
    background-color: #fff200;
    width: 161.73px;
    height: 47.05px;
    border-radius: 19.54px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 53%;
    bottom:50px;
    transform: translate(-50%, -50%);
}

.btn_proceed a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}
.flasher_one{
    display: none;
   position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.girl_two{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index:2;
}
.girl_two img{
    width: 170px;
}
.girl_three{
    display: none;
    position: absolute;
    bottom: 0;
}
/* .girl_four{
    position: absolute;
    bottom: 0;
} */
.girl_three img{
    width: 260px;
}
.bear_two{
    display: none;
    position: absolute;
    right: 0;
    top: 12%;
    z-index: 2;
}
.bear_two img{
    width: 156px;
}
.bear_three{
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/* .bear_four{
    position: absolute;
    bottom: 0;
} */
.loss{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 35px 0 0;
    display: none;
}
.loss img{
    width: 100%;
    object-fit: cover;
}
.header {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
}

.promo-text h1,
.promo-text h2,
.promo-text p {
    margin-bottom: 10px;
    color: #f0cf9c;
}

.promo-text h1 {
    font-size: 20px;
}

.promo-text h2 {
    font-size: 24px;
    color: #f0cf9c;
    font-weight: bold;
}

.promo-text p {
    font-size: 18px;
    color: #f0cf9c;
}

.steps {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.step {
    color: #f0cf9c;
}

.step h3 {
    font-size: 18px;
    font-weight: bold;
}

.step p {
    font-size: 14px;
}

.form-section {
 
    width: 320px;
    height: 555px;
    margin: 50px auto 0 auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    display: none;
}
.form-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 35px;
background-color: #9f7a01;
opacity: 0.4; /* Set the desired opacity */
z-index: -1;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

form label {
    font-size: 14px;
    color: #e51e26;
}

form input,
form select {
    padding: 13px;
    border-radius: 12px;
    width: 260.97px;
    height: 46.99px;
    background-color: #fef7ec;
    border:none;
    font-size: 14px;
    margin: 0 auto;
}

select option {
    width: 100%;

}

.info-btn {
    padding: 10px;
    background-color: #f0cf9c;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #e51e26;
    margin-bottom: 15px;
    cursor: pointer;
}

.signup-btn {
    background-color: #66308e;
    color: #ffffff;
    width: 260.97px;
    height: 46.99px;
    padding: 13px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 19.54px;
    margin: 13px auto 0 auto;
    cursor: pointer;
}
.winners{
  background-color: #66308e;
    color: #ffffff;
    width: 100px;
    height: 46.99px;
    padding: 13px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 19.54px;
    margin: 13px auto 0 auto;
    cursor: pointer;
    position:absolute;
    right:15px;
    display:none;
}

.signup-btn:hover {
    background-color: #d4af37;
    /* Golden hover effect */
}

.form-section label {
    text-align: left;
}
/* Wrapper for the background image */
.image-wrapper {
position: relative;  /* Allows the text to be positioned absolutely inside */
height: 150px; /* Adjust height */
background-image: url('images/burst.png');  /* Path to your background image */
background-size: cover;  /* Ensure the image covers the container */
background-position: center;  /* Center the image inside the container */
border-radius: 10px;  /* Optional: Add rounded corners */
overflow: hidden; /* Ensures no overflow */
}

/* Overlay text positioned absolutely on the background */
.text-overlay {
position: absolute;
top: 50%;  /* Move to the center vertically */
left: 50%; /* Move to the center horizontally */
transform: translate(-50%, -50%);  /* Centering trick */
color: white;  /* Make the text readable */
font-size: 17px;
font-weight: bold;
text-align: center;
line-height: 1.5;  /* Adjust line height for better spacing */
}


/* Style individual option elements */
select option {
    width: 70px !important;
    background-color: #fff !important;
    /* Background color of options */
    color: #333 !important;
    /* Text color */
    padding: 10px !important;
    /* Padding around the text */
    font-size: 16px !important;
}

/* Option hover effect */
select option:hover {
    background-color: #e0e0e0;
    /* Highlight on hover */
}
/* .win_lost_popup{
   width: 320px;
   height: 320px;
   position: absolute;
   background-color:rgba(229,193, 92, 0.4) ;
   border-radius: 35px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%); 
   display: none;
   text-align: center;
} */
.win_lost_popup {
width: 320px;
height: 320px;
position: absolute;
background-color: rgba(229, 193, 92, 0.4);
border-radius: 35px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: none;
text-align: center;
padding: 75px 0; /* Add padding inside the box */
box-sizing: border-box; /* Ensure padding doesn't overflow the container */
gap: 10px; /* Add equal space between h1 and p */
z-index: -1;
}

.win_lost_popup h2{
color: #ffffff;
font-size: 29px;
}
.win_lost_popup p{
width: 67%;
margin: 50px auto 0 auto;
color: #ffffff;
font-size: 24px;
font-weight: 600;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.dropdown-header {
    padding: 13px;
    border-radius: 12px;
    width: 260.97px;
    height: 46.99px;
    background-color: #fef7ec;
    border:none;
    font-size: 14px;
    margin: 0 auto;
    color:grey;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    z-index: 10;
    color:grey !important;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dropdown-item:hover {
    background-color: #f0f0f0;
}

#custom-city-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 95%;
    margin: 10px auto;
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    z-index: 999; /* Ensure it's above all other content */
}

.win_lost_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000; /* Above the overlay */
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
}





@media only screen and (min-height: 600px) and (max-height: 800px){
    
    .container{
        height:95vh;
    }
    .form-section {
    margin: 30px auto 0 auto;
    }
  .flasher{
      height:220px;
      margin:0px;
  }
  .flasher{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
  }
  .bear_img {
    position: absolute;
    bottom: 15px;
    left:50%;
    transform:translateX(-50%);
}
.bear_img img {
    height:400px;
}
.flasher_one{
    height:170px;
}
.bear_two img {
    width: 110px;
}
.girl_two img {
    width: 110px;
}
.image-wrapper {
    position: relative;
    height: 110px;
    background-image: url(images/burst.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}
.text-overlay {
    font-size: 11px;
    top:55%;
}
form input, form select {
    width: 230.97px;
    height: 32.99px;
}
.signup-btn {
    width: 230.97px;
    height: 35.99px;
    padding:0px;
}
.form-section {
    width: 270px;
    height: 427px;
}
.win_lost_popup {
    width: 280px;
    height: 200px;
    left: 50%;
    transform: translate(-50%, -75%);
    padding: 58px 0 0 0;
}
.win_lost_popup h2 {
    color: #ffffff;
    font-size: 20px;
}
.win_lost_popup p {
    width: 67%;
    margin: 13px auto 0 auto;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}
.bear_three img{
    width: 250px;
}
.boy_two img{
    width: 100px;
}
.girl_three img{
    width: 200px;
}

.dropdown-header {
    padding: 7px 13px 13px 13px;
    border-radius: 12px;
    width: 230.97px;
    height: 32.99px !important;
    background-color: #fef7ec;
    border:none;
    font-size: 14px;
    margin: 0 auto;
    color:grey;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    z-index: 10;
    color:grey !important;
}
}

