/* Global styles for light-on-dark theme */
body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: #ffb700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  /* Content centering */
  .content {
    text-align: center;
    z-index: 1;
  }

  /* Title drop shadow */
h1 {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 4);
  font-size: 42pt;
}
  
  /* Background image placeholder */
  body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url('../images/corridor.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.35; /* adjust visibility */
    z-index: 0;
    pointer-events: none;
  }