body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}


body.main-page {
  background: url("./Assets/bg_color.png");
}

body.base-page {
  /* Default background color for the body if needed */
}

.navbar {
  width: 100%;
  background: url("./Assets/bg_color.png");
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  padding: 30px 0;
}

.nav-link {
  display: flex;
  margin: 0 55px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
}
.logo {
  height: 90px;
}

.content-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 100px;
}

.content {
  color: #ffffff;
}

.announcement {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
}

.additional-image-container {
  position: relative;
}

.additional-img {
  object-fit: contain;
  width: auto;
  max-height: 100%;
  margin-top: 40%;
}

.live-now {
  display: inline-block;
  text-align: left;
}

.background-image {
  position: absolute;
  z-index: -1;
  max-width: 100%;
  max-height: 100%;
  bottom: -12%;
  right: -33%;
}

.gif-container {
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 1000;
}

.topLeftLogo {
  position: absolute;
  top: calc(0%);
  left: calc(0%);
}

.bottom_bg {
  top: 503px;
  left: 0px;
  width: 1920px;
  height: 577px;
  opacity: 1;
}
.buttons {
  position: absolute;
  top: 313px; 
  left: 50%;
  transform: translateX(-50%); 
  display: flex;
  gap: 10px; 
}

.buttons a {
  width: 277px;
  height: 107px;
  opacity: 1;
}

.button-img {
  width: 100%; 
  height: auto;
}


.announcement {
  top: 185px;
  left: 391px;
  width: 1139px;
  height: 41px;
  text-align: center;
  font: normal normal medium 38px/58px Gotham;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
} 
.announcement-title {
  position: absolute;
  top: 185px;
  left: 50%;
  transform: translateX(-50%);
  width: 1139px;
  height: 41px;
  text-align: center;
  font: normal normal medium 38px/58px Gotham;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}


.live-now {
  position: absolute;
  top: 254px;
  left: 391px;
  width: 1138px;
  transform: translate(-50%, -50%); 
  height: 37px;
  text-align: center;
  font: normal normal normal 14px/21px Gotham;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}
.playstore {
  top: 313px;
  left: 684px;
  width: 277px;
  height: 107px;
  opacity: 1;
}
.appstore {
  top: 313px;
  left: 972px;
  width: 277px;
  height: 107px;
  opacity: 1;
}

@media (max-width: 600px) {
  body.main-page {
    background: url("./Assets/bg_color.png");
  }

  .nav-link {
    display: none;
  }

  .announcement {
    font-size: 22px;
    text-align: center;
  }

  .buttons {
    flex-direction: column-reverse;
    margin-left: 0px;
    justify-content: space-evenly;
  }

  .button-img {
    width: 150px;
    margin: 0 5px;
  }

  .additional-image-container {
    max-width: 100%;
    margin-top: -20%;
    justify-content: center;
  }

  .background-image {
    bottom: -20px;
    right: 0;
    max-width: 30%;
    max-height: 30%;
  }

  .content-container {
    margin-top: 0px;
    padding-bottom: 150px;
  }

  .gif-container {
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }

  .content {
    margin-top: 30%;
  }

  .topLeftLogo {
    display: none;
  }

  .centered-content {
    margin-top: 30% !important;
  }

  .navbar-brand {
    position: relative;
  }

  .img-fluid {
    max-width: 80% !important;
  }
}
