  .curse-button {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    color: white;
  }

  .no-curses {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    background-color: #4b5563; /* Gray */
  }

  .some-curses {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    background-color: #f59e0b; /* Amber */
  }

  .all-cursed {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    background-color: #dc2626; /* Red */
  }