body {
  margin: 0;
  padding: 0;
  background-color: black;
}

#render-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1920px;
  height: 1080px;
  margin-top: -540px;
  margin-left: -960px;
  overflow: hidden;
  background: linear-gradient(to bottom, #1b2b4b 0%,#8ba5c3 100%);
}

#greeting-container.hidden {
    display: none !important;
}

#content-container {
  width: 1350px;
  height: 0px;
  position: absolute;
  left: 285px; 
  margin-left: 0px; 
  top: 815px; 
  overflow: visible; 
  
  /* GLASS STYLE */
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  z-index: 1;
  transition: top 300ms, height 300ms;

  /* PADDING: 80px Top, 180px Sides, 20px Bottom */
  padding: 80px 180px 20px 180px; 
  
  /* OFFSET: Adjusted margin-top to match the new padding and top position */
  margin-left: -180px; 
  margin-top: -80px;   
}

#content-container.shown {
  height: 650px !important;
  /* LOWERED: Moved from 250px to 280px */
  top: 280px !important; 
}

#content-frame {
  position: absolute;
  width: 1350px;
  height: 650px !important;
  /* LOWERED: Must match the container's top position */
  top: 280px !important;
  left: 285px;
  z-index: 10 !important;
  overflow: hidden;
  
  display: flex;
  justify-content: center; 
  gap: 120px; 
  align-items: center; 
  
  padding-top: 20px;
  box-sizing: border-box;

  transform: scale(1.25);
  transform-origin: center;
}

#content-container.expand {
  top: 0px !important;
  left: 0px !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
