/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
  } */
  
  .xp-container {
    margin-bottom: 100px;
    margin-inline: auto;
    width: 250px;
}
  
  .xp-bar {
    width: 100%;
    max-width: 500px;
    height: 40px;
    background-color: #333;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    border: 3px solid #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .xp-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff00ff, #0099ff);
    width: 0;
    transition: width 0.5s;
    position: relative;
  }
  
  .xp-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    opacity: 0.5;
    animation: glowing 1s infinite alternate;
    pointer-events: none;
  }
  
  .xp-info {
  }
  
  /* button {
    padding: 10px 20px;
    background-color: #ff00ff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #e600e6;
  } */
  
  .hidden {
    display: none;
  }
  
  #level-up-image img {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
  }
  
  @keyframes glowing {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 1;
    }
  }
  
  