

  body {
    margin: 0;
    padding: 0;
    font-family: monospace;
    font-size: 14px;
    color: #f0f0f0; /* Light color for text */
    user-select: none;
    -webkit-user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1b1b2f; /* Dark background color */
  }
  
  #info-left, #info-right {
    position: absolute;
    top: 20px;
    color: #f0f0f0; /* Light color for text */
  }
  
  #info-left {
    left: 25px;
  }
  
  #info-right {
    right: 25px;
    text-align: right;
  }
  
  #bomb-grab-area {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent grab area */
    cursor: grab;
  }
  
  #congratulations {
    position: absolute;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    color: #f0f0f0; /* Light color for text */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  /* Additional styling for game elements */
  canvas {
    display: block;
  }
  
  h3 {
    margin: 0;
    font-size: 18px;
    color: #e74c3c; 
  }
  
  p {
    margin: 5px 0;
    color: black;
  }
  
  button {
    padding: 10px 20px;
    background-color: #f0a500; /* Gold color for button */
    border: none;
    border-radius: 5px;
    color: #1b1b2f; /* Dark background for contrast */
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #ffcc00; /* Lighter gold on hover */
  }
  