body {
    margin: 0;
    font-family: "Orbitron", sans-serif;
    background-color: black;
    color: #ffcc33;
  }
  
  #lcars-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  #lcars-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
  }
  
  #content {
    position: relative;
    z-index: 1;
    padding: 2em;
    max-width: 600px;
    background-color: rgba(0,0,0,0.7);
    border: 2px solid #ffcc33;
    border-radius: 20px;
    margin: 5% auto;
    text-align: center;
  }
  
  button {
    background-color: #9933ff;
    border: none;
    padding: 1em 2em;
    color: white;
    font-size: 1em;
    border-radius: 12px;
    margin-top: 1em;
    cursor: pointer;
  }
  