.whats-new-section{
    height: auto;
}

.whats-new-section .container{
    
}


.updating-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  text-align: center;
  color: #003366;
}


.update-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.updating-section .container {
  position: relative;
  z-index: 100;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
 
}

.updating-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 0.5;
}

.updating-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 1;
}

.updating-message h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #CCCCCC;
}

.updating-message h2 span {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.updating-message p {
  font-size: 1.2rem;
  color: #FFFFFF;
}

