body {
    margin: 0;
    padding: 0;
    background-color: #0e0e0e;
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  #auth-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
  }
  
  #auth-buttons button {
    font-size: 0.9em;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background-color: #333;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  #auth-buttons button:hover {
    background-color: #555;
  }
  
  #menu {
    text-align: center;
  }
  
  #menu h1 {
    margin-bottom: 30px;
    font-size: 2.5em;
  }
  
  #menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  #menu-buttons button {
    font-size: 1.2em;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: #444;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  #menu-buttons button:hover {
    background-color: #666;
  }
  
  #game-container {
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: black;
  }
  
  canvas {
    image-rendering: pixelated;
    background-color: #1a0f1a;
  }  

  #spell-ui {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  
  #spell-ui button {
    padding: 10px 20px;
    font-size: 1em;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  