  body {
      font-family: Arial, sans-serif;
      text-align: center;
      margin-top: 50px;
    }
    .numbers {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    .number-btn {
 font-size: 30px; /* Increase emoji size */
      cursor: pointer;
background-color: white;
      color: white;
      border: none;
      border-radius: 15px;
      width: 120px;
      height: 120px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s, transform 0.2s;
    }
    .number-btn:hover {
      background-color: #0056b3;
    }
    .token {
      margin-top: 20px;
      font-size: 18px;
      color: green;
    }
    /* Popup Styles */
    .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
    }
    .popup-content {
      background: white;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      width: 300px;
    }
    .popup-content h2 {
      margin-bottom: 20px;
      font-size: 24px;
    }
    .try-again-btn {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .try-again-btn:hover {
			background-color: #218838;}